Skills, hand-off conventions, and the official Airtable MCP server — everything an AI agent needs to drive Airtable competently.
This repo is bundled as an installable plugin for Claude Code and Codex, and as a standalone collection of skills installable via the skills CLI for any agent that consumes agentskills.io–format skills.
Skills covering the Airtable data model, filter syntax, and agent workflow conventions, plus the official Airtable MCP server (mcp.airtable.com/mcp) auto-wired via .mcp.json. The bundled skills live under plugins/airtable/skills/.
/plugin marketplace add airtable/skills
/plugin install airtable@airtable-skillsFor local testing from a clone:
/plugin marketplace add /path/to/this/repo
/plugin install airtable@airtable-skillscodex plugin marketplace add airtable/skillsThen enable the plugin via the Codex TUI's plugins menu, or by adding to ~/.codex/config.toml:
[plugins."airtable@airtable-skills"]
enabled = trueIf you'd rather wire the MCP server manually instead of via the plugin, add the following to ~/.codex/config.toml (the plugin handles this automatically when enabled — this is just an escape hatch):
[[mcp_servers]]
name = "airtable"
type = "http"
url = "https://mcp.airtable.com/mcp"For Cursor, OpenCode, Pi, Gemini CLI, or any other agent that consumes Agent Skills:
# All skills
npx skills add airtable/skills
# A specific skill
npx skills add airtable/skills --skill airtable-filtersOr download the latest tagged release zip from GitHub Releases.
.
├── .claude-plugin/marketplace.json # Claude marketplace catalog
├── .agents/plugins/marketplace.json # Codex marketplace catalog
└── plugins/airtable/ # the V1 plugin
├── .claude-plugin/plugin.json
├── .codex-plugin/plugin.json
├── .mcp.json
└── skills/
MIT.