airtable-filters

airtable-filters is a skill for Codex from cass-2003/local-workflow-skill. It costs 36 tokens per session (1,364 once invoked), scanned A, a copy of airtable-filters, MIT.

A method for finding Airtable records by matching values in their fields. Airtable is a structured data platform, so filtering means narrowing a table or view to records that meet specified conditions.

In plain words
What is it for?
Use it to search, filter, sort, or narrow Airtable records by text, numbers, dates, selections, checkboxes, links, and other field types.
Why use it?
It removes the need to retrieve and inspect every record manually. It also explains how multiple conditions can be combined to narrow results further.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to search, filter, sort, or narrow Airtable records by text, numbers, dates, selections, checkboxes, links, and other field types.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cass-2003/local-workflow-skill/airtable-filters
Install

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.

Any agent
npx skills add cass-2003/local-workflow-skill --skill airtable-filters
Clone the repo
git clone --depth 1 https://github.com/cass-2003/local-workflow-skill

Made for: Codex.

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

agentmods badge for airtable-filters

README.md
[![agentmods](https://agentmods.dev/badge/skills/cass-2003/local-workflow-skill/airtable-filters/github.svg)](https://agentmods.dev/skills/cass-2003/local-workflow-skill/airtable-filters)
Your own site
<a href="https://agentmods.dev/skills/cass-2003/local-workflow-skill/airtable-filters"><img src="https://agentmods.dev/badge/skills/cass-2003/local-workflow-skill/airtable-filters/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for airtable-filters

Your own site · 80×15
<a href="https://agentmods.dev/skills/cass-2003/local-workflow-skill/airtable-filters"><img src="https://agentmods.dev/badge/skills/cass-2003/local-workflow-skill/airtable-filters.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,364 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 95% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.01364
Opus 5 $0.00018 $0.00682
Sonnet 5 $0.00007 $0.00273
Haiku 4.5 $0.00004 $0.00136

Measured 7d ago against content hash 1d209006c860, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

airtable-filters scanned grade A with 0 findings 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 7d ago.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

95% identical to airtable-filters — 16 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/data-analysis/codex/airtable-filters/SKILL.md · 116 lines

How it starts

The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Airtable MCP Filters

MCP tools that list or display records from tables or interface pages accept an optional filters parameter, using the same schema.

When querying records from an interface page, these filters are combined with the page's built-in filters using AND.

Schema shape

When no top-level operator is specified, conditions are combined with AND. The first element in a condition's operands array is always a field ID — look up the table's schema to find field IDs before filtering.

Field type categories

  • Text-like: singleLineText, multilineText, email, url, phoneNumber, richText, barcode
  • Numeric: number, percent, currency, rating, duration, autoNumber, count
  • Date: date, dateTime, createdTime, lastModifiedTime
  • Single select: singleSelect
  • Multiple selects: multipleSelects
  • Single collaborator: singleCollaborator
  • Multiple collaborators: multipleCollaborators
  • Linked records: multipleRecordLinks
  • Attachment: multipleAttachments
  • Checkbox: checkbox

Computed fields (formula, rollup, lookup) support whichever operators match their result type.

Comparison operators

Operator Second operand Field categories
= string, number, boolean, choice ID text-like, numeric, date, checkbox, single select, multiple selects, single collaborator, multiple collaborators, linked records
!= string, number, choice ID text-like, numeric, date, single select, single collaborator
<, >, <=, >= number or date value object numeric, date
contains string text-like, linked records
doesNotContain string text-like, linked records
doesNotContain array of IDs multiple selects, multiple collaborators
isEmpty, isNotEmpty (none) text-like, numeric, date, single select, multiple selects, single collaborator, multiple collaborators, linked records, attachment
hasAnyOf, hasAllOf array of IDs multiple selects, multiple collaborators, linked records
isAnyOf array of IDs single select, single collaborator
isNoneOf array of IDs single select, single collaborator, linked records
isWithin date range object date
filename, fileType string or "image"/"text" attachment

Read the full file on GitHub · 116 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 7d ago First seen · 116 lines · 36 tokens per session scan A 1d209006c860

Subscribe to this mod's changes

airtable-filters is a skill published in the GitHub repository cass-2003/local-workflow-skill (12 stars, last pushed 2mo ago), licensed MIT. It adds 36 tokens to every session and 1,364 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to airtable-filters, differing in 16 lines, and is treated as a copy.

Related

Other skills, from other repositories

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…

googleapis/mcp-toolbox · 159 tokens

record-gotchas

Capture surprises, workarounds, and rough edges hit while consuming the public surface of Prisma Next, Prisma Compute, or Prisma Postgres — anything a real user of these products would experience. Fires whenever an operator (or agent) writes a workaround, hits a surprising failure mode, or finds undocumented behaviour…

prisma/orm · 219 tokens

gh-issue

Size-audit, write, and split BanyanDB issues that somebody else or an automated TDD workflow can implement. Use whenever the user asks to file or revise an issue, decide whether an issue is too large, make an issue TDD-ready, turn a design into tickets, or split an umbrella into executable leaves. Do not draft or file…

apache/skywalking-banyandb · 91 tokens

dingtalk-ai-table

Read and manage DingTalk AI table records through the DingTalk AI Table MCP. Use this skill when the user explicitly refers to a DingTalk AI table, fields, or records.

wecode-ai/Wegent · 36 tokens

product-feature-tech-implement

A skill for delivering a product feature from a design document and existing source code through development, code review, and testing. It also creates a user guide and implementation summary.

digoal/blog · 471 tokens

write-prd

A product requirements document (PRD) writing skill that turns a product idea into a structured Markdown document with diagrams. A PRD describes what a product should do and the requirements needed to build it.

digoal/blog · 237 tokens