[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-airtable-cli":3,"mdc-qtwej1-key":36,"related-repo-openai-airtable-cli":1864,"related-org-openai-airtable-cli":1985},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"airtable-cli","manage Airtable records and data","Lists bases, reads and writes records, manages tables and fields, filters and searches data in Airtable via the `airtable-mcp` CLI. Use when the task involves Airtable data or the user mentions airtable-mcp, bases, tables, records, or fields.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Airtable","airtable","tag",{"name":17,"slug":18,"type":15},"Data Analysis","data-analysis",{"name":20,"slug":21,"type":15},"CLI","cli",{"name":23,"slug":24,"type":15},"Database","database",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fairtable\u002Fskills\u002Fairtable-cli","---\nname: airtable-cli\ndescription: >-\n    Lists bases, reads and writes records, manages tables and fields, filters and\n    searches data in Airtable via the `airtable-mcp` CLI. Use when the task\n    involves Airtable data or the user mentions airtable-mcp, bases, tables,\n    records, or fields.\n---\n\n# airtable-mcp\n\n## Self-discovery\n\nTools are fetched from the MCP server at runtime, so the CLI never has a hardcoded command list. Discover what's available:\n\n```sh\nairtable-mcp tools            # human-readable list\nairtable-mcp tools --json     # machine-parseable list\nairtable-mcp \u003Ctool> --help    # show flags and descriptions for a tool\n```\n\nRun `airtable-mcp tools` before assuming a tool exists. Tool names, arguments, and output shapes can change between server releases without a CLI update.\n\n## Install\n\n```sh\nnpm install -g @airtable\u002Fmcp-cli\n```\n\n## Auth\n\nThe CLI needs an Airtable personal access token (PAT). Two paths:\n\n**Environment variable (preferred for scripts\u002Fagents):**\n\n```sh\nexport AIRTABLE_TOKEN=pat_xxx\n```\n\n**Interactive configure (stores token in `~\u002F.airtable\u002Fcli.json` with 0600 permissions):**\n\n```sh\nairtable-mcp configure\n```\n\nCreate tokens at https:\u002F\u002Fairtable.com\u002Fcreate\u002Ftokens. Ensure the token has the scopes required by the tools being called.\n\n`AIRTABLE_TOKEN` takes precedence over saved profiles when no `--profile` flag is set. Never log or echo tokens.\n\n## Quick reference\n\n| Task                   | Command                                                 |\n| ---------------------- | ------------------------------------------------------- |\n| Set up credentials     | `airtable-mcp configure`                                |\n| Add a named profile    | `airtable-mcp configure --profile work`                 |\n| Check auth status      | `airtable-mcp whoami`                                   |\n| Remove credentials     | `airtable-mcp logout`                                   |\n| Remove all profiles    | `airtable-mcp logout --all`                             |\n| List available tools   | `airtable-mcp tools`                                    |\n| Run a tool             | `airtable-mcp \u003Ctool> --flagName value`                  |\n| Get tool help          | `airtable-mcp \u003Ctool> --help`                            |\n| Pass args via stdin    | `echo '{\"key\":\"val\"}' \\| airtable-mcp \u003Ctool> --input -` |\n| Bypass tool cache      | `airtable-mcp \u003Ctool> --refresh`                         |\n| Suppress status msgs   | `airtable-mcp \u003Ctool> -q`                                |\n| Raw text output        | `airtable-mcp \u003Ctool> --output raw`                      |\n| Use a specific profile | `airtable-mcp \u003Ctool> --profile work`                    |\n\nTool names use hyphens on the CLI (`list-records`) but underscores in MCP (`list_records`). The CLI translates automatically.\n\n## Workflow\n\n1. **Auth** — set `AIRTABLE_TOKEN` or run `airtable-mcp configure`\n2. **Discover** — run `airtable-mcp tools` to see available tools\n3. **Inspect** — run `airtable-mcp \u003Ctool> --help` for flags and descriptions\n4. **Check access** — in `tools --json` output, check the `access` field: `read-only`, `write`, or `destructive`. Confirm with the user before running `destructive` tools.\n5. **Execute** — run `airtable-mcp \u003Ctool> --flagName value`\n\n## Output & automation\n\n-   Default output is formatted JSON to stdout. Status messages go to stderr.\n-   `--json` on `tools` gives a JSON array of `{name, title, access}`.\n-   `-q` \u002F `--quiet` suppresses stderr status messages (cache warnings, etc).\n-   `--output raw` returns the raw server response text instead of parsed JSON.\n-   `--input -` reads tool arguments as a JSON object from stdin, bypassing flag parsing.\n-   Exit codes: `0` success, `1` error (auth, tool failure, not found), `2` usage error (bad flags, bad input).\n\n## Common tasks\n\n**Find a base and list its tables:**\n\n```sh\nairtable-mcp search-bases --searchQuery \"Project Tracker\" -q\nairtable-mcp list-tables-for-base --baseId appK9MtBqFw3o5jGN -q\n```\n\n**List records with specific fields:**\n\n```sh\nairtable-mcp list-records-for-table \\\n  --baseId appK9MtBqFw3o5jGN --tableId tblL4GpTfEz8byRsW \\\n  --fieldIds '[\"Name\",\"Status\"]' --pageSize 10 -q\n```\n\n**Filter records** — filters use structured JSON, not formula strings. Wrap conditions in an `operands` array; the top-level `operator` defaults to `and` if omitted:\n\n```sh\nairtable-mcp list-records-for-table \\\n  --baseId appK9MtBqFw3o5jGN --tableId tblL4GpTfEz8byRsW \\\n  --filters '{\"operator\":\"and\",\"operands\":[{\"operator\":\"=\",\"operands\":[\"Status\",\"Done\"]}]}' -q\n```\n\nFor select fields, filter by choice ID (from `get-table-schema`), not the display name. The `airtable-filters` skill covers compound filters, date filters, and operator-by-field-type details.\n\n**Search records** — use `search-records` for free-text\u002Ffuzzy queries on large tables. Use `list-records-for-table` with `--filters` when filtering by exact field values:\n\n```sh\nairtable-mcp search-records \\\n  --baseId appK9MtBqFw3o5jGN --table tblL4GpTfEz8byRsW \\\n  --query \"acme\" --fields '[\"Name\",\"Notes\"]' -q\n```\n\nPass `--fields ALL_SEARCHABLE_FIELDS` to search across every indexed field. Date, rating, checkbox, and button fields are not searchable.\n\n**Update records** — complex args are easier via `--input -`:\n\n```sh\necho '{\"baseId\":\"appK9MtBqFw3o5jGN\",\"tableId\":\"tblL4GpTfEz8byRsW\",\"records\":[{\"id\":\"recVnR3xPq8sD2yLk\",\"fields\":{\"fld8WsrpLHHevsnW8\":\"Done\"}}]}' \\\n  | airtable-mcp update-records-for-table --input - -q\n```\n\nSelect field values are returned as objects (`{\"id\":\"sel...\",\"name\":\"Done\"}`) but must be written as plain strings (`\"Done\"`). Record field keys in create\u002Fupdate currently require field IDs (`fldXXX`) — use `get-table-schema` to resolve names to IDs before writing. Note that `fieldIds`, `sort`, and `filters` accept both names and IDs.\n\n## Gotchas\n\n| Problem                                      | Cause                                                              | Fix                                                                      |\n| -------------------------------------------- | ------------------------------------------------------------------ | ------------------------------------------------------------------------ |\n| `Unknown tool: X`                            | Tool name doesn't exist on the server or cache is stale            | Run `airtable-mcp tools --refresh` to refresh, then retry                |\n| `Authentication failed`                      | Token expired, revoked, or wrong                                   | Run `airtable-mcp configure` or check `AIRTABLE_TOKEN`                   |\n| `Access denied`                              | Token missing required scopes                                      | Add scopes at https:\u002F\u002Fairtable.com\u002Fcreate\u002Ftokens                         |\n| `Connection timed out`                       | Server unreachable (10s timeout)                                   | Check network; CLI falls back to stale cache if available                |\n| Boolean flags take no value                  | `--dryRun true` passes `\"true\"` as next arg                        | Use `--dryRun` alone (booleans are presence-based)                       |\n| Array\u002Fobject args fail                       | Value isn't valid JSON                                             | Pass as JSON string: `--fieldMappings '{\"a\":\"b\"}'`                       |\n| Filter rejected at top level                 | Single condition passed without `operands` wrapper                 | Wrap in `{\"operands\":[...]}` (`operator` defaults to `and`)              |\n| Sort key is `fieldId` not `field`            | `--sort '[{\"field\":\"Name\"}]'` silently ignored                     | Use `{\"fieldId\":\"Name\",\"direction\":\"asc\"}` — accepts field IDs or names  |\n| Select filter returns no matches             | Filtering by display name instead of choice ID                     | Run `get-table-schema` first to get `sel...` choice IDs                  |\n| `INVALID_RECORDS` on batch write             | Batch limit is 10 records per request (default; varies by account) | Split into chunks of ≤10 and check `\u003Ctool> --help` for the current limit |\n| Permission error on `list-records-for-table` | User has interface-only access to the base                         | Use `list-records-for-page` \u002F `get-record-for-page` instead              |\n| Endpoints restricted                         | CLI only allows HTTPS on `*.airtable.com`                          | Cannot point at arbitrary servers (security constraint)                  |\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,49,56,62,159,172,178,208,214,219,228,259,275,294,309,328,334,582,603,609,739,745,851,857,865,935,943,1031,1065,1135,1156,1190,1280,1293,1310,1375,1434,1440,1858],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"airtable-mcp",[47],{"type":48,"value":45},"text",{"type":42,"tag":50,"props":51,"children":53},"h2",{"id":52},"self-discovery",[54],{"type":48,"value":55},"Self-discovery",{"type":42,"tag":57,"props":58,"children":59},"p",{},[60],{"type":48,"value":61},"Tools are fetched from the MCP server at runtime, so the CLI never has a hardcoded command list. Discover what's available:",{"type":42,"tag":63,"props":64,"children":69},"pre",{"className":65,"code":66,"language":67,"meta":68,"style":68},"language-sh shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","airtable-mcp tools            # human-readable list\nairtable-mcp tools --json     # machine-parseable list\nairtable-mcp \u003Ctool> --help    # show flags and descriptions for a tool\n","sh","",[70],{"type":42,"tag":71,"props":72,"children":73},"code",{"__ignoreMap":68},[74,97,119],{"type":42,"tag":75,"props":76,"children":79},"span",{"class":77,"line":78},"line",1,[80,85,91],{"type":42,"tag":75,"props":81,"children":83},{"style":82},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[84],{"type":48,"value":45},{"type":42,"tag":75,"props":86,"children":88},{"style":87},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[89],{"type":48,"value":90}," tools",{"type":42,"tag":75,"props":92,"children":94},{"style":93},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[95],{"type":48,"value":96},"            # human-readable list\n",{"type":42,"tag":75,"props":98,"children":100},{"class":77,"line":99},2,[101,105,109,114],{"type":42,"tag":75,"props":102,"children":103},{"style":82},[104],{"type":48,"value":45},{"type":42,"tag":75,"props":106,"children":107},{"style":87},[108],{"type":48,"value":90},{"type":42,"tag":75,"props":110,"children":111},{"style":87},[112],{"type":48,"value":113}," --json",{"type":42,"tag":75,"props":115,"children":116},{"style":93},[117],{"type":48,"value":118},"     # machine-parseable list\n",{"type":42,"tag":75,"props":120,"children":122},{"class":77,"line":121},3,[123,127,133,138,144,149,154],{"type":42,"tag":75,"props":124,"children":125},{"style":82},[126],{"type":48,"value":45},{"type":42,"tag":75,"props":128,"children":130},{"style":129},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[131],{"type":48,"value":132}," \u003C",{"type":42,"tag":75,"props":134,"children":135},{"style":87},[136],{"type":48,"value":137},"too",{"type":42,"tag":75,"props":139,"children":141},{"style":140},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[142],{"type":48,"value":143},"l",{"type":42,"tag":75,"props":145,"children":146},{"style":129},[147],{"type":48,"value":148},">",{"type":42,"tag":75,"props":150,"children":151},{"style":87},[152],{"type":48,"value":153}," --help",{"type":42,"tag":75,"props":155,"children":156},{"style":93},[157],{"type":48,"value":158},"    # show flags and descriptions for a tool\n",{"type":42,"tag":57,"props":160,"children":161},{},[162,164,170],{"type":48,"value":163},"Run ",{"type":42,"tag":71,"props":165,"children":167},{"className":166},[],[168],{"type":48,"value":169},"airtable-mcp tools",{"type":48,"value":171}," before assuming a tool exists. Tool names, arguments, and output shapes can change between server releases without a CLI update.",{"type":42,"tag":50,"props":173,"children":175},{"id":174},"install",[176],{"type":48,"value":177},"Install",{"type":42,"tag":63,"props":179,"children":181},{"className":65,"code":180,"language":67,"meta":68,"style":68},"npm install -g @airtable\u002Fmcp-cli\n",[182],{"type":42,"tag":71,"props":183,"children":184},{"__ignoreMap":68},[185],{"type":42,"tag":75,"props":186,"children":187},{"class":77,"line":78},[188,193,198,203],{"type":42,"tag":75,"props":189,"children":190},{"style":82},[191],{"type":48,"value":192},"npm",{"type":42,"tag":75,"props":194,"children":195},{"style":87},[196],{"type":48,"value":197}," install",{"type":42,"tag":75,"props":199,"children":200},{"style":87},[201],{"type":48,"value":202}," -g",{"type":42,"tag":75,"props":204,"children":205},{"style":87},[206],{"type":48,"value":207}," @airtable\u002Fmcp-cli\n",{"type":42,"tag":50,"props":209,"children":211},{"id":210},"auth",[212],{"type":48,"value":213},"Auth",{"type":42,"tag":57,"props":215,"children":216},{},[217],{"type":48,"value":218},"The CLI needs an Airtable personal access token (PAT). Two paths:",{"type":42,"tag":57,"props":220,"children":221},{},[222],{"type":42,"tag":223,"props":224,"children":225},"strong",{},[226],{"type":48,"value":227},"Environment variable (preferred for scripts\u002Fagents):",{"type":42,"tag":63,"props":229,"children":231},{"className":65,"code":230,"language":67,"meta":68,"style":68},"export AIRTABLE_TOKEN=pat_xxx\n",[232],{"type":42,"tag":71,"props":233,"children":234},{"__ignoreMap":68},[235],{"type":42,"tag":75,"props":236,"children":237},{"class":77,"line":78},[238,244,249,254],{"type":42,"tag":75,"props":239,"children":241},{"style":240},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[242],{"type":48,"value":243},"export",{"type":42,"tag":75,"props":245,"children":246},{"style":140},[247],{"type":48,"value":248}," AIRTABLE_TOKEN",{"type":42,"tag":75,"props":250,"children":251},{"style":129},[252],{"type":48,"value":253},"=",{"type":42,"tag":75,"props":255,"children":256},{"style":140},[257],{"type":48,"value":258},"pat_xxx\n",{"type":42,"tag":57,"props":260,"children":261},{},[262],{"type":42,"tag":223,"props":263,"children":264},{},[265,267,273],{"type":48,"value":266},"Interactive configure (stores token in ",{"type":42,"tag":71,"props":268,"children":270},{"className":269},[],[271],{"type":48,"value":272},"~\u002F.airtable\u002Fcli.json",{"type":48,"value":274}," with 0600 permissions):",{"type":42,"tag":63,"props":276,"children":278},{"className":65,"code":277,"language":67,"meta":68,"style":68},"airtable-mcp configure\n",[279],{"type":42,"tag":71,"props":280,"children":281},{"__ignoreMap":68},[282],{"type":42,"tag":75,"props":283,"children":284},{"class":77,"line":78},[285,289],{"type":42,"tag":75,"props":286,"children":287},{"style":82},[288],{"type":48,"value":45},{"type":42,"tag":75,"props":290,"children":291},{"style":87},[292],{"type":48,"value":293}," configure\n",{"type":42,"tag":57,"props":295,"children":296},{},[297,299,307],{"type":48,"value":298},"Create tokens at ",{"type":42,"tag":300,"props":301,"children":305},"a",{"href":302,"rel":303},"https:\u002F\u002Fairtable.com\u002Fcreate\u002Ftokens",[304],"nofollow",[306],{"type":48,"value":302},{"type":48,"value":308},". Ensure the token has the scopes required by the tools being called.",{"type":42,"tag":57,"props":310,"children":311},{},[312,318,320,326],{"type":42,"tag":71,"props":313,"children":315},{"className":314},[],[316],{"type":48,"value":317},"AIRTABLE_TOKEN",{"type":48,"value":319}," takes precedence over saved profiles when no ",{"type":42,"tag":71,"props":321,"children":323},{"className":322},[],[324],{"type":48,"value":325},"--profile",{"type":48,"value":327}," flag is set. Never log or echo tokens.",{"type":42,"tag":50,"props":329,"children":331},{"id":330},"quick-reference",[332],{"type":48,"value":333},"Quick reference",{"type":42,"tag":335,"props":336,"children":337},"table",{},[338,357],{"type":42,"tag":339,"props":340,"children":341},"thead",{},[342],{"type":42,"tag":343,"props":344,"children":345},"tr",{},[346,352],{"type":42,"tag":347,"props":348,"children":349},"th",{},[350],{"type":48,"value":351},"Task",{"type":42,"tag":347,"props":353,"children":354},{},[355],{"type":48,"value":356},"Command",{"type":42,"tag":358,"props":359,"children":360},"tbody",{},[361,379,396,413,430,447,463,480,497,514,531,548,565],{"type":42,"tag":343,"props":362,"children":363},{},[364,370],{"type":42,"tag":365,"props":366,"children":367},"td",{},[368],{"type":48,"value":369},"Set up credentials",{"type":42,"tag":365,"props":371,"children":372},{},[373],{"type":42,"tag":71,"props":374,"children":376},{"className":375},[],[377],{"type":48,"value":378},"airtable-mcp configure",{"type":42,"tag":343,"props":380,"children":381},{},[382,387],{"type":42,"tag":365,"props":383,"children":384},{},[385],{"type":48,"value":386},"Add a named profile",{"type":42,"tag":365,"props":388,"children":389},{},[390],{"type":42,"tag":71,"props":391,"children":393},{"className":392},[],[394],{"type":48,"value":395},"airtable-mcp configure --profile work",{"type":42,"tag":343,"props":397,"children":398},{},[399,404],{"type":42,"tag":365,"props":400,"children":401},{},[402],{"type":48,"value":403},"Check auth status",{"type":42,"tag":365,"props":405,"children":406},{},[407],{"type":42,"tag":71,"props":408,"children":410},{"className":409},[],[411],{"type":48,"value":412},"airtable-mcp whoami",{"type":42,"tag":343,"props":414,"children":415},{},[416,421],{"type":42,"tag":365,"props":417,"children":418},{},[419],{"type":48,"value":420},"Remove credentials",{"type":42,"tag":365,"props":422,"children":423},{},[424],{"type":42,"tag":71,"props":425,"children":427},{"className":426},[],[428],{"type":48,"value":429},"airtable-mcp logout",{"type":42,"tag":343,"props":431,"children":432},{},[433,438],{"type":42,"tag":365,"props":434,"children":435},{},[436],{"type":48,"value":437},"Remove all profiles",{"type":42,"tag":365,"props":439,"children":440},{},[441],{"type":42,"tag":71,"props":442,"children":444},{"className":443},[],[445],{"type":48,"value":446},"airtable-mcp logout --all",{"type":42,"tag":343,"props":448,"children":449},{},[450,455],{"type":42,"tag":365,"props":451,"children":452},{},[453],{"type":48,"value":454},"List available tools",{"type":42,"tag":365,"props":456,"children":457},{},[458],{"type":42,"tag":71,"props":459,"children":461},{"className":460},[],[462],{"type":48,"value":169},{"type":42,"tag":343,"props":464,"children":465},{},[466,471],{"type":42,"tag":365,"props":467,"children":468},{},[469],{"type":48,"value":470},"Run a tool",{"type":42,"tag":365,"props":472,"children":473},{},[474],{"type":42,"tag":71,"props":475,"children":477},{"className":476},[],[478],{"type":48,"value":479},"airtable-mcp \u003Ctool> --flagName value",{"type":42,"tag":343,"props":481,"children":482},{},[483,488],{"type":42,"tag":365,"props":484,"children":485},{},[486],{"type":48,"value":487},"Get tool help",{"type":42,"tag":365,"props":489,"children":490},{},[491],{"type":42,"tag":71,"props":492,"children":494},{"className":493},[],[495],{"type":48,"value":496},"airtable-mcp \u003Ctool> --help",{"type":42,"tag":343,"props":498,"children":499},{},[500,505],{"type":42,"tag":365,"props":501,"children":502},{},[503],{"type":48,"value":504},"Pass args via stdin",{"type":42,"tag":365,"props":506,"children":507},{},[508],{"type":42,"tag":71,"props":509,"children":511},{"className":510},[],[512],{"type":48,"value":513},"echo '{\"key\":\"val\"}' | airtable-mcp \u003Ctool> --input -",{"type":42,"tag":343,"props":515,"children":516},{},[517,522],{"type":42,"tag":365,"props":518,"children":519},{},[520],{"type":48,"value":521},"Bypass tool cache",{"type":42,"tag":365,"props":523,"children":524},{},[525],{"type":42,"tag":71,"props":526,"children":528},{"className":527},[],[529],{"type":48,"value":530},"airtable-mcp \u003Ctool> --refresh",{"type":42,"tag":343,"props":532,"children":533},{},[534,539],{"type":42,"tag":365,"props":535,"children":536},{},[537],{"type":48,"value":538},"Suppress status msgs",{"type":42,"tag":365,"props":540,"children":541},{},[542],{"type":42,"tag":71,"props":543,"children":545},{"className":544},[],[546],{"type":48,"value":547},"airtable-mcp \u003Ctool> -q",{"type":42,"tag":343,"props":549,"children":550},{},[551,556],{"type":42,"tag":365,"props":552,"children":553},{},[554],{"type":48,"value":555},"Raw text output",{"type":42,"tag":365,"props":557,"children":558},{},[559],{"type":42,"tag":71,"props":560,"children":562},{"className":561},[],[563],{"type":48,"value":564},"airtable-mcp \u003Ctool> --output raw",{"type":42,"tag":343,"props":566,"children":567},{},[568,573],{"type":42,"tag":365,"props":569,"children":570},{},[571],{"type":48,"value":572},"Use a specific profile",{"type":42,"tag":365,"props":574,"children":575},{},[576],{"type":42,"tag":71,"props":577,"children":579},{"className":578},[],[580],{"type":48,"value":581},"airtable-mcp \u003Ctool> --profile work",{"type":42,"tag":57,"props":583,"children":584},{},[585,587,593,595,601],{"type":48,"value":586},"Tool names use hyphens on the CLI (",{"type":42,"tag":71,"props":588,"children":590},{"className":589},[],[591],{"type":48,"value":592},"list-records",{"type":48,"value":594},") but underscores in MCP (",{"type":42,"tag":71,"props":596,"children":598},{"className":597},[],[599],{"type":48,"value":600},"list_records",{"type":48,"value":602},"). The CLI translates automatically.",{"type":42,"tag":50,"props":604,"children":606},{"id":605},"workflow",[607],{"type":48,"value":608},"Workflow",{"type":42,"tag":610,"props":611,"children":612},"ol",{},[613,635,652,668,725],{"type":42,"tag":614,"props":615,"children":616},"li",{},[617,621,623,628,630],{"type":42,"tag":223,"props":618,"children":619},{},[620],{"type":48,"value":213},{"type":48,"value":622}," — set ",{"type":42,"tag":71,"props":624,"children":626},{"className":625},[],[627],{"type":48,"value":317},{"type":48,"value":629}," or run ",{"type":42,"tag":71,"props":631,"children":633},{"className":632},[],[634],{"type":48,"value":378},{"type":42,"tag":614,"props":636,"children":637},{},[638,643,645,650],{"type":42,"tag":223,"props":639,"children":640},{},[641],{"type":48,"value":642},"Discover",{"type":48,"value":644}," — run ",{"type":42,"tag":71,"props":646,"children":648},{"className":647},[],[649],{"type":48,"value":169},{"type":48,"value":651}," to see available tools",{"type":42,"tag":614,"props":653,"children":654},{},[655,660,661,666],{"type":42,"tag":223,"props":656,"children":657},{},[658],{"type":48,"value":659},"Inspect",{"type":48,"value":644},{"type":42,"tag":71,"props":662,"children":664},{"className":663},[],[665],{"type":48,"value":496},{"type":48,"value":667}," for flags and descriptions",{"type":42,"tag":614,"props":669,"children":670},{},[671,676,678,684,686,692,694,700,702,708,710,716,718,723],{"type":42,"tag":223,"props":672,"children":673},{},[674],{"type":48,"value":675},"Check access",{"type":48,"value":677}," — in ",{"type":42,"tag":71,"props":679,"children":681},{"className":680},[],[682],{"type":48,"value":683},"tools --json",{"type":48,"value":685}," output, check the ",{"type":42,"tag":71,"props":687,"children":689},{"className":688},[],[690],{"type":48,"value":691},"access",{"type":48,"value":693}," field: ",{"type":42,"tag":71,"props":695,"children":697},{"className":696},[],[698],{"type":48,"value":699},"read-only",{"type":48,"value":701},", ",{"type":42,"tag":71,"props":703,"children":705},{"className":704},[],[706],{"type":48,"value":707},"write",{"type":48,"value":709},", or ",{"type":42,"tag":71,"props":711,"children":713},{"className":712},[],[714],{"type":48,"value":715},"destructive",{"type":48,"value":717},". Confirm with the user before running ",{"type":42,"tag":71,"props":719,"children":721},{"className":720},[],[722],{"type":48,"value":715},{"type":48,"value":724}," tools.",{"type":42,"tag":614,"props":726,"children":727},{},[728,733,734],{"type":42,"tag":223,"props":729,"children":730},{},[731],{"type":48,"value":732},"Execute",{"type":48,"value":644},{"type":42,"tag":71,"props":735,"children":737},{"className":736},[],[738],{"type":48,"value":479},{"type":42,"tag":50,"props":740,"children":742},{"id":741},"output-automation",[743],{"type":48,"value":744},"Output & automation",{"type":42,"tag":746,"props":747,"children":748},"ul",{},[749,754,781,800,811,822],{"type":42,"tag":614,"props":750,"children":751},{},[752],{"type":48,"value":753},"Default output is formatted JSON to stdout. Status messages go to stderr.",{"type":42,"tag":614,"props":755,"children":756},{},[757,763,765,771,773,779],{"type":42,"tag":71,"props":758,"children":760},{"className":759},[],[761],{"type":48,"value":762},"--json",{"type":48,"value":764}," on ",{"type":42,"tag":71,"props":766,"children":768},{"className":767},[],[769],{"type":48,"value":770},"tools",{"type":48,"value":772}," gives a JSON array of ",{"type":42,"tag":71,"props":774,"children":776},{"className":775},[],[777],{"type":48,"value":778},"{name, title, access}",{"type":48,"value":780},".",{"type":42,"tag":614,"props":782,"children":783},{},[784,790,792,798],{"type":42,"tag":71,"props":785,"children":787},{"className":786},[],[788],{"type":48,"value":789},"-q",{"type":48,"value":791}," \u002F ",{"type":42,"tag":71,"props":793,"children":795},{"className":794},[],[796],{"type":48,"value":797},"--quiet",{"type":48,"value":799}," suppresses stderr status messages (cache warnings, etc).",{"type":42,"tag":614,"props":801,"children":802},{},[803,809],{"type":42,"tag":71,"props":804,"children":806},{"className":805},[],[807],{"type":48,"value":808},"--output raw",{"type":48,"value":810}," returns the raw server response text instead of parsed JSON.",{"type":42,"tag":614,"props":812,"children":813},{},[814,820],{"type":42,"tag":71,"props":815,"children":817},{"className":816},[],[818],{"type":48,"value":819},"--input -",{"type":48,"value":821}," reads tool arguments as a JSON object from stdin, bypassing flag parsing.",{"type":42,"tag":614,"props":823,"children":824},{},[825,827,833,835,841,843,849],{"type":48,"value":826},"Exit codes: ",{"type":42,"tag":71,"props":828,"children":830},{"className":829},[],[831],{"type":48,"value":832},"0",{"type":48,"value":834}," success, ",{"type":42,"tag":71,"props":836,"children":838},{"className":837},[],[839],{"type":48,"value":840},"1",{"type":48,"value":842}," error (auth, tool failure, not found), ",{"type":42,"tag":71,"props":844,"children":846},{"className":845},[],[847],{"type":48,"value":848},"2",{"type":48,"value":850}," usage error (bad flags, bad input).",{"type":42,"tag":50,"props":852,"children":854},{"id":853},"common-tasks",[855],{"type":48,"value":856},"Common tasks",{"type":42,"tag":57,"props":858,"children":859},{},[860],{"type":42,"tag":223,"props":861,"children":862},{},[863],{"type":48,"value":864},"Find a base and list its tables:",{"type":42,"tag":63,"props":866,"children":868},{"className":65,"code":867,"language":67,"meta":68,"style":68},"airtable-mcp search-bases --searchQuery \"Project Tracker\" -q\nairtable-mcp list-tables-for-base --baseId appK9MtBqFw3o5jGN -q\n",[869],{"type":42,"tag":71,"props":870,"children":871},{"__ignoreMap":68},[872,909],{"type":42,"tag":75,"props":873,"children":874},{"class":77,"line":78},[875,879,884,889,894,899,904],{"type":42,"tag":75,"props":876,"children":877},{"style":82},[878],{"type":48,"value":45},{"type":42,"tag":75,"props":880,"children":881},{"style":87},[882],{"type":48,"value":883}," search-bases",{"type":42,"tag":75,"props":885,"children":886},{"style":87},[887],{"type":48,"value":888}," --searchQuery",{"type":42,"tag":75,"props":890,"children":891},{"style":129},[892],{"type":48,"value":893}," \"",{"type":42,"tag":75,"props":895,"children":896},{"style":87},[897],{"type":48,"value":898},"Project Tracker",{"type":42,"tag":75,"props":900,"children":901},{"style":129},[902],{"type":48,"value":903},"\"",{"type":42,"tag":75,"props":905,"children":906},{"style":87},[907],{"type":48,"value":908}," -q\n",{"type":42,"tag":75,"props":910,"children":911},{"class":77,"line":99},[912,916,921,926,931],{"type":42,"tag":75,"props":913,"children":914},{"style":82},[915],{"type":48,"value":45},{"type":42,"tag":75,"props":917,"children":918},{"style":87},[919],{"type":48,"value":920}," list-tables-for-base",{"type":42,"tag":75,"props":922,"children":923},{"style":87},[924],{"type":48,"value":925}," --baseId",{"type":42,"tag":75,"props":927,"children":928},{"style":87},[929],{"type":48,"value":930}," appK9MtBqFw3o5jGN",{"type":42,"tag":75,"props":932,"children":933},{"style":87},[934],{"type":48,"value":908},{"type":42,"tag":57,"props":936,"children":937},{},[938],{"type":42,"tag":223,"props":939,"children":940},{},[941],{"type":48,"value":942},"List records with specific fields:",{"type":42,"tag":63,"props":944,"children":946},{"className":65,"code":945,"language":67,"meta":68,"style":68},"airtable-mcp list-records-for-table \\\n  --baseId appK9MtBqFw3o5jGN --tableId tblL4GpTfEz8byRsW \\\n  --fieldIds '[\"Name\",\"Status\"]' --pageSize 10 -q\n",[947],{"type":42,"tag":71,"props":948,"children":949},{"__ignoreMap":68},[950,967,993],{"type":42,"tag":75,"props":951,"children":952},{"class":77,"line":78},[953,957,962],{"type":42,"tag":75,"props":954,"children":955},{"style":82},[956],{"type":48,"value":45},{"type":42,"tag":75,"props":958,"children":959},{"style":87},[960],{"type":48,"value":961}," list-records-for-table",{"type":42,"tag":75,"props":963,"children":964},{"style":140},[965],{"type":48,"value":966}," \\\n",{"type":42,"tag":75,"props":968,"children":969},{"class":77,"line":99},[970,975,979,984,989],{"type":42,"tag":75,"props":971,"children":972},{"style":87},[973],{"type":48,"value":974},"  --baseId",{"type":42,"tag":75,"props":976,"children":977},{"style":87},[978],{"type":48,"value":930},{"type":42,"tag":75,"props":980,"children":981},{"style":87},[982],{"type":48,"value":983}," --tableId",{"type":42,"tag":75,"props":985,"children":986},{"style":87},[987],{"type":48,"value":988}," tblL4GpTfEz8byRsW",{"type":42,"tag":75,"props":990,"children":991},{"style":140},[992],{"type":48,"value":966},{"type":42,"tag":75,"props":994,"children":995},{"class":77,"line":121},[996,1001,1006,1011,1016,1021,1027],{"type":42,"tag":75,"props":997,"children":998},{"style":87},[999],{"type":48,"value":1000},"  --fieldIds",{"type":42,"tag":75,"props":1002,"children":1003},{"style":129},[1004],{"type":48,"value":1005}," '",{"type":42,"tag":75,"props":1007,"children":1008},{"style":87},[1009],{"type":48,"value":1010},"[\"Name\",\"Status\"]",{"type":42,"tag":75,"props":1012,"children":1013},{"style":129},[1014],{"type":48,"value":1015},"'",{"type":42,"tag":75,"props":1017,"children":1018},{"style":87},[1019],{"type":48,"value":1020}," --pageSize",{"type":42,"tag":75,"props":1022,"children":1024},{"style":1023},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1025],{"type":48,"value":1026}," 10",{"type":42,"tag":75,"props":1028,"children":1029},{"style":87},[1030],{"type":48,"value":908},{"type":42,"tag":57,"props":1032,"children":1033},{},[1034,1039,1041,1047,1049,1055,1057,1063],{"type":42,"tag":223,"props":1035,"children":1036},{},[1037],{"type":48,"value":1038},"Filter records",{"type":48,"value":1040}," — filters use structured JSON, not formula strings. Wrap conditions in an ",{"type":42,"tag":71,"props":1042,"children":1044},{"className":1043},[],[1045],{"type":48,"value":1046},"operands",{"type":48,"value":1048}," array; the top-level ",{"type":42,"tag":71,"props":1050,"children":1052},{"className":1051},[],[1053],{"type":48,"value":1054},"operator",{"type":48,"value":1056}," defaults to ",{"type":42,"tag":71,"props":1058,"children":1060},{"className":1059},[],[1061],{"type":48,"value":1062},"and",{"type":48,"value":1064}," if omitted:",{"type":42,"tag":63,"props":1066,"children":1068},{"className":65,"code":1067,"language":67,"meta":68,"style":68},"airtable-mcp list-records-for-table \\\n  --baseId appK9MtBqFw3o5jGN --tableId tblL4GpTfEz8byRsW \\\n  --filters '{\"operator\":\"and\",\"operands\":[{\"operator\":\"=\",\"operands\":[\"Status\",\"Done\"]}]}' -q\n",[1069],{"type":42,"tag":71,"props":1070,"children":1071},{"__ignoreMap":68},[1072,1087,1110],{"type":42,"tag":75,"props":1073,"children":1074},{"class":77,"line":78},[1075,1079,1083],{"type":42,"tag":75,"props":1076,"children":1077},{"style":82},[1078],{"type":48,"value":45},{"type":42,"tag":75,"props":1080,"children":1081},{"style":87},[1082],{"type":48,"value":961},{"type":42,"tag":75,"props":1084,"children":1085},{"style":140},[1086],{"type":48,"value":966},{"type":42,"tag":75,"props":1088,"children":1089},{"class":77,"line":99},[1090,1094,1098,1102,1106],{"type":42,"tag":75,"props":1091,"children":1092},{"style":87},[1093],{"type":48,"value":974},{"type":42,"tag":75,"props":1095,"children":1096},{"style":87},[1097],{"type":48,"value":930},{"type":42,"tag":75,"props":1099,"children":1100},{"style":87},[1101],{"type":48,"value":983},{"type":42,"tag":75,"props":1103,"children":1104},{"style":87},[1105],{"type":48,"value":988},{"type":42,"tag":75,"props":1107,"children":1108},{"style":140},[1109],{"type":48,"value":966},{"type":42,"tag":75,"props":1111,"children":1112},{"class":77,"line":121},[1113,1118,1122,1127,1131],{"type":42,"tag":75,"props":1114,"children":1115},{"style":87},[1116],{"type":48,"value":1117},"  --filters",{"type":42,"tag":75,"props":1119,"children":1120},{"style":129},[1121],{"type":48,"value":1005},{"type":42,"tag":75,"props":1123,"children":1124},{"style":87},[1125],{"type":48,"value":1126},"{\"operator\":\"and\",\"operands\":[{\"operator\":\"=\",\"operands\":[\"Status\",\"Done\"]}]}",{"type":42,"tag":75,"props":1128,"children":1129},{"style":129},[1130],{"type":48,"value":1015},{"type":42,"tag":75,"props":1132,"children":1133},{"style":87},[1134],{"type":48,"value":908},{"type":42,"tag":57,"props":1136,"children":1137},{},[1138,1140,1146,1148,1154],{"type":48,"value":1139},"For select fields, filter by choice ID (from ",{"type":42,"tag":71,"props":1141,"children":1143},{"className":1142},[],[1144],{"type":48,"value":1145},"get-table-schema",{"type":48,"value":1147},"), not the display name. The ",{"type":42,"tag":71,"props":1149,"children":1151},{"className":1150},[],[1152],{"type":48,"value":1153},"airtable-filters",{"type":48,"value":1155}," skill covers compound filters, date filters, and operator-by-field-type details.",{"type":42,"tag":57,"props":1157,"children":1158},{},[1159,1164,1166,1172,1174,1180,1182,1188],{"type":42,"tag":223,"props":1160,"children":1161},{},[1162],{"type":48,"value":1163},"Search records",{"type":48,"value":1165}," — use ",{"type":42,"tag":71,"props":1167,"children":1169},{"className":1168},[],[1170],{"type":48,"value":1171},"search-records",{"type":48,"value":1173}," for free-text\u002Ffuzzy queries on large tables. Use ",{"type":42,"tag":71,"props":1175,"children":1177},{"className":1176},[],[1178],{"type":48,"value":1179},"list-records-for-table",{"type":48,"value":1181}," with ",{"type":42,"tag":71,"props":1183,"children":1185},{"className":1184},[],[1186],{"type":48,"value":1187},"--filters",{"type":48,"value":1189}," when filtering by exact field values:",{"type":42,"tag":63,"props":1191,"children":1193},{"className":65,"code":1192,"language":67,"meta":68,"style":68},"airtable-mcp search-records \\\n  --baseId appK9MtBqFw3o5jGN --table tblL4GpTfEz8byRsW \\\n  --query \"acme\" --fields '[\"Name\",\"Notes\"]' -q\n",[1194],{"type":42,"tag":71,"props":1195,"children":1196},{"__ignoreMap":68},[1197,1213,1237],{"type":42,"tag":75,"props":1198,"children":1199},{"class":77,"line":78},[1200,1204,1209],{"type":42,"tag":75,"props":1201,"children":1202},{"style":82},[1203],{"type":48,"value":45},{"type":42,"tag":75,"props":1205,"children":1206},{"style":87},[1207],{"type":48,"value":1208}," search-records",{"type":42,"tag":75,"props":1210,"children":1211},{"style":140},[1212],{"type":48,"value":966},{"type":42,"tag":75,"props":1214,"children":1215},{"class":77,"line":99},[1216,1220,1224,1229,1233],{"type":42,"tag":75,"props":1217,"children":1218},{"style":87},[1219],{"type":48,"value":974},{"type":42,"tag":75,"props":1221,"children":1222},{"style":87},[1223],{"type":48,"value":930},{"type":42,"tag":75,"props":1225,"children":1226},{"style":87},[1227],{"type":48,"value":1228}," --table",{"type":42,"tag":75,"props":1230,"children":1231},{"style":87},[1232],{"type":48,"value":988},{"type":42,"tag":75,"props":1234,"children":1235},{"style":140},[1236],{"type":48,"value":966},{"type":42,"tag":75,"props":1238,"children":1239},{"class":77,"line":121},[1240,1245,1249,1254,1258,1263,1267,1272,1276],{"type":42,"tag":75,"props":1241,"children":1242},{"style":87},[1243],{"type":48,"value":1244},"  --query",{"type":42,"tag":75,"props":1246,"children":1247},{"style":129},[1248],{"type":48,"value":893},{"type":42,"tag":75,"props":1250,"children":1251},{"style":87},[1252],{"type":48,"value":1253},"acme",{"type":42,"tag":75,"props":1255,"children":1256},{"style":129},[1257],{"type":48,"value":903},{"type":42,"tag":75,"props":1259,"children":1260},{"style":87},[1261],{"type":48,"value":1262}," --fields",{"type":42,"tag":75,"props":1264,"children":1265},{"style":129},[1266],{"type":48,"value":1005},{"type":42,"tag":75,"props":1268,"children":1269},{"style":87},[1270],{"type":48,"value":1271},"[\"Name\",\"Notes\"]",{"type":42,"tag":75,"props":1273,"children":1274},{"style":129},[1275],{"type":48,"value":1015},{"type":42,"tag":75,"props":1277,"children":1278},{"style":87},[1279],{"type":48,"value":908},{"type":42,"tag":57,"props":1281,"children":1282},{},[1283,1285,1291],{"type":48,"value":1284},"Pass ",{"type":42,"tag":71,"props":1286,"children":1288},{"className":1287},[],[1289],{"type":48,"value":1290},"--fields ALL_SEARCHABLE_FIELDS",{"type":48,"value":1292}," to search across every indexed field. Date, rating, checkbox, and button fields are not searchable.",{"type":42,"tag":57,"props":1294,"children":1295},{},[1296,1301,1303,1308],{"type":42,"tag":223,"props":1297,"children":1298},{},[1299],{"type":48,"value":1300},"Update records",{"type":48,"value":1302}," — complex args are easier via ",{"type":42,"tag":71,"props":1304,"children":1306},{"className":1305},[],[1307],{"type":48,"value":819},{"type":48,"value":1309},":",{"type":42,"tag":63,"props":1311,"children":1313},{"className":65,"code":1312,"language":67,"meta":68,"style":68},"echo '{\"baseId\":\"appK9MtBqFw3o5jGN\",\"tableId\":\"tblL4GpTfEz8byRsW\",\"records\":[{\"id\":\"recVnR3xPq8sD2yLk\",\"fields\":{\"fld8WsrpLHHevsnW8\":\"Done\"}}]}' \\\n  | airtable-mcp update-records-for-table --input - -q\n",[1314],{"type":42,"tag":71,"props":1315,"children":1316},{"__ignoreMap":68},[1317,1343],{"type":42,"tag":75,"props":1318,"children":1319},{"class":77,"line":78},[1320,1326,1330,1335,1339],{"type":42,"tag":75,"props":1321,"children":1323},{"style":1322},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1324],{"type":48,"value":1325},"echo",{"type":42,"tag":75,"props":1327,"children":1328},{"style":129},[1329],{"type":48,"value":1005},{"type":42,"tag":75,"props":1331,"children":1332},{"style":87},[1333],{"type":48,"value":1334},"{\"baseId\":\"appK9MtBqFw3o5jGN\",\"tableId\":\"tblL4GpTfEz8byRsW\",\"records\":[{\"id\":\"recVnR3xPq8sD2yLk\",\"fields\":{\"fld8WsrpLHHevsnW8\":\"Done\"}}]}",{"type":42,"tag":75,"props":1336,"children":1337},{"style":129},[1338],{"type":48,"value":1015},{"type":42,"tag":75,"props":1340,"children":1341},{"style":140},[1342],{"type":48,"value":966},{"type":42,"tag":75,"props":1344,"children":1345},{"class":77,"line":99},[1346,1351,1356,1361,1366,1371],{"type":42,"tag":75,"props":1347,"children":1348},{"style":129},[1349],{"type":48,"value":1350},"  |",{"type":42,"tag":75,"props":1352,"children":1353},{"style":82},[1354],{"type":48,"value":1355}," airtable-mcp",{"type":42,"tag":75,"props":1357,"children":1358},{"style":87},[1359],{"type":48,"value":1360}," update-records-for-table",{"type":42,"tag":75,"props":1362,"children":1363},{"style":87},[1364],{"type":48,"value":1365}," --input",{"type":42,"tag":75,"props":1367,"children":1368},{"style":87},[1369],{"type":48,"value":1370}," -",{"type":42,"tag":75,"props":1372,"children":1373},{"style":87},[1374],{"type":48,"value":908},{"type":42,"tag":57,"props":1376,"children":1377},{},[1378,1380,1386,1388,1394,1396,1402,1404,1409,1411,1417,1418,1424,1426,1432],{"type":48,"value":1379},"Select field values are returned as objects (",{"type":42,"tag":71,"props":1381,"children":1383},{"className":1382},[],[1384],{"type":48,"value":1385},"{\"id\":\"sel...\",\"name\":\"Done\"}",{"type":48,"value":1387},") but must be written as plain strings (",{"type":42,"tag":71,"props":1389,"children":1391},{"className":1390},[],[1392],{"type":48,"value":1393},"\"Done\"",{"type":48,"value":1395},"). Record field keys in create\u002Fupdate currently require field IDs (",{"type":42,"tag":71,"props":1397,"children":1399},{"className":1398},[],[1400],{"type":48,"value":1401},"fldXXX",{"type":48,"value":1403},") — use ",{"type":42,"tag":71,"props":1405,"children":1407},{"className":1406},[],[1408],{"type":48,"value":1145},{"type":48,"value":1410}," to resolve names to IDs before writing. Note that ",{"type":42,"tag":71,"props":1412,"children":1414},{"className":1413},[],[1415],{"type":48,"value":1416},"fieldIds",{"type":48,"value":701},{"type":42,"tag":71,"props":1419,"children":1421},{"className":1420},[],[1422],{"type":48,"value":1423},"sort",{"type":48,"value":1425},", and ",{"type":42,"tag":71,"props":1427,"children":1429},{"className":1428},[],[1430],{"type":48,"value":1431},"filters",{"type":48,"value":1433}," accept both names and IDs.",{"type":42,"tag":50,"props":1435,"children":1437},{"id":1436},"gotchas",[1438],{"type":48,"value":1439},"Gotchas",{"type":42,"tag":335,"props":1441,"children":1442},{},[1443,1464],{"type":42,"tag":339,"props":1444,"children":1445},{},[1446],{"type":42,"tag":343,"props":1447,"children":1448},{},[1449,1454,1459],{"type":42,"tag":347,"props":1450,"children":1451},{},[1452],{"type":48,"value":1453},"Problem",{"type":42,"tag":347,"props":1455,"children":1456},{},[1457],{"type":48,"value":1458},"Cause",{"type":42,"tag":347,"props":1460,"children":1461},{},[1462],{"type":48,"value":1463},"Fix",{"type":42,"tag":358,"props":1465,"children":1466},{},[1467,1496,1529,1556,1578,1618,1642,1688,1733,1765,1797,1834],{"type":42,"tag":343,"props":1468,"children":1469},{},[1470,1479,1484],{"type":42,"tag":365,"props":1471,"children":1472},{},[1473],{"type":42,"tag":71,"props":1474,"children":1476},{"className":1475},[],[1477],{"type":48,"value":1478},"Unknown tool: X",{"type":42,"tag":365,"props":1480,"children":1481},{},[1482],{"type":48,"value":1483},"Tool name doesn't exist on the server or cache is stale",{"type":42,"tag":365,"props":1485,"children":1486},{},[1487,1488,1494],{"type":48,"value":163},{"type":42,"tag":71,"props":1489,"children":1491},{"className":1490},[],[1492],{"type":48,"value":1493},"airtable-mcp tools --refresh",{"type":48,"value":1495}," to refresh, then retry",{"type":42,"tag":343,"props":1497,"children":1498},{},[1499,1508,1513],{"type":42,"tag":365,"props":1500,"children":1501},{},[1502],{"type":42,"tag":71,"props":1503,"children":1505},{"className":1504},[],[1506],{"type":48,"value":1507},"Authentication failed",{"type":42,"tag":365,"props":1509,"children":1510},{},[1511],{"type":48,"value":1512},"Token expired, revoked, or wrong",{"type":42,"tag":365,"props":1514,"children":1515},{},[1516,1517,1522,1524],{"type":48,"value":163},{"type":42,"tag":71,"props":1518,"children":1520},{"className":1519},[],[1521],{"type":48,"value":378},{"type":48,"value":1523}," or check ",{"type":42,"tag":71,"props":1525,"children":1527},{"className":1526},[],[1528],{"type":48,"value":317},{"type":42,"tag":343,"props":1530,"children":1531},{},[1532,1541,1546],{"type":42,"tag":365,"props":1533,"children":1534},{},[1535],{"type":42,"tag":71,"props":1536,"children":1538},{"className":1537},[],[1539],{"type":48,"value":1540},"Access denied",{"type":42,"tag":365,"props":1542,"children":1543},{},[1544],{"type":48,"value":1545},"Token missing required scopes",{"type":42,"tag":365,"props":1547,"children":1548},{},[1549,1551],{"type":48,"value":1550},"Add scopes at ",{"type":42,"tag":300,"props":1552,"children":1554},{"href":302,"rel":1553},[304],[1555],{"type":48,"value":302},{"type":42,"tag":343,"props":1557,"children":1558},{},[1559,1568,1573],{"type":42,"tag":365,"props":1560,"children":1561},{},[1562],{"type":42,"tag":71,"props":1563,"children":1565},{"className":1564},[],[1566],{"type":48,"value":1567},"Connection timed out",{"type":42,"tag":365,"props":1569,"children":1570},{},[1571],{"type":48,"value":1572},"Server unreachable (10s timeout)",{"type":42,"tag":365,"props":1574,"children":1575},{},[1576],{"type":48,"value":1577},"Check network; CLI falls back to stale cache if available",{"type":42,"tag":343,"props":1579,"children":1580},{},[1581,1586,1605],{"type":42,"tag":365,"props":1582,"children":1583},{},[1584],{"type":48,"value":1585},"Boolean flags take no value",{"type":42,"tag":365,"props":1587,"children":1588},{},[1589,1595,1597,1603],{"type":42,"tag":71,"props":1590,"children":1592},{"className":1591},[],[1593],{"type":48,"value":1594},"--dryRun true",{"type":48,"value":1596}," passes ",{"type":42,"tag":71,"props":1598,"children":1600},{"className":1599},[],[1601],{"type":48,"value":1602},"\"true\"",{"type":48,"value":1604}," as next arg",{"type":42,"tag":365,"props":1606,"children":1607},{},[1608,1610,1616],{"type":48,"value":1609},"Use ",{"type":42,"tag":71,"props":1611,"children":1613},{"className":1612},[],[1614],{"type":48,"value":1615},"--dryRun",{"type":48,"value":1617}," alone (booleans are presence-based)",{"type":42,"tag":343,"props":1619,"children":1620},{},[1621,1626,1631],{"type":42,"tag":365,"props":1622,"children":1623},{},[1624],{"type":48,"value":1625},"Array\u002Fobject args fail",{"type":42,"tag":365,"props":1627,"children":1628},{},[1629],{"type":48,"value":1630},"Value isn't valid JSON",{"type":42,"tag":365,"props":1632,"children":1633},{},[1634,1636],{"type":48,"value":1635},"Pass as JSON string: ",{"type":42,"tag":71,"props":1637,"children":1639},{"className":1638},[],[1640],{"type":48,"value":1641},"--fieldMappings '{\"a\":\"b\"}'",{"type":42,"tag":343,"props":1643,"children":1644},{},[1645,1650,1662],{"type":42,"tag":365,"props":1646,"children":1647},{},[1648],{"type":48,"value":1649},"Filter rejected at top level",{"type":42,"tag":365,"props":1651,"children":1652},{},[1653,1655,1660],{"type":48,"value":1654},"Single condition passed without ",{"type":42,"tag":71,"props":1656,"children":1658},{"className":1657},[],[1659],{"type":48,"value":1046},{"type":48,"value":1661}," wrapper",{"type":42,"tag":365,"props":1663,"children":1664},{},[1665,1667,1673,1675,1680,1681,1686],{"type":48,"value":1666},"Wrap in ",{"type":42,"tag":71,"props":1668,"children":1670},{"className":1669},[],[1671],{"type":48,"value":1672},"{\"operands\":[...]}",{"type":48,"value":1674}," (",{"type":42,"tag":71,"props":1676,"children":1678},{"className":1677},[],[1679],{"type":48,"value":1054},{"type":48,"value":1056},{"type":42,"tag":71,"props":1682,"children":1684},{"className":1683},[],[1685],{"type":48,"value":1062},{"type":48,"value":1687},")",{"type":42,"tag":343,"props":1689,"children":1690},{},[1691,1710,1721],{"type":42,"tag":365,"props":1692,"children":1693},{},[1694,1696,1702,1704],{"type":48,"value":1695},"Sort key is ",{"type":42,"tag":71,"props":1697,"children":1699},{"className":1698},[],[1700],{"type":48,"value":1701},"fieldId",{"type":48,"value":1703}," not ",{"type":42,"tag":71,"props":1705,"children":1707},{"className":1706},[],[1708],{"type":48,"value":1709},"field",{"type":42,"tag":365,"props":1711,"children":1712},{},[1713,1719],{"type":42,"tag":71,"props":1714,"children":1716},{"className":1715},[],[1717],{"type":48,"value":1718},"--sort '[{\"field\":\"Name\"}]'",{"type":48,"value":1720}," silently ignored",{"type":42,"tag":365,"props":1722,"children":1723},{},[1724,1725,1731],{"type":48,"value":1609},{"type":42,"tag":71,"props":1726,"children":1728},{"className":1727},[],[1729],{"type":48,"value":1730},"{\"fieldId\":\"Name\",\"direction\":\"asc\"}",{"type":48,"value":1732}," — accepts field IDs or names",{"type":42,"tag":343,"props":1734,"children":1735},{},[1736,1741,1746],{"type":42,"tag":365,"props":1737,"children":1738},{},[1739],{"type":48,"value":1740},"Select filter returns no matches",{"type":42,"tag":365,"props":1742,"children":1743},{},[1744],{"type":48,"value":1745},"Filtering by display name instead of choice ID",{"type":42,"tag":365,"props":1747,"children":1748},{},[1749,1750,1755,1757,1763],{"type":48,"value":163},{"type":42,"tag":71,"props":1751,"children":1753},{"className":1752},[],[1754],{"type":48,"value":1145},{"type":48,"value":1756}," first to get ",{"type":42,"tag":71,"props":1758,"children":1760},{"className":1759},[],[1761],{"type":48,"value":1762},"sel...",{"type":48,"value":1764}," choice IDs",{"type":42,"tag":343,"props":1766,"children":1767},{},[1768,1779,1784],{"type":42,"tag":365,"props":1769,"children":1770},{},[1771,1777],{"type":42,"tag":71,"props":1772,"children":1774},{"className":1773},[],[1775],{"type":48,"value":1776},"INVALID_RECORDS",{"type":48,"value":1778}," on batch write",{"type":42,"tag":365,"props":1780,"children":1781},{},[1782],{"type":48,"value":1783},"Batch limit is 10 records per request (default; varies by account)",{"type":42,"tag":365,"props":1785,"children":1786},{},[1787,1789,1795],{"type":48,"value":1788},"Split into chunks of ≤10 and check ",{"type":42,"tag":71,"props":1790,"children":1792},{"className":1791},[],[1793],{"type":48,"value":1794},"\u003Ctool> --help",{"type":48,"value":1796}," for the current limit",{"type":42,"tag":343,"props":1798,"children":1799},{},[1800,1810,1815],{"type":42,"tag":365,"props":1801,"children":1802},{},[1803,1805],{"type":48,"value":1804},"Permission error on ",{"type":42,"tag":71,"props":1806,"children":1808},{"className":1807},[],[1809],{"type":48,"value":1179},{"type":42,"tag":365,"props":1811,"children":1812},{},[1813],{"type":48,"value":1814},"User has interface-only access to the base",{"type":42,"tag":365,"props":1816,"children":1817},{},[1818,1819,1825,1826,1832],{"type":48,"value":1609},{"type":42,"tag":71,"props":1820,"children":1822},{"className":1821},[],[1823],{"type":48,"value":1824},"list-records-for-page",{"type":48,"value":791},{"type":42,"tag":71,"props":1827,"children":1829},{"className":1828},[],[1830],{"type":48,"value":1831},"get-record-for-page",{"type":48,"value":1833}," instead",{"type":42,"tag":343,"props":1835,"children":1836},{},[1837,1842,1853],{"type":42,"tag":365,"props":1838,"children":1839},{},[1840],{"type":48,"value":1841},"Endpoints restricted",{"type":42,"tag":365,"props":1843,"children":1844},{},[1845,1847],{"type":48,"value":1846},"CLI only allows HTTPS on ",{"type":42,"tag":71,"props":1848,"children":1850},{"className":1849},[],[1851],{"type":48,"value":1852},"*.airtable.com",{"type":42,"tag":365,"props":1854,"children":1855},{},[1856],{"type":48,"value":1857},"Cannot point at arbitrary servers (security constraint)",{"type":42,"tag":1859,"props":1860,"children":1861},"style",{},[1862],{"type":48,"value":1863},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1865,"total":1984},[1866,1884,1900,1912,1932,1954,1974],{"slug":1867,"name":1867,"fn":1868,"description":1869,"org":1870,"tags":1871,"stars":25,"repoUrl":26,"updatedAt":27},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1872,1875,1878,1881],{"name":1873,"slug":1874,"type":15},"Accessibility","accessibility",{"name":1876,"slug":1877,"type":15},"Charts","charts",{"name":1879,"slug":1880,"type":15},"Data Visualization","data-visualization",{"name":1882,"slug":1883,"type":15},"Design","design",{"slug":1885,"name":1885,"fn":1886,"description":1887,"org":1888,"tags":1889,"stars":25,"repoUrl":26,"updatedAt":1899},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1890,1893,1896],{"name":1891,"slug":1892,"type":15},"Agents","agents",{"name":1894,"slug":1895,"type":15},"Browser Automation","browser-automation",{"name":1897,"slug":1898,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1901,"name":1901,"fn":1902,"description":1903,"org":1904,"tags":1905,"stars":25,"repoUrl":26,"updatedAt":1911},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1906,1907,1910],{"name":1894,"slug":1895,"type":15},{"name":1908,"slug":1909,"type":15},"Local Development","local-development",{"name":1897,"slug":1898,"type":15},"2026-04-06T18:41:17.526867",{"slug":1913,"name":1913,"fn":1914,"description":1915,"org":1916,"tags":1917,"stars":25,"repoUrl":26,"updatedAt":1931},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1918,1919,1922,1925,1928],{"name":1891,"slug":1892,"type":15},{"name":1920,"slug":1921,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1923,"slug":1924,"type":15},"SDK","sdk",{"name":1926,"slug":1927,"type":15},"Serverless","serverless",{"name":1929,"slug":1930,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1933,"name":1933,"fn":1934,"description":1935,"org":1936,"tags":1937,"stars":25,"repoUrl":26,"updatedAt":1953},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1938,1941,1944,1947,1950],{"name":1939,"slug":1940,"type":15},"Frontend","frontend",{"name":1942,"slug":1943,"type":15},"React","react",{"name":1945,"slug":1946,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1948,"slug":1949,"type":15},"UI Components","ui-components",{"name":1951,"slug":1952,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1955,"name":1955,"fn":1956,"description":1957,"org":1958,"tags":1959,"stars":25,"repoUrl":26,"updatedAt":1973},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1960,1963,1966,1969,1972],{"name":1961,"slug":1962,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1964,"slug":1965,"type":15},"Cost Optimization","cost-optimization",{"name":1967,"slug":1968,"type":15},"LLM","llm",{"name":1970,"slug":1971,"type":15},"Performance","performance",{"name":1951,"slug":1952,"type":15},"2026-04-06T18:40:44.377464",{"slug":1975,"name":1975,"fn":1976,"description":1977,"org":1978,"tags":1979,"stars":25,"repoUrl":26,"updatedAt":1983},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1980,1981,1982],{"name":1964,"slug":1965,"type":15},{"name":23,"slug":24,"type":15},{"name":1967,"slug":1968,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1986,"total":2181},[1987,2008,2031,2048,2062,2079,2098,2110,2124,2138,2150,2165],{"slug":1988,"name":1988,"fn":1989,"description":1990,"org":1991,"tags":1992,"stars":2005,"repoUrl":2006,"updatedAt":2007},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1993,1996,1999,2002],{"name":1994,"slug":1995,"type":15},"Documents","documents",{"name":1997,"slug":1998,"type":15},"Healthcare","healthcare",{"name":2000,"slug":2001,"type":15},"Insurance","insurance",{"name":2003,"slug":2004,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2009,"name":2009,"fn":2010,"description":2011,"org":2012,"tags":2013,"stars":2028,"repoUrl":2029,"updatedAt":2030},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2014,2017,2019,2022,2025],{"name":2015,"slug":2016,"type":15},".NET","dotnet",{"name":2018,"slug":2009,"type":15},"ASP.NET Core",{"name":2020,"slug":2021,"type":15},"Blazor","blazor",{"name":2023,"slug":2024,"type":15},"C#","csharp",{"name":2026,"slug":2027,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2032,"name":2032,"fn":2033,"description":2034,"org":2035,"tags":2036,"stars":2028,"repoUrl":2029,"updatedAt":2047},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2037,2040,2043,2046],{"name":2038,"slug":2039,"type":15},"Apps SDK","apps-sdk",{"name":2041,"slug":2042,"type":15},"ChatGPT","chatgpt",{"name":2044,"slug":2045,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2049,"name":2049,"fn":2050,"description":2051,"org":2052,"tags":2053,"stars":2028,"repoUrl":2029,"updatedAt":2061},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2054,2057,2058],{"name":2055,"slug":2056,"type":15},"API Development","api-development",{"name":20,"slug":21,"type":15},{"name":2059,"slug":2060,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2063,"name":2063,"fn":2064,"description":2065,"org":2066,"tags":2067,"stars":2028,"repoUrl":2029,"updatedAt":2078},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2068,2071,2074,2075],{"name":2069,"slug":2070,"type":15},"Cloudflare","cloudflare",{"name":2072,"slug":2073,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1920,"slug":1921,"type":15},{"name":2076,"slug":2077,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2080,"name":2080,"fn":2081,"description":2082,"org":2083,"tags":2084,"stars":2028,"repoUrl":2029,"updatedAt":2097},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2085,2088,2091,2094],{"name":2086,"slug":2087,"type":15},"Productivity","productivity",{"name":2089,"slug":2090,"type":15},"Project Management","project-management",{"name":2092,"slug":2093,"type":15},"Strategy","strategy",{"name":2095,"slug":2096,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2099,"name":2099,"fn":2100,"description":2101,"org":2102,"tags":2103,"stars":2028,"repoUrl":2029,"updatedAt":2109},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2104,2105,2107,2108],{"name":1882,"slug":1883,"type":15},{"name":2106,"slug":2099,"type":15},"Figma",{"name":1939,"slug":1940,"type":15},{"name":2044,"slug":2045,"type":15},"2026-04-12T05:06:47.939943",{"slug":2111,"name":2111,"fn":2112,"description":2113,"org":2114,"tags":2115,"stars":2028,"repoUrl":2029,"updatedAt":2123},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2116,2117,2120,2121,2122],{"name":1882,"slug":1883,"type":15},{"name":2118,"slug":2119,"type":15},"Design System","design-system",{"name":2106,"slug":2099,"type":15},{"name":1939,"slug":1940,"type":15},{"name":1948,"slug":1949,"type":15},"2026-05-10T05:59:52.971881",{"slug":2125,"name":2125,"fn":2126,"description":2127,"org":2128,"tags":2129,"stars":2028,"repoUrl":2029,"updatedAt":2137},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2130,2131,2132,2135,2136],{"name":1882,"slug":1883,"type":15},{"name":2118,"slug":2119,"type":15},{"name":2133,"slug":2134,"type":15},"Documentation","documentation",{"name":2106,"slug":2099,"type":15},{"name":1939,"slug":1940,"type":15},"2026-05-16T06:07:47.821474",{"slug":2139,"name":2139,"fn":2140,"description":2141,"org":2142,"tags":2143,"stars":2028,"repoUrl":2029,"updatedAt":2149},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2144,2145,2146,2147,2148],{"name":1882,"slug":1883,"type":15},{"name":2106,"slug":2099,"type":15},{"name":1939,"slug":1940,"type":15},{"name":1948,"slug":1949,"type":15},{"name":2026,"slug":2027,"type":15},"2026-05-16T06:07:40.583615",{"slug":2151,"name":2151,"fn":2152,"description":2153,"org":2154,"tags":2155,"stars":2028,"repoUrl":2029,"updatedAt":2164},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2156,2159,2160,2163],{"name":2157,"slug":2158,"type":15},"Animation","animation",{"name":2059,"slug":2060,"type":15},{"name":2161,"slug":2162,"type":15},"Creative","creative",{"name":1882,"slug":1883,"type":15},"2026-05-02T05:31:48.48485",{"slug":2166,"name":2166,"fn":2167,"description":2168,"org":2169,"tags":2170,"stars":2028,"repoUrl":2029,"updatedAt":2180},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2171,2172,2173,2176,2179],{"name":2161,"slug":2162,"type":15},{"name":1882,"slug":1883,"type":15},{"name":2174,"slug":2175,"type":15},"Image Generation","image-generation",{"name":2177,"slug":2178,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]