ワンクリックで
airtable
Manage Airtable bases, tables, and records. Use for listing bases, reading/creating/updating/deleting records, and searching.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Manage Airtable bases, tables, and records. Use for listing bases, reading/creating/updating/deleting records, and searching.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Guides agents through isolated Git worktree setup, lifecycle commands, process cleanup, and per-worktree local development state. Use when creating, starting, stopping, inspecting, cleaning up, or troubleshooting Git worktree development environments or when a repository includes a worktree lifecycle CLI.
Continuously watch and fix release main CI until the branch is fully green and verified working. Use when asked to babysit CI, babysit CI release, monitor release main, run /loop for CI, run /goal until checks pass, or keep iterating until release main is green.
Fix flaky tests by repeatedly running the suite, collecting intermittent failures, and proving stability. Use when asked to fix flaky tests or require repeated/consecutive green test runs.
Manage LinkedIn messaging, profiles, posts, connections, and company pages via Unipile. Use for networking, content publishing, and lead engagement.
Scoped commit workflow with a bundled committer script that prevents accidental broad staging. Use when the user asks to commit, commit all, create a git commit, or handle commit-time staging in this repository.
Systematically QA a web application like a real user, triage issues by severity, fix scoped bugs when asked, verify fixes with evidence, and report ship readiness. Use when asked to QA, test a site or app, find bugs, test and fix, or check whether a feature works.
| name | airtable |
| description | Manage Airtable bases, tables, and records. Use for listing bases, reading/creating/updating/deleting records, and searching. |
CRUD operations on Airtable bases and records via the Airtable REST API.
AIRTABLE_ACCESS_TOKEN - Airtable personal access token# List all bases
airtable bases
# Get base schema (tables and fields)
airtable schema -b <baseId>
# List records
airtable list -b <baseId> -t <tableIdOrName> [-l limit] [-v view] [-f formula]
# Get a single record
airtable get -b <baseId> -t <table> -r <recordId>
# Create a record
airtable create -b <baseId> -t <table> --fields '{"Name":"John","Email":"john@example.com"}'
# Update a record
airtable update -b <baseId> -t <table> -r <recordId> --fields '{"Name":"Jane"}'
# Delete a record
airtable delete -b <baseId> -t <table> -r <recordId>
# Search records by field value
airtable search -b <baseId> -t <table> -s <value> --search-field <fieldName>
JSON arrays/objects. Example for list:
[
{ "id": "recABC123", "Name": "John", "Email": "john@example.com" }
]