What problem does it solve? Working with Airtable data from an agent or terminal normally requires an SDK, OAuth setup, or manual dashboard clicks. This Skill lets you perform full CRUD operations on Airtable records directly with curl and a personal access token, with no extra tooling. ## Core Features & Use Cases - Records CRUD and batch operations: Create, read, update (PATCH merge), upsert by merge field, and delete records, including batches of up to 10 per request. - Filtering, sorting, and pagination: Query records with URL-encoded filterByFormula expressions, named views, field selection, and offset-based pagination loops. - Schema inspection: List accessible bases and table schemas before mutating, confirming exact field names, IDs, and select options. - Use Case: Sync a list of customer emails into an Airtable CRM table idempotently using performUpsert on the Email field, then filter for all records where Status is 'Todo' and mark them Done. ## Quick Start Ask the agent to list the tables in your Airtable base and show the first ten records from a chosen table.