Skill bundle
Airtable Bundle
Bundled skills and integration code for third-party APIs — download a ZIP after checkout, add your keys, and run the workflows in your own stack. Delivery is usually within minutes.
Airtable Bundle
Turn Airtable from a flexible spreadsheet into an AI-assisted operating system. This bundle connects Claude Code to the Airtable Web API so you can inspect custom bases, sync CSV or Excel, clean records, enrich with Claude, plan CRM structures, bulk-update safely, generate follow-ups, summarize views, audit quality, manage webhooks, build reports, and export to CRM-ready files.
Why this bundle exists
Airtable is not a fixed-schema CRM: every base defines its own tables, fields, views, and links. Generic prompts break because field names differ. These skills load metadata first, map columns explicitly, batch writes in groups of ten, throttle to five requests per second per base, and default to dry-run for destructive workflows so operators can review Excel and JSON before applying changes.
How you benefit
- inspect-base produces a schema map (Excel + JSON) so Claude understands your base before writes.
- sync-records and update-records validate field types, support upsert keys, and respect rate limits.
- clean-table-data, enrich-records, generate-followups, and summarize-table combine Airtable data with Claude reasoning while keeping API calls explicit and mockable in tests.
- setup-webhooks documents expiration and refresh so automations stay reliable.
Example prompts
- Run inspect-base on a new client base, then export-data for the Deals table as HubSpot CSV.
- sync-records with
--dry-runto validate field mapping from Salesforce export, then rerun without dry-run. - audit-base with
--workflow-type recruitingand review the Markdown plus Excel tabs.
What you get
Digital download: a ZIP (see _packaging/package-bundle.sh) containing CLAUDE.md, AGENTS.md, PRODUCT.md, VERSION, CHANGELOG.md, _lib/, _context/, and twelve skill folders with run.sh / run.ps1.
Requirements
- AIRTABLE_ACCESS_TOKEN — Personal Access Token (Airtable: tokens & scopes).
- AIRTABLE_BASE_ID — Default base id (
app...). - ANTHROPIC_API_KEY — For Claude-backed skills (enrichment, summaries, audits, NL formulas, reports).
Optional: AIRTABLE_DEFAULT_TABLE, AIRTABLE_DEFAULT_VIEW, AIRTABLE_WEBHOOK_NOTIFICATION_URL, AIRTABLE_USE_FIELD_IDS, AIRTABLE_GLOBAL_RPS, AIRTABLE_DRY_RUN_DEFAULT.
PAT scopes (least privilege)
| Bundle usage | Scopes |
|---|---|
| Read-only | data.records:read, schema.bases:read |
| Record writes | add data.records:write |
| Webhooks | add webhook:manage |
| Schema creation | schema.bases:write (only if you implement schema mutation; this bundle does not require it by default) |
API reference
Compatibility
macOS and Windows (run.sh / run.ps1). Designed for Claude Code, Cursor, Copilot, and Codex-style workflows.
Release history
See CHANGELOG.md (mirrors the sections below for storefront copy).
1.0.0 (2026-05-21)
Initial release: twelve skills and _lib Airtable client.
Release history
Below is the same content as CHANGELOG.md in this bundle, so you can see version history before purchase. After download, both files ship together in the ZIP.
Changelog
1.0.0 (2026-05-21)
Added
- Initial Airtable bundle: twelve skills for schema inspection, sync, cleanup, enrichment, CRM pipeline planning, bulk updates, follow-ups, summaries, audits, webhooks, reports, and exports.
_libHTTP client with per-base (5 r/s) and global PAT throttling, 429/5xx retries, and Metadata / Records / Webhooks helpers.