[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-airtable-filters":3,"mdc--xx8fye-key":33,"related-repo-openai-airtable-filters":1407,"related-org-openai-airtable-filters":1530},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"airtable-filters","filter and search Airtable records","Use this skill when the user wants to find, filter, or narrow down Airtable records by field values, even when they don't explicitly say \"filter.\"",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19],{"name":13,"slug":14,"type":15},"Airtable","airtable","tag",{"name":17,"slug":18,"type":15},"Data Analysis","data-analysis",{"name":20,"slug":21,"type":15},"Search","search",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102","MIT",465,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fairtable\u002Fskills\u002Fairtable-filters","---\nname: airtable-filters\ndescription: Use this skill when the user wants to find, filter, or narrow down Airtable records by field values, even when they don't explicitly say \"filter.\"\nlicense: MIT\nmetadata:\n  version: '1.0.0'\n  author: airtable\n---\n\n# Airtable MCP Filters\n\nMCP tools that list or display records from tables or interface pages accept an optional `filters` parameter, using the same schema.\n\nWhen querying records from an interface page, these filters are combined with the page's built-in filters using AND.\n\n## Schema shape\n\nWhen 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.\n\n## Field type categories\n\n-   **Text-like**: singleLineText, multilineText, email, url, phoneNumber, richText, barcode\n-   **Numeric**: number, percent, currency, rating, duration, autoNumber, count\n-   **Date**: date, dateTime, createdTime, lastModifiedTime\n-   **Single select**: singleSelect\n-   **Multiple selects**: multipleSelects\n-   **Single collaborator**: singleCollaborator\n-   **Multiple collaborators**: multipleCollaborators\n-   **Linked records**: multipleRecordLinks\n-   **Attachment**: multipleAttachments\n-   **Checkbox**: checkbox\n\nComputed fields (formula, rollup, lookup) support whichever operators match their result type.\n\n## Comparison operators\n\n| Operator                | Second operand                     | Field categories                                                                                                                   |\n| ----------------------- | ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |\n| `=`                     | string, number, boolean, choice ID | text-like, numeric, date, checkbox, single select, multiple selects, single collaborator, multiple collaborators, linked records   |\n| `!=`                    | string, number, choice ID          | text-like, numeric, date, single select, single collaborator                                                                       |\n| `\u003C`, `>`, `\u003C=`, `>=`    | number or date value object        | numeric, date                                                                                                                      |\n| `contains`              | string                             | text-like, linked records                                                                                                          |\n| `doesNotContain`        | string                             | text-like, linked records                                                                                                          |\n| `doesNotContain`        | array of IDs                       | multiple selects, multiple collaborators                                                                                           |\n| `isEmpty`, `isNotEmpty` | _(none)_                           | text-like, numeric, date, single select, multiple selects, single collaborator, multiple collaborators, linked records, attachment |\n| `hasAnyOf`, `hasAllOf`  | array of IDs                       | multiple selects, multiple collaborators, linked records                                                                           |\n| `isAnyOf`               | array of IDs                       | single select, single collaborator                                                                                                 |\n| `isNoneOf`              | array of IDs                       | single select, single collaborator, linked records                                                                                 |\n| `isWithin`              | date range object                  | date                                                                                                                               |\n| `filename`, `fileType`  | string or `\"image\"`\u002F`\"text\"`       | attachment                                                                                                                         |\n\nWhen matching a field against multiple values, prefer dedicated operators (`isAnyOf`, `isNoneOf`, `hasAnyOf`, `hasAllOf`) over combining multiple `=` conditions with `or`\u002F`and`, when those operators are available for the field type.\n\n## Field-type rules\n\n### Select fields\n\nFor select fields, operand values must be **choice IDs** (e.g., `\"selABCDEFGHIJKLM\"`), not display names. Look up the table's schema to find choice IDs before filtering.\n\n### Collaborator fields\n\nWhen filtering by a collaborator group ID, use `operatorOptions` to match individual members of the group instead of the literal group ID. See the tool's `operatorOptions` parameter for details.\n\nExample operand: `{\"operator\": \"hasAnyOf\", \"operands\": [\"fldCRi9oz2vRLcIWr\", \"ugpDUVUnftA7H9bG8\"], \"operatorOptions\": {\"matchGroupsByMembership\": true}}`\n\n### Attachment fields\n\nUse `fileType` to filter attachments by type (e.g., `\"image\"`, `\"text\"`) rather than `isNotEmpty` when the user specifies a file type.\n\n### Date fields\n\nDate comparisons (`=`, `!=`, `\u003C`, `>`, `\u003C=`, `>=`) use a date value object instead of a raw date string, and `isWithin` uses a date range object. The tool schema defines the available modes for each. Always include `timeZone`.\n\n## Composing conditions\n\nA filter's top-level operands array can contain two or more conditions, which are combined with the top-level operator (AND by default). For simple multi-condition filters, this flat structure is sufficient.\n\nWhen the logic requires mixing AND and OR, nest a filter object as one of the operands. Each nested filter has its own operator and operands.\n\n**OR inside AND** — useful when one condition is fixed and another allows multiple alternatives:\n\n> \"Scripted videos that are either in Writing or Pre-Production\"\n> → Bucket = Scripted AND (Status = Writing OR Status = Pre-Production)\n\n**AND inside OR** — useful when you want records matching either a simple condition or a combination:\n\n> \"Approved videos, or videos assigned to Bailey that are in Cut 2\"\n> → Status = Approved OR (Editor = Bailey AND Status = Cut 2 Ready)\n\nWhen combining many conditions on different fields, prefer a flat AND rather than unnecessary nesting. Only nest when the logic genuinely requires mixed AND\u002FOR at different levels.\n\nPrefer composing all conditions into a single `filters` object rather than splitting them across multiple calls. A single call with a composed filter is more efficient and returns the correct result set directly.\n\n## Examples\n\nFilter where a text field equals \"orange\" OR a number field is greater than 5:\n\n```json\n{\n    \"operator\": \"or\",\n    \"operands\": [\n        {\"operator\": \"=\", \"operands\": [\"fld8WsrpLHHevsnW8\", \"orange\"]},\n        {\"operator\": \">\", \"operands\": [\"fldulcCPDVz87Bmnw\", 5]}\n    ]\n}\n```\n\nFilter for records where a date field is within the past week:\n\n```json\n{\n    \"operands\": [\n        {\n            \"operator\": \"isWithin\",\n            \"operands\": [\"fldABC12345678x\", {\"mode\": \"pastWeek\", \"timeZone\": \"America\u002FNew_York\"}]\n        }\n    ]\n}\n```\n",{"data":34,"body":37},{"name":4,"description":6,"license":25,"metadata":35},{"version":36,"author":14},"1.0.0",{"type":38,"children":39},"root",[40,49,64,69,76,105,111,216,221,227,579,631,637,644,664,670,690,701,707,739,745,802,808,813,818,828,837,847,855,860,872,878,883,1179,1184,1401],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"airtable-mcp-filters",[46],{"type":47,"value":48},"text","Airtable MCP Filters",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53,55,62],{"type":47,"value":54},"MCP tools that list or display records from tables or interface pages accept an optional ",{"type":41,"tag":56,"props":57,"children":59},"code",{"className":58},[],[60],{"type":47,"value":61},"filters",{"type":47,"value":63}," parameter, using the same schema.",{"type":41,"tag":50,"props":65,"children":66},{},[67],{"type":47,"value":68},"When querying records from an interface page, these filters are combined with the page's built-in filters using AND.",{"type":41,"tag":70,"props":71,"children":73},"h2",{"id":72},"schema-shape",[74],{"type":47,"value":75},"Schema shape",{"type":41,"tag":50,"props":77,"children":78},{},[79,81,87,89,95,97,103],{"type":47,"value":80},"When no top-level ",{"type":41,"tag":56,"props":82,"children":84},{"className":83},[],[85],{"type":47,"value":86},"operator",{"type":47,"value":88}," is specified, conditions are combined with AND. The first element in a condition's ",{"type":41,"tag":56,"props":90,"children":92},{"className":91},[],[93],{"type":47,"value":94},"operands",{"type":47,"value":96}," array is always a ",{"type":41,"tag":98,"props":99,"children":100},"strong",{},[101],{"type":47,"value":102},"field ID",{"type":47,"value":104}," — look up the table's schema to find field IDs before filtering.",{"type":41,"tag":70,"props":106,"children":108},{"id":107},"field-type-categories",[109],{"type":47,"value":110},"Field type categories",{"type":41,"tag":112,"props":113,"children":114},"ul",{},[115,126,136,146,156,166,176,186,196,206],{"type":41,"tag":116,"props":117,"children":118},"li",{},[119,124],{"type":41,"tag":98,"props":120,"children":121},{},[122],{"type":47,"value":123},"Text-like",{"type":47,"value":125},": singleLineText, multilineText, email, url, phoneNumber, richText, barcode",{"type":41,"tag":116,"props":127,"children":128},{},[129,134],{"type":41,"tag":98,"props":130,"children":131},{},[132],{"type":47,"value":133},"Numeric",{"type":47,"value":135},": number, percent, currency, rating, duration, autoNumber, count",{"type":41,"tag":116,"props":137,"children":138},{},[139,144],{"type":41,"tag":98,"props":140,"children":141},{},[142],{"type":47,"value":143},"Date",{"type":47,"value":145},": date, dateTime, createdTime, lastModifiedTime",{"type":41,"tag":116,"props":147,"children":148},{},[149,154],{"type":41,"tag":98,"props":150,"children":151},{},[152],{"type":47,"value":153},"Single select",{"type":47,"value":155},": singleSelect",{"type":41,"tag":116,"props":157,"children":158},{},[159,164],{"type":41,"tag":98,"props":160,"children":161},{},[162],{"type":47,"value":163},"Multiple selects",{"type":47,"value":165},": multipleSelects",{"type":41,"tag":116,"props":167,"children":168},{},[169,174],{"type":41,"tag":98,"props":170,"children":171},{},[172],{"type":47,"value":173},"Single collaborator",{"type":47,"value":175},": singleCollaborator",{"type":41,"tag":116,"props":177,"children":178},{},[179,184],{"type":41,"tag":98,"props":180,"children":181},{},[182],{"type":47,"value":183},"Multiple collaborators",{"type":47,"value":185},": multipleCollaborators",{"type":41,"tag":116,"props":187,"children":188},{},[189,194],{"type":41,"tag":98,"props":190,"children":191},{},[192],{"type":47,"value":193},"Linked records",{"type":47,"value":195},": multipleRecordLinks",{"type":41,"tag":116,"props":197,"children":198},{},[199,204],{"type":41,"tag":98,"props":200,"children":201},{},[202],{"type":47,"value":203},"Attachment",{"type":47,"value":205},": multipleAttachments",{"type":41,"tag":116,"props":207,"children":208},{},[209,214],{"type":41,"tag":98,"props":210,"children":211},{},[212],{"type":47,"value":213},"Checkbox",{"type":47,"value":215},": checkbox",{"type":41,"tag":50,"props":217,"children":218},{},[219],{"type":47,"value":220},"Computed fields (formula, rollup, lookup) support whichever operators match their result type.",{"type":41,"tag":70,"props":222,"children":224},{"id":223},"comparison-operators",[225],{"type":47,"value":226},"Comparison operators",{"type":41,"tag":228,"props":229,"children":230},"table",{},[231,255],{"type":41,"tag":232,"props":233,"children":234},"thead",{},[235],{"type":41,"tag":236,"props":237,"children":238},"tr",{},[239,245,250],{"type":41,"tag":240,"props":241,"children":242},"th",{},[243],{"type":47,"value":244},"Operator",{"type":41,"tag":240,"props":246,"children":247},{},[248],{"type":47,"value":249},"Second operand",{"type":41,"tag":240,"props":251,"children":252},{},[253],{"type":47,"value":254},"Field categories",{"type":41,"tag":256,"props":257,"children":258},"tbody",{},[259,282,304,348,370,390,411,444,472,493,514,536],{"type":41,"tag":236,"props":260,"children":261},{},[262,272,277],{"type":41,"tag":263,"props":264,"children":265},"td",{},[266],{"type":41,"tag":56,"props":267,"children":269},{"className":268},[],[270],{"type":47,"value":271},"=",{"type":41,"tag":263,"props":273,"children":274},{},[275],{"type":47,"value":276},"string, number, boolean, choice ID",{"type":41,"tag":263,"props":278,"children":279},{},[280],{"type":47,"value":281},"text-like, numeric, date, checkbox, single select, multiple selects, single collaborator, multiple collaborators, linked records",{"type":41,"tag":236,"props":283,"children":284},{},[285,294,299],{"type":41,"tag":263,"props":286,"children":287},{},[288],{"type":41,"tag":56,"props":289,"children":291},{"className":290},[],[292],{"type":47,"value":293},"!=",{"type":41,"tag":263,"props":295,"children":296},{},[297],{"type":47,"value":298},"string, number, choice ID",{"type":41,"tag":263,"props":300,"children":301},{},[302],{"type":47,"value":303},"text-like, numeric, date, single select, single collaborator",{"type":41,"tag":236,"props":305,"children":306},{},[307,338,343],{"type":41,"tag":263,"props":308,"children":309},{},[310,316,318,324,325,331,332],{"type":41,"tag":56,"props":311,"children":313},{"className":312},[],[314],{"type":47,"value":315},"\u003C",{"type":47,"value":317},", ",{"type":41,"tag":56,"props":319,"children":321},{"className":320},[],[322],{"type":47,"value":323},">",{"type":47,"value":317},{"type":41,"tag":56,"props":326,"children":328},{"className":327},[],[329],{"type":47,"value":330},"\u003C=",{"type":47,"value":317},{"type":41,"tag":56,"props":333,"children":335},{"className":334},[],[336],{"type":47,"value":337},">=",{"type":41,"tag":263,"props":339,"children":340},{},[341],{"type":47,"value":342},"number or date value object",{"type":41,"tag":263,"props":344,"children":345},{},[346],{"type":47,"value":347},"numeric, date",{"type":41,"tag":236,"props":349,"children":350},{},[351,360,365],{"type":41,"tag":263,"props":352,"children":353},{},[354],{"type":41,"tag":56,"props":355,"children":357},{"className":356},[],[358],{"type":47,"value":359},"contains",{"type":41,"tag":263,"props":361,"children":362},{},[363],{"type":47,"value":364},"string",{"type":41,"tag":263,"props":366,"children":367},{},[368],{"type":47,"value":369},"text-like, linked records",{"type":41,"tag":236,"props":371,"children":372},{},[373,382,386],{"type":41,"tag":263,"props":374,"children":375},{},[376],{"type":41,"tag":56,"props":377,"children":379},{"className":378},[],[380],{"type":47,"value":381},"doesNotContain",{"type":41,"tag":263,"props":383,"children":384},{},[385],{"type":47,"value":364},{"type":41,"tag":263,"props":387,"children":388},{},[389],{"type":47,"value":369},{"type":41,"tag":236,"props":391,"children":392},{},[393,401,406],{"type":41,"tag":263,"props":394,"children":395},{},[396],{"type":41,"tag":56,"props":397,"children":399},{"className":398},[],[400],{"type":47,"value":381},{"type":41,"tag":263,"props":402,"children":403},{},[404],{"type":47,"value":405},"array of IDs",{"type":41,"tag":263,"props":407,"children":408},{},[409],{"type":47,"value":410},"multiple selects, multiple collaborators",{"type":41,"tag":236,"props":412,"children":413},{},[414,430,439],{"type":41,"tag":263,"props":415,"children":416},{},[417,423,424],{"type":41,"tag":56,"props":418,"children":420},{"className":419},[],[421],{"type":47,"value":422},"isEmpty",{"type":47,"value":317},{"type":41,"tag":56,"props":425,"children":427},{"className":426},[],[428],{"type":47,"value":429},"isNotEmpty",{"type":41,"tag":263,"props":431,"children":432},{},[433],{"type":41,"tag":434,"props":435,"children":436},"em",{},[437],{"type":47,"value":438},"(none)",{"type":41,"tag":263,"props":440,"children":441},{},[442],{"type":47,"value":443},"text-like, numeric, date, single select, multiple selects, single collaborator, multiple collaborators, linked records, attachment",{"type":41,"tag":236,"props":445,"children":446},{},[447,463,467],{"type":41,"tag":263,"props":448,"children":449},{},[450,456,457],{"type":41,"tag":56,"props":451,"children":453},{"className":452},[],[454],{"type":47,"value":455},"hasAnyOf",{"type":47,"value":317},{"type":41,"tag":56,"props":458,"children":460},{"className":459},[],[461],{"type":47,"value":462},"hasAllOf",{"type":41,"tag":263,"props":464,"children":465},{},[466],{"type":47,"value":405},{"type":41,"tag":263,"props":468,"children":469},{},[470],{"type":47,"value":471},"multiple selects, multiple collaborators, linked records",{"type":41,"tag":236,"props":473,"children":474},{},[475,484,488],{"type":41,"tag":263,"props":476,"children":477},{},[478],{"type":41,"tag":56,"props":479,"children":481},{"className":480},[],[482],{"type":47,"value":483},"isAnyOf",{"type":41,"tag":263,"props":485,"children":486},{},[487],{"type":47,"value":405},{"type":41,"tag":263,"props":489,"children":490},{},[491],{"type":47,"value":492},"single select, single collaborator",{"type":41,"tag":236,"props":494,"children":495},{},[496,505,509],{"type":41,"tag":263,"props":497,"children":498},{},[499],{"type":41,"tag":56,"props":500,"children":502},{"className":501},[],[503],{"type":47,"value":504},"isNoneOf",{"type":41,"tag":263,"props":506,"children":507},{},[508],{"type":47,"value":405},{"type":41,"tag":263,"props":510,"children":511},{},[512],{"type":47,"value":513},"single select, single collaborator, linked records",{"type":41,"tag":236,"props":515,"children":516},{},[517,526,531],{"type":41,"tag":263,"props":518,"children":519},{},[520],{"type":41,"tag":56,"props":521,"children":523},{"className":522},[],[524],{"type":47,"value":525},"isWithin",{"type":41,"tag":263,"props":527,"children":528},{},[529],{"type":47,"value":530},"date range object",{"type":41,"tag":263,"props":532,"children":533},{},[534],{"type":47,"value":535},"date",{"type":41,"tag":236,"props":537,"children":538},{},[539,555,574],{"type":41,"tag":263,"props":540,"children":541},{},[542,548,549],{"type":41,"tag":56,"props":543,"children":545},{"className":544},[],[546],{"type":47,"value":547},"filename",{"type":47,"value":317},{"type":41,"tag":56,"props":550,"children":552},{"className":551},[],[553],{"type":47,"value":554},"fileType",{"type":41,"tag":263,"props":556,"children":557},{},[558,560,566,568],{"type":47,"value":559},"string or ",{"type":41,"tag":56,"props":561,"children":563},{"className":562},[],[564],{"type":47,"value":565},"\"image\"",{"type":47,"value":567},"\u002F",{"type":41,"tag":56,"props":569,"children":571},{"className":570},[],[572],{"type":47,"value":573},"\"text\"",{"type":41,"tag":263,"props":575,"children":576},{},[577],{"type":47,"value":578},"attachment",{"type":41,"tag":50,"props":580,"children":581},{},[582,584,589,590,595,596,601,602,607,609,614,616,622,623,629],{"type":47,"value":583},"When matching a field against multiple values, prefer dedicated operators (",{"type":41,"tag":56,"props":585,"children":587},{"className":586},[],[588],{"type":47,"value":483},{"type":47,"value":317},{"type":41,"tag":56,"props":591,"children":593},{"className":592},[],[594],{"type":47,"value":504},{"type":47,"value":317},{"type":41,"tag":56,"props":597,"children":599},{"className":598},[],[600],{"type":47,"value":455},{"type":47,"value":317},{"type":41,"tag":56,"props":603,"children":605},{"className":604},[],[606],{"type":47,"value":462},{"type":47,"value":608},") over combining multiple ",{"type":41,"tag":56,"props":610,"children":612},{"className":611},[],[613],{"type":47,"value":271},{"type":47,"value":615}," conditions with ",{"type":41,"tag":56,"props":617,"children":619},{"className":618},[],[620],{"type":47,"value":621},"or",{"type":47,"value":567},{"type":41,"tag":56,"props":624,"children":626},{"className":625},[],[627],{"type":47,"value":628},"and",{"type":47,"value":630},", when those operators are available for the field type.",{"type":41,"tag":70,"props":632,"children":634},{"id":633},"field-type-rules",[635],{"type":47,"value":636},"Field-type rules",{"type":41,"tag":638,"props":639,"children":641},"h3",{"id":640},"select-fields",[642],{"type":47,"value":643},"Select fields",{"type":41,"tag":50,"props":645,"children":646},{},[647,649,654,656,662],{"type":47,"value":648},"For select fields, operand values must be ",{"type":41,"tag":98,"props":650,"children":651},{},[652],{"type":47,"value":653},"choice IDs",{"type":47,"value":655}," (e.g., ",{"type":41,"tag":56,"props":657,"children":659},{"className":658},[],[660],{"type":47,"value":661},"\"selABCDEFGHIJKLM\"",{"type":47,"value":663},"), not display names. Look up the table's schema to find choice IDs before filtering.",{"type":41,"tag":638,"props":665,"children":667},{"id":666},"collaborator-fields",[668],{"type":47,"value":669},"Collaborator fields",{"type":41,"tag":50,"props":671,"children":672},{},[673,675,681,683,688],{"type":47,"value":674},"When filtering by a collaborator group ID, use ",{"type":41,"tag":56,"props":676,"children":678},{"className":677},[],[679],{"type":47,"value":680},"operatorOptions",{"type":47,"value":682}," to match individual members of the group instead of the literal group ID. See the tool's ",{"type":41,"tag":56,"props":684,"children":686},{"className":685},[],[687],{"type":47,"value":680},{"type":47,"value":689}," parameter for details.",{"type":41,"tag":50,"props":691,"children":692},{},[693,695],{"type":47,"value":694},"Example operand: ",{"type":41,"tag":56,"props":696,"children":698},{"className":697},[],[699],{"type":47,"value":700},"{\"operator\": \"hasAnyOf\", \"operands\": [\"fldCRi9oz2vRLcIWr\", \"ugpDUVUnftA7H9bG8\"], \"operatorOptions\": {\"matchGroupsByMembership\": true}}",{"type":41,"tag":638,"props":702,"children":704},{"id":703},"attachment-fields",[705],{"type":47,"value":706},"Attachment fields",{"type":41,"tag":50,"props":708,"children":709},{},[710,712,717,719,724,725,730,732,737],{"type":47,"value":711},"Use ",{"type":41,"tag":56,"props":713,"children":715},{"className":714},[],[716],{"type":47,"value":554},{"type":47,"value":718}," to filter attachments by type (e.g., ",{"type":41,"tag":56,"props":720,"children":722},{"className":721},[],[723],{"type":47,"value":565},{"type":47,"value":317},{"type":41,"tag":56,"props":726,"children":728},{"className":727},[],[729],{"type":47,"value":573},{"type":47,"value":731},") rather than ",{"type":41,"tag":56,"props":733,"children":735},{"className":734},[],[736],{"type":47,"value":429},{"type":47,"value":738}," when the user specifies a file type.",{"type":41,"tag":638,"props":740,"children":742},{"id":741},"date-fields",[743],{"type":47,"value":744},"Date fields",{"type":41,"tag":50,"props":746,"children":747},{},[748,750,755,756,761,762,767,768,773,774,779,780,785,787,792,794,800],{"type":47,"value":749},"Date comparisons (",{"type":41,"tag":56,"props":751,"children":753},{"className":752},[],[754],{"type":47,"value":271},{"type":47,"value":317},{"type":41,"tag":56,"props":757,"children":759},{"className":758},[],[760],{"type":47,"value":293},{"type":47,"value":317},{"type":41,"tag":56,"props":763,"children":765},{"className":764},[],[766],{"type":47,"value":315},{"type":47,"value":317},{"type":41,"tag":56,"props":769,"children":771},{"className":770},[],[772],{"type":47,"value":323},{"type":47,"value":317},{"type":41,"tag":56,"props":775,"children":777},{"className":776},[],[778],{"type":47,"value":330},{"type":47,"value":317},{"type":41,"tag":56,"props":781,"children":783},{"className":782},[],[784],{"type":47,"value":337},{"type":47,"value":786},") use a date value object instead of a raw date string, and ",{"type":41,"tag":56,"props":788,"children":790},{"className":789},[],[791],{"type":47,"value":525},{"type":47,"value":793}," uses a date range object. The tool schema defines the available modes for each. Always include ",{"type":41,"tag":56,"props":795,"children":797},{"className":796},[],[798],{"type":47,"value":799},"timeZone",{"type":47,"value":801},".",{"type":41,"tag":70,"props":803,"children":805},{"id":804},"composing-conditions",[806],{"type":47,"value":807},"Composing conditions",{"type":41,"tag":50,"props":809,"children":810},{},[811],{"type":47,"value":812},"A filter's top-level operands array can contain two or more conditions, which are combined with the top-level operator (AND by default). For simple multi-condition filters, this flat structure is sufficient.",{"type":41,"tag":50,"props":814,"children":815},{},[816],{"type":47,"value":817},"When the logic requires mixing AND and OR, nest a filter object as one of the operands. Each nested filter has its own operator and operands.",{"type":41,"tag":50,"props":819,"children":820},{},[821,826],{"type":41,"tag":98,"props":822,"children":823},{},[824],{"type":47,"value":825},"OR inside AND",{"type":47,"value":827}," — useful when one condition is fixed and another allows multiple alternatives:",{"type":41,"tag":829,"props":830,"children":831},"blockquote",{},[832],{"type":41,"tag":50,"props":833,"children":834},{},[835],{"type":47,"value":836},"\"Scripted videos that are either in Writing or Pre-Production\"\n→ Bucket = Scripted AND (Status = Writing OR Status = Pre-Production)",{"type":41,"tag":50,"props":838,"children":839},{},[840,845],{"type":41,"tag":98,"props":841,"children":842},{},[843],{"type":47,"value":844},"AND inside OR",{"type":47,"value":846}," — useful when you want records matching either a simple condition or a combination:",{"type":41,"tag":829,"props":848,"children":849},{},[850],{"type":41,"tag":50,"props":851,"children":852},{},[853],{"type":47,"value":854},"\"Approved videos, or videos assigned to Bailey that are in Cut 2\"\n→ Status = Approved OR (Editor = Bailey AND Status = Cut 2 Ready)",{"type":41,"tag":50,"props":856,"children":857},{},[858],{"type":47,"value":859},"When combining many conditions on different fields, prefer a flat AND rather than unnecessary nesting. Only nest when the logic genuinely requires mixed AND\u002FOR at different levels.",{"type":41,"tag":50,"props":861,"children":862},{},[863,865,870],{"type":47,"value":864},"Prefer composing all conditions into a single ",{"type":41,"tag":56,"props":866,"children":868},{"className":867},[],[869],{"type":47,"value":61},{"type":47,"value":871}," object rather than splitting them across multiple calls. A single call with a composed filter is more efficient and returns the correct result set directly.",{"type":41,"tag":70,"props":873,"children":875},{"id":874},"examples",[876],{"type":47,"value":877},"Examples",{"type":41,"tag":50,"props":879,"children":880},{},[881],{"type":47,"value":882},"Filter where a text field equals \"orange\" OR a number field is greater than 5:",{"type":41,"tag":884,"props":885,"children":890},"pre",{"className":886,"code":887,"language":888,"meta":889,"style":889},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n    \"operator\": \"or\",\n    \"operands\": [\n        {\"operator\": \"=\", \"operands\": [\"fld8WsrpLHHevsnW8\", \"orange\"]},\n        {\"operator\": \">\", \"operands\": [\"fldulcCPDVz87Bmnw\", 5]}\n    ]\n}\n","json","",[891],{"type":41,"tag":56,"props":892,"children":893},{"__ignoreMap":889},[894,906,949,974,1073,1161,1170],{"type":41,"tag":895,"props":896,"children":899},"span",{"class":897,"line":898},"line",1,[900],{"type":41,"tag":895,"props":901,"children":903},{"style":902},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[904],{"type":47,"value":905},"{\n",{"type":41,"tag":895,"props":907,"children":909},{"class":897,"line":908},2,[910,915,920,925,930,935,940,944],{"type":41,"tag":895,"props":911,"children":912},{"style":902},[913],{"type":47,"value":914},"    \"",{"type":41,"tag":895,"props":916,"children":918},{"style":917},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[919],{"type":47,"value":86},{"type":41,"tag":895,"props":921,"children":922},{"style":902},[923],{"type":47,"value":924},"\"",{"type":41,"tag":895,"props":926,"children":927},{"style":902},[928],{"type":47,"value":929},":",{"type":41,"tag":895,"props":931,"children":932},{"style":902},[933],{"type":47,"value":934}," \"",{"type":41,"tag":895,"props":936,"children":938},{"style":937},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[939],{"type":47,"value":621},{"type":41,"tag":895,"props":941,"children":942},{"style":902},[943],{"type":47,"value":924},{"type":41,"tag":895,"props":945,"children":946},{"style":902},[947],{"type":47,"value":948},",\n",{"type":41,"tag":895,"props":950,"children":952},{"class":897,"line":951},3,[953,957,961,965,969],{"type":41,"tag":895,"props":954,"children":955},{"style":902},[956],{"type":47,"value":914},{"type":41,"tag":895,"props":958,"children":959},{"style":917},[960],{"type":47,"value":94},{"type":41,"tag":895,"props":962,"children":963},{"style":902},[964],{"type":47,"value":924},{"type":41,"tag":895,"props":966,"children":967},{"style":902},[968],{"type":47,"value":929},{"type":41,"tag":895,"props":970,"children":971},{"style":902},[972],{"type":47,"value":973}," [\n",{"type":41,"tag":895,"props":975,"children":977},{"class":897,"line":976},4,[978,983,987,992,996,1000,1004,1008,1012,1017,1021,1025,1029,1033,1038,1042,1047,1051,1055,1059,1064,1068],{"type":41,"tag":895,"props":979,"children":980},{"style":902},[981],{"type":47,"value":982},"        {",{"type":41,"tag":895,"props":984,"children":985},{"style":902},[986],{"type":47,"value":924},{"type":41,"tag":895,"props":988,"children":990},{"style":989},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[991],{"type":47,"value":86},{"type":41,"tag":895,"props":993,"children":994},{"style":902},[995],{"type":47,"value":924},{"type":41,"tag":895,"props":997,"children":998},{"style":902},[999],{"type":47,"value":929},{"type":41,"tag":895,"props":1001,"children":1002},{"style":902},[1003],{"type":47,"value":934},{"type":41,"tag":895,"props":1005,"children":1006},{"style":937},[1007],{"type":47,"value":271},{"type":41,"tag":895,"props":1009,"children":1010},{"style":902},[1011],{"type":47,"value":924},{"type":41,"tag":895,"props":1013,"children":1014},{"style":902},[1015],{"type":47,"value":1016},",",{"type":41,"tag":895,"props":1018,"children":1019},{"style":902},[1020],{"type":47,"value":934},{"type":41,"tag":895,"props":1022,"children":1023},{"style":989},[1024],{"type":47,"value":94},{"type":41,"tag":895,"props":1026,"children":1027},{"style":902},[1028],{"type":47,"value":924},{"type":41,"tag":895,"props":1030,"children":1031},{"style":902},[1032],{"type":47,"value":929},{"type":41,"tag":895,"props":1034,"children":1035},{"style":902},[1036],{"type":47,"value":1037}," [",{"type":41,"tag":895,"props":1039,"children":1040},{"style":902},[1041],{"type":47,"value":924},{"type":41,"tag":895,"props":1043,"children":1044},{"style":937},[1045],{"type":47,"value":1046},"fld8WsrpLHHevsnW8",{"type":41,"tag":895,"props":1048,"children":1049},{"style":902},[1050],{"type":47,"value":924},{"type":41,"tag":895,"props":1052,"children":1053},{"style":902},[1054],{"type":47,"value":1016},{"type":41,"tag":895,"props":1056,"children":1057},{"style":902},[1058],{"type":47,"value":934},{"type":41,"tag":895,"props":1060,"children":1061},{"style":937},[1062],{"type":47,"value":1063},"orange",{"type":41,"tag":895,"props":1065,"children":1066},{"style":902},[1067],{"type":47,"value":924},{"type":41,"tag":895,"props":1069,"children":1070},{"style":902},[1071],{"type":47,"value":1072},"]},\n",{"type":41,"tag":895,"props":1074,"children":1076},{"class":897,"line":1075},5,[1077,1081,1085,1089,1093,1097,1101,1105,1109,1113,1117,1121,1125,1129,1133,1137,1142,1146,1150,1156],{"type":41,"tag":895,"props":1078,"children":1079},{"style":902},[1080],{"type":47,"value":982},{"type":41,"tag":895,"props":1082,"children":1083},{"style":902},[1084],{"type":47,"value":924},{"type":41,"tag":895,"props":1086,"children":1087},{"style":989},[1088],{"type":47,"value":86},{"type":41,"tag":895,"props":1090,"children":1091},{"style":902},[1092],{"type":47,"value":924},{"type":41,"tag":895,"props":1094,"children":1095},{"style":902},[1096],{"type":47,"value":929},{"type":41,"tag":895,"props":1098,"children":1099},{"style":902},[1100],{"type":47,"value":934},{"type":41,"tag":895,"props":1102,"children":1103},{"style":937},[1104],{"type":47,"value":323},{"type":41,"tag":895,"props":1106,"children":1107},{"style":902},[1108],{"type":47,"value":924},{"type":41,"tag":895,"props":1110,"children":1111},{"style":902},[1112],{"type":47,"value":1016},{"type":41,"tag":895,"props":1114,"children":1115},{"style":902},[1116],{"type":47,"value":934},{"type":41,"tag":895,"props":1118,"children":1119},{"style":989},[1120],{"type":47,"value":94},{"type":41,"tag":895,"props":1122,"children":1123},{"style":902},[1124],{"type":47,"value":924},{"type":41,"tag":895,"props":1126,"children":1127},{"style":902},[1128],{"type":47,"value":929},{"type":41,"tag":895,"props":1130,"children":1131},{"style":902},[1132],{"type":47,"value":1037},{"type":41,"tag":895,"props":1134,"children":1135},{"style":902},[1136],{"type":47,"value":924},{"type":41,"tag":895,"props":1138,"children":1139},{"style":937},[1140],{"type":47,"value":1141},"fldulcCPDVz87Bmnw",{"type":41,"tag":895,"props":1143,"children":1144},{"style":902},[1145],{"type":47,"value":924},{"type":41,"tag":895,"props":1147,"children":1148},{"style":902},[1149],{"type":47,"value":1016},{"type":41,"tag":895,"props":1151,"children":1153},{"style":1152},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1154],{"type":47,"value":1155}," 5",{"type":41,"tag":895,"props":1157,"children":1158},{"style":902},[1159],{"type":47,"value":1160},"]}\n",{"type":41,"tag":895,"props":1162,"children":1164},{"class":897,"line":1163},6,[1165],{"type":41,"tag":895,"props":1166,"children":1167},{"style":902},[1168],{"type":47,"value":1169},"    ]\n",{"type":41,"tag":895,"props":1171,"children":1173},{"class":897,"line":1172},7,[1174],{"type":41,"tag":895,"props":1175,"children":1176},{"style":902},[1177],{"type":47,"value":1178},"}\n",{"type":41,"tag":50,"props":1180,"children":1181},{},[1182],{"type":47,"value":1183},"Filter for records where a date field is within the past week:",{"type":41,"tag":884,"props":1185,"children":1187},{"className":886,"code":1186,"language":888,"meta":889,"style":889},"{\n    \"operands\": [\n        {\n            \"operator\": \"isWithin\",\n            \"operands\": [\"fldABC12345678x\", {\"mode\": \"pastWeek\", \"timeZone\": \"America\u002FNew_York\"}]\n        }\n    ]\n}\n",[1188],{"type":41,"tag":56,"props":1189,"children":1190},{"__ignoreMap":889},[1191,1198,1221,1229,1265,1378,1386,1393],{"type":41,"tag":895,"props":1192,"children":1193},{"class":897,"line":898},[1194],{"type":41,"tag":895,"props":1195,"children":1196},{"style":902},[1197],{"type":47,"value":905},{"type":41,"tag":895,"props":1199,"children":1200},{"class":897,"line":908},[1201,1205,1209,1213,1217],{"type":41,"tag":895,"props":1202,"children":1203},{"style":902},[1204],{"type":47,"value":914},{"type":41,"tag":895,"props":1206,"children":1207},{"style":917},[1208],{"type":47,"value":94},{"type":41,"tag":895,"props":1210,"children":1211},{"style":902},[1212],{"type":47,"value":924},{"type":41,"tag":895,"props":1214,"children":1215},{"style":902},[1216],{"type":47,"value":929},{"type":41,"tag":895,"props":1218,"children":1219},{"style":902},[1220],{"type":47,"value":973},{"type":41,"tag":895,"props":1222,"children":1223},{"class":897,"line":951},[1224],{"type":41,"tag":895,"props":1225,"children":1226},{"style":902},[1227],{"type":47,"value":1228},"        {\n",{"type":41,"tag":895,"props":1230,"children":1231},{"class":897,"line":976},[1232,1237,1241,1245,1249,1253,1257,1261],{"type":41,"tag":895,"props":1233,"children":1234},{"style":902},[1235],{"type":47,"value":1236},"            \"",{"type":41,"tag":895,"props":1238,"children":1239},{"style":989},[1240],{"type":47,"value":86},{"type":41,"tag":895,"props":1242,"children":1243},{"style":902},[1244],{"type":47,"value":924},{"type":41,"tag":895,"props":1246,"children":1247},{"style":902},[1248],{"type":47,"value":929},{"type":41,"tag":895,"props":1250,"children":1251},{"style":902},[1252],{"type":47,"value":934},{"type":41,"tag":895,"props":1254,"children":1255},{"style":937},[1256],{"type":47,"value":525},{"type":41,"tag":895,"props":1258,"children":1259},{"style":902},[1260],{"type":47,"value":924},{"type":41,"tag":895,"props":1262,"children":1263},{"style":902},[1264],{"type":47,"value":948},{"type":41,"tag":895,"props":1266,"children":1267},{"class":897,"line":1075},[1268,1272,1276,1280,1284,1288,1292,1297,1301,1305,1310,1314,1319,1323,1327,1331,1336,1340,1344,1348,1352,1356,1360,1364,1369,1373],{"type":41,"tag":895,"props":1269,"children":1270},{"style":902},[1271],{"type":47,"value":1236},{"type":41,"tag":895,"props":1273,"children":1274},{"style":989},[1275],{"type":47,"value":94},{"type":41,"tag":895,"props":1277,"children":1278},{"style":902},[1279],{"type":47,"value":924},{"type":41,"tag":895,"props":1281,"children":1282},{"style":902},[1283],{"type":47,"value":929},{"type":41,"tag":895,"props":1285,"children":1286},{"style":902},[1287],{"type":47,"value":1037},{"type":41,"tag":895,"props":1289,"children":1290},{"style":902},[1291],{"type":47,"value":924},{"type":41,"tag":895,"props":1293,"children":1294},{"style":937},[1295],{"type":47,"value":1296},"fldABC12345678x",{"type":41,"tag":895,"props":1298,"children":1299},{"style":902},[1300],{"type":47,"value":924},{"type":41,"tag":895,"props":1302,"children":1303},{"style":902},[1304],{"type":47,"value":1016},{"type":41,"tag":895,"props":1306,"children":1307},{"style":902},[1308],{"type":47,"value":1309}," {",{"type":41,"tag":895,"props":1311,"children":1312},{"style":902},[1313],{"type":47,"value":924},{"type":41,"tag":895,"props":1315,"children":1316},{"style":1152},[1317],{"type":47,"value":1318},"mode",{"type":41,"tag":895,"props":1320,"children":1321},{"style":902},[1322],{"type":47,"value":924},{"type":41,"tag":895,"props":1324,"children":1325},{"style":902},[1326],{"type":47,"value":929},{"type":41,"tag":895,"props":1328,"children":1329},{"style":902},[1330],{"type":47,"value":934},{"type":41,"tag":895,"props":1332,"children":1333},{"style":937},[1334],{"type":47,"value":1335},"pastWeek",{"type":41,"tag":895,"props":1337,"children":1338},{"style":902},[1339],{"type":47,"value":924},{"type":41,"tag":895,"props":1341,"children":1342},{"style":902},[1343],{"type":47,"value":1016},{"type":41,"tag":895,"props":1345,"children":1346},{"style":902},[1347],{"type":47,"value":934},{"type":41,"tag":895,"props":1349,"children":1350},{"style":1152},[1351],{"type":47,"value":799},{"type":41,"tag":895,"props":1353,"children":1354},{"style":902},[1355],{"type":47,"value":924},{"type":41,"tag":895,"props":1357,"children":1358},{"style":902},[1359],{"type":47,"value":929},{"type":41,"tag":895,"props":1361,"children":1362},{"style":902},[1363],{"type":47,"value":934},{"type":41,"tag":895,"props":1365,"children":1366},{"style":937},[1367],{"type":47,"value":1368},"America\u002FNew_York",{"type":41,"tag":895,"props":1370,"children":1371},{"style":902},[1372],{"type":47,"value":924},{"type":41,"tag":895,"props":1374,"children":1375},{"style":902},[1376],{"type":47,"value":1377},"}]\n",{"type":41,"tag":895,"props":1379,"children":1380},{"class":897,"line":1163},[1381],{"type":41,"tag":895,"props":1382,"children":1383},{"style":902},[1384],{"type":47,"value":1385},"        }\n",{"type":41,"tag":895,"props":1387,"children":1388},{"class":897,"line":1172},[1389],{"type":41,"tag":895,"props":1390,"children":1391},{"style":902},[1392],{"type":47,"value":1169},{"type":41,"tag":895,"props":1394,"children":1396},{"class":897,"line":1395},8,[1397],{"type":41,"tag":895,"props":1398,"children":1399},{"style":902},[1400],{"type":47,"value":1178},{"type":41,"tag":1402,"props":1403,"children":1404},"style",{},[1405],{"type":47,"value":1406},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1408,"total":1529},[1409,1427,1443,1455,1475,1497,1517],{"slug":1410,"name":1410,"fn":1411,"description":1412,"org":1413,"tags":1414,"stars":22,"repoUrl":23,"updatedAt":24},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1415,1418,1421,1424],{"name":1416,"slug":1417,"type":15},"Accessibility","accessibility",{"name":1419,"slug":1420,"type":15},"Charts","charts",{"name":1422,"slug":1423,"type":15},"Data Visualization","data-visualization",{"name":1425,"slug":1426,"type":15},"Design","design",{"slug":1428,"name":1428,"fn":1429,"description":1430,"org":1431,"tags":1432,"stars":22,"repoUrl":23,"updatedAt":1442},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1433,1436,1439],{"name":1434,"slug":1435,"type":15},"Agents","agents",{"name":1437,"slug":1438,"type":15},"Browser Automation","browser-automation",{"name":1440,"slug":1441,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1444,"name":1444,"fn":1445,"description":1446,"org":1447,"tags":1448,"stars":22,"repoUrl":23,"updatedAt":1454},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1449,1450,1453],{"name":1437,"slug":1438,"type":15},{"name":1451,"slug":1452,"type":15},"Local Development","local-development",{"name":1440,"slug":1441,"type":15},"2026-04-06T18:41:17.526867",{"slug":1456,"name":1456,"fn":1457,"description":1458,"org":1459,"tags":1460,"stars":22,"repoUrl":23,"updatedAt":1474},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1461,1462,1465,1468,1471],{"name":1434,"slug":1435,"type":15},{"name":1463,"slug":1464,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1466,"slug":1467,"type":15},"SDK","sdk",{"name":1469,"slug":1470,"type":15},"Serverless","serverless",{"name":1472,"slug":1473,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1476,"name":1476,"fn":1477,"description":1478,"org":1479,"tags":1480,"stars":22,"repoUrl":23,"updatedAt":1496},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1481,1484,1487,1490,1493],{"name":1482,"slug":1483,"type":15},"Frontend","frontend",{"name":1485,"slug":1486,"type":15},"React","react",{"name":1488,"slug":1489,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1491,"slug":1492,"type":15},"UI Components","ui-components",{"name":1494,"slug":1495,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1498,"name":1498,"fn":1499,"description":1500,"org":1501,"tags":1502,"stars":22,"repoUrl":23,"updatedAt":1516},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1503,1506,1509,1512,1515],{"name":1504,"slug":1505,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1507,"slug":1508,"type":15},"Cost Optimization","cost-optimization",{"name":1510,"slug":1511,"type":15},"LLM","llm",{"name":1513,"slug":1514,"type":15},"Performance","performance",{"name":1494,"slug":1495,"type":15},"2026-04-06T18:40:44.377464",{"slug":1518,"name":1518,"fn":1519,"description":1520,"org":1521,"tags":1522,"stars":22,"repoUrl":23,"updatedAt":1528},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1523,1524,1527],{"name":1507,"slug":1508,"type":15},{"name":1525,"slug":1526,"type":15},"Database","database",{"name":1510,"slug":1511,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1531,"total":1728},[1532,1553,1576,1593,1609,1626,1645,1657,1671,1685,1697,1712],{"slug":1533,"name":1533,"fn":1534,"description":1535,"org":1536,"tags":1537,"stars":1550,"repoUrl":1551,"updatedAt":1552},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1538,1541,1544,1547],{"name":1539,"slug":1540,"type":15},"Documents","documents",{"name":1542,"slug":1543,"type":15},"Healthcare","healthcare",{"name":1545,"slug":1546,"type":15},"Insurance","insurance",{"name":1548,"slug":1549,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1554,"name":1554,"fn":1555,"description":1556,"org":1557,"tags":1558,"stars":1573,"repoUrl":1574,"updatedAt":1575},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1559,1562,1564,1567,1570],{"name":1560,"slug":1561,"type":15},".NET","dotnet",{"name":1563,"slug":1554,"type":15},"ASP.NET Core",{"name":1565,"slug":1566,"type":15},"Blazor","blazor",{"name":1568,"slug":1569,"type":15},"C#","csharp",{"name":1571,"slug":1572,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1577,"name":1577,"fn":1578,"description":1579,"org":1580,"tags":1581,"stars":1573,"repoUrl":1574,"updatedAt":1592},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1582,1585,1588,1591],{"name":1583,"slug":1584,"type":15},"Apps SDK","apps-sdk",{"name":1586,"slug":1587,"type":15},"ChatGPT","chatgpt",{"name":1589,"slug":1590,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1594,"name":1594,"fn":1595,"description":1596,"org":1597,"tags":1598,"stars":1573,"repoUrl":1574,"updatedAt":1608},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1599,1602,1605],{"name":1600,"slug":1601,"type":15},"API Development","api-development",{"name":1603,"slug":1604,"type":15},"CLI","cli",{"name":1606,"slug":1607,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1610,"name":1610,"fn":1611,"description":1612,"org":1613,"tags":1614,"stars":1573,"repoUrl":1574,"updatedAt":1625},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1615,1618,1621,1622],{"name":1616,"slug":1617,"type":15},"Cloudflare","cloudflare",{"name":1619,"slug":1620,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1463,"slug":1464,"type":15},{"name":1623,"slug":1624,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1627,"name":1627,"fn":1628,"description":1629,"org":1630,"tags":1631,"stars":1573,"repoUrl":1574,"updatedAt":1644},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1632,1635,1638,1641],{"name":1633,"slug":1634,"type":15},"Productivity","productivity",{"name":1636,"slug":1637,"type":15},"Project Management","project-management",{"name":1639,"slug":1640,"type":15},"Strategy","strategy",{"name":1642,"slug":1643,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1646,"name":1646,"fn":1647,"description":1648,"org":1649,"tags":1650,"stars":1573,"repoUrl":1574,"updatedAt":1656},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1651,1652,1654,1655],{"name":1425,"slug":1426,"type":15},{"name":1653,"slug":1646,"type":15},"Figma",{"name":1482,"slug":1483,"type":15},{"name":1589,"slug":1590,"type":15},"2026-04-12T05:06:47.939943",{"slug":1658,"name":1658,"fn":1659,"description":1660,"org":1661,"tags":1662,"stars":1573,"repoUrl":1574,"updatedAt":1670},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1663,1664,1667,1668,1669],{"name":1425,"slug":1426,"type":15},{"name":1665,"slug":1666,"type":15},"Design System","design-system",{"name":1653,"slug":1646,"type":15},{"name":1482,"slug":1483,"type":15},{"name":1491,"slug":1492,"type":15},"2026-05-10T05:59:52.971881",{"slug":1672,"name":1672,"fn":1673,"description":1674,"org":1675,"tags":1676,"stars":1573,"repoUrl":1574,"updatedAt":1684},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1677,1678,1679,1682,1683],{"name":1425,"slug":1426,"type":15},{"name":1665,"slug":1666,"type":15},{"name":1680,"slug":1681,"type":15},"Documentation","documentation",{"name":1653,"slug":1646,"type":15},{"name":1482,"slug":1483,"type":15},"2026-05-16T06:07:47.821474",{"slug":1686,"name":1686,"fn":1687,"description":1688,"org":1689,"tags":1690,"stars":1573,"repoUrl":1574,"updatedAt":1696},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1691,1692,1693,1694,1695],{"name":1425,"slug":1426,"type":15},{"name":1653,"slug":1646,"type":15},{"name":1482,"slug":1483,"type":15},{"name":1491,"slug":1492,"type":15},{"name":1571,"slug":1572,"type":15},"2026-05-16T06:07:40.583615",{"slug":1698,"name":1698,"fn":1699,"description":1700,"org":1701,"tags":1702,"stars":1573,"repoUrl":1574,"updatedAt":1711},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1703,1706,1707,1710],{"name":1704,"slug":1705,"type":15},"Animation","animation",{"name":1606,"slug":1607,"type":15},{"name":1708,"slug":1709,"type":15},"Creative","creative",{"name":1425,"slug":1426,"type":15},"2026-05-02T05:31:48.48485",{"slug":1713,"name":1713,"fn":1714,"description":1715,"org":1716,"tags":1717,"stars":1573,"repoUrl":1574,"updatedAt":1727},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1718,1719,1720,1723,1726],{"name":1708,"slug":1709,"type":15},{"name":1425,"slug":1426,"type":15},{"name":1721,"slug":1722,"type":15},"Image Generation","image-generation",{"name":1724,"slug":1725,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]