airtable

Search Airtable bases, tables, and records with schema validation for safe operations.

126|11|Updated Feb 24, 2026
One-click install
npx skills add https://github.com/HybridAIOne/hybridclaw --skill airtable-hybridaione
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: airtable
Source: https://github.com/HybridAIOne/hybridclaw/tree/main/skills/airtable
Command: npx skills add https://github.com/HybridAIOne/hybridclaw --skill airtable-hybridaione

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Airtable records and fields are hard to query, validate, and update correctly without risking bad payloads or unintended destructive actions.

Core Features & Use Cases

  • Base and Table Discovery: List accessible bases and inspect table schemas (fields, types, and select choices) to prepare accurate requests.
  • Record Querying and Reading: Paginate through records, filter via formula, and fetch single records by id; include computed field values when requested.
  • Schema-Aware, Guarded Writes: Create, update, attach files, and delete records only with explicit operator grant, with offline field validation against known schema metadata and refusal to write computed/read-only field types.
  • Attachment Payload Preparation: Build Airtable attachment payloads from public http(s) URLs with safety checks against private/internal network targets.

Quick Start

Use the airtable skill to list the records in table Pipeline for base appXXXXXXXXXXXXXX that match the filterByFormula Status = 'Active'.

Frequently Asked Questions about airtable

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I safely write records to Airtable without breaking schema validation?

To safely write Airtable records, you must validate field ids and types against table schema metadata offline before submission. This schema-aware approach refuses writes to computed or read-only fields, preventing bad payloads and unintended destructive actions.

Can I filter Airtable records using a formula and paginate through results?

You can filter Airtable records using filterByFormula and paginate through the results. The skill supports paginated record retrieval, single-record fetches by id, and optional views to refine your query scope.

How do I discover Airtable bases and inspect table schemas before making API requests?

You can discover accessible Airtable bases and inspect table schemas to prepare accurate requests. The skill lists base tables, fields, and select choices, enabling field-aware validation and schema-based payload preparation before executing read or write operations.

Do I need an Airtable personal access token to authenticate API operations?

Yes, Airtable API operations require a personal access token (PAT) for bearer authentication. The PAT must be stored in HybridClaw secrets to authorize base discovery, record querying, schema validation, and guarded write operations.

How do I update Airtable attachment fields with files from a URL?

Updating Airtable attachment fields involves building payloads from public http(s) URLs. The skill applies safety checks against private or internal network targets to ensure only accessible attachment sources are used in record updates.

What happens if I try to delete an Airtable record without operator approval?

Deleting an Airtable record without explicit operator approval is refused by the skill. Guarded deletions require explicit operator grant to proceed, preventing unintended destructive actions and ensuring safe record management during workflow execution.