What problem does it solve? Working with Airtable data from the command line or an AI agent normally requires an SDK, OAuth setup, or manual dashboard clicks. This Skill provides direct REST API access via curl so you can read, create, update, upsert, and delete Airtable records without extra tooling. ## Core Features & Use Cases - Full Records CRUD: Create, read, update (PATCH), upsert by merge field, and delete records, including batch operations of up to 10 records per request. - Filtering, Sorting & Views: Query records with URL-encoded filterByFormula expressions, server-side sorting, field selection, and named views. - Schema Discovery: List accessible bases and inspect table schemas to confirm exact field names and select options before mutating data. - 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.