Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/diillson/chatcli/airtablenpx skills add diillson/chatcli --skill airtablegit clone --depth 1 https://github.com/diillson/chatcliWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/diillson/chatcli/airtable)<a href="https://agentmods.dev/skills/diillson/chatcli/airtable"><img src="https://agentmods.dev/badge/skills/diillson/chatcli/airtable.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00057 | $0.00549 |
| Opus 5 | $0.00028 | $0.00275 |
| Sonnet 5 | $0.00011 | $0.00110 |
| Haiku 4.5 | $0.00006 | $0.00055 |
Grade A, and why
airtable scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s "https://api.airtable.com/v0/$BASE_ID/Tasks?maxRecords=20" \ What it actually says
Airtable
Drive Airtable through its REST API with the user's personal access token — opt-in.
Setup
Set AIRTABLE_TOKEN (a personal access token with data.records:read/write scopes on the base).
You also need the base id (appXXXX, from the API docs of the base) and table name.
All calls send Authorization: Bearer $AIRTABLE_TOKEN.
List / filter records
curl -s "https://api.airtable.com/v0/$BASE_ID/Tasks?maxRecords=20" \
-H "Authorization: Bearer $AIRTABLE_TOKEN"
# with a formula filter:
curl -s -G "https://api.airtable.com/v0/$BASE_ID/Tasks" \
-H "Authorization: Bearer $AIRTABLE_TOKEN" \
--data-urlencode 'filterByFormula={Status}="Open"'
Create a record
curl -s -X POST "https://api.airtable.com/v0/$BASE_ID/Tasks" \
-H "Authorization: Bearer $AIRTABLE_TOKEN" -H "Content-Type: application/json" \
-d '{"fields":{"Name":"Ship release","Status":"Open"}}'
Update / delete
curl -s -X PATCH "https://api.airtable.com/v0/$BASE_ID/Tasks/$REC_ID" \
-H "Authorization: Bearer $AIRTABLE_TOKEN" -H "Content-Type: application/json" \
-d '{"fields":{"Status":"Done"}}'
curl -s -X DELETE "https://api.airtable.com/v0/$BASE_ID/Tasks/$REC_ID" \
-H "Authorization: Bearer $AIRTABLE_TOKEN"
Rules
- If
AIRTABLE_TOKEN/base id are unset, explain how to get them and stop. - Field names are case-sensitive and must match the table exactly — list a record first to learn them.
- Echo the record id after create/update; confirm before delete.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 59 lines · 57 tokens per session scan A 952af32ae67d
airtable is a skill published in the GitHub repository diillson/chatcli (90 stars, last pushed today), licensed Apache-2.0. It adds 57 tokens to every session and 549 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
review-prs
Review a GitHub pull request in the googleapis/mcp-toolbox repo against the team's reviewer checklist: PR title/description conventions, linked issue, logic errors and unhandled edge cases, breaking changes, test coverage, docs updates, security (input handling), and new dependencies. Use whenever a maintainer asks…
stale-sweep
Sweep the googleapis/mcp-toolbox repo for issues and PRs with no real activity in N days (default 60), sort each by whose silence it is (the author's, ours, or nobody's), and draft the nudge or close comment. Use whenever a maintainer asks for a stale sweep, backlog cleanup, or an SLO check, e.g. "stale sweep", "find…
triage-issues
Triage GitHub issues in the googleapis/mcp-toolbox repo: propose the correct labels (type / priority / product / status), check for duplicates, verify a bug has enough info to act on, and draft a triage comment. Use whenever a maintainer asks you to triage, label, categorize, prioritize, or "look at" an issue (or a…
ai-style
当任务是用中文撰写或改写面向读者的文案(产品发布稿、公众号文章、邮件、README 等), 或用户反馈文字「AI 味太重」「不像人写的」时,加载本 Skill。.
bloodhound-query
BloodHound ingestion + canonical Cypher queries for AD attack-path enumeration. Run after collector dumps zip; promotes findings into the knowledge graph.
x-osv
CLI for Google OSV database. Query vulnerabilities for packages, scan local projects for vulnerable dependencies. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill). Required Tool: Install osv-scanner for project scanning (see https://github.com/google/osv-scanner).