smithery/shockz09

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).

Installation

$ npx skills add smithery/shockz09 --skill uni-airtable

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/shockz09.

npx skills add smithery/shockz09

Browse all from smithery/shockz09

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash(uni:*), Bash(~/.local/bin/uni:*)

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,852 B
  • docs SUMMARY.md 213 B

History

  1. First recorded snapshot · 0 installs

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 with tbl, record IDs with rec
  • Can use table name instead of ID
  • Filter uses Airtable formula syntax: {Field}='Value'
  • JSON data for create/update uses field names as keys