What problem does it solve? Working with Airtable data from an AI agent or terminal normally requires SDKs, OAuth flows, or manual dashboard clicks. This Skill provides direct REST API access via curl so you can read, create, update, upsert, and delete Airtable records with nothing more than a personal access token. ## 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. - Schema Discovery & Filtering: List bases and table schemas via the meta API, then query records with URL-encoded filterByFormula, sorting, field selection, and named views. - Pagination & Rate-Limit Handling: Loop through offset-based pagination (100 records per page) while respecting 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, without worrying about creating duplicates. ## Quick Start Ask the agent to list the first 10 records from your Airtable table after setting AIRTABLE_API_KEY in your environment.