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).
71
87%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Risky
Do not use without reviewing
Manage Airtable bases, tables, and records from the terminal.
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
uni airtable bases # List all accessible basesuni airtable tables appXXXXX # List tables in base
uni airtable tables appXXXXX --fields # Show field definitions# 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 appXXXXXapp, table IDs with tbl, record IDs with rec{Field}='Value'f1dfc90
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.