Agent skill
uni-airtable
Airtable bases, tables, and records via uni CLI. Use when user wants to query Airtable data, create/update records, or list bases and tables. Requires AIRTABLE_API_KEY (Personal Access Token).
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/uni-airtable
SKILL.md
Airtable (uni)
Manage Airtable bases, tables, and records from the terminal.
Authentication
uni airtable auth patXXX.XXXXX # Set API key
uni airtable auth patXXX.XXXXX -b appXXXXX # With default base
uni airtable auth --status # Check configuration
uni airtable auth --logout # Remove credentials
# Or use environment variable
export AIRTABLE_API_KEY="patXXX.XXXXX"
Get your Personal Access Token from: https://airtable.com/create/tokens
Bases
uni airtable bases # List all accessible bases
Tables
uni airtable tables appXXXXX # List tables in base
uni airtable tables appXXXXX --fields # Show field definitions
Records
# List records
uni airtable records Tasks -b appXXXXX
uni airtable records tblXXX -b appXXXXX -n 50 # Limit results
uni airtable records tblXXX -b appXXXXX -f "{Status}='Done'" # Filter
# Get single record
uni airtable records tblXXX get recXXX -b appXXXXX
# Create record
uni airtable records tblXXX create -b appXXXXX -d '{"Name":"New Task","Status":"To Do"}'
# Update record
uni airtable records tblXXX update recXXX -b appXXXXX -d '{"Status":"Done"}'
# Delete record
uni airtable records tblXXX delete recXXX -b appXXXXX
Notes
- Base IDs start with
app, table IDs withtbl, record IDs withrec - Can use table name instead of ID
- Filter uses Airtable formula syntax:
{Field}='Value' - JSON data for create/update uses field names as keys
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?