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 dependencies. ## Core Features & Use Cases - Records CRUD and batch operations: Create, read, update (PATCH), upsert by merge field, and delete records, including batches of up to 10 records per request. - Filtering, sorting, and views: Query records with URL-encoded filterByFormula expressions, server-side sorts, field selection, and named views. - Schema inspection and safe workflows: List bases and table schemas before mutating, handle pagination with offsets, and respect the 5 requests/second/base rate limit. - Use Case: Sync a list of customer emails into an Airtable CRM table idempotently using performUpsert on the Email field, then filter for all "Todo" tasks due after today and mark them done. ## Quick Start Use the airtable skill to list all records in my Tasks table where Status is Todo and create a new high-priority task.