[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-3294c87c-41b0-4c3d-812a-04e3150d6e62":3,"$fALMULhkytsyWKvYsuFCGZktPPlmOlOMIHj8b5NKcvCk":43},{"id":4,"title":5,"description":6,"categoryId":7,"moduleId":8,"tags":9,"prompt":10,"icon":11,"source":12,"sourceUrl":13,"authorId":14,"authorName":15,"isPublic":16,"stars":17,"runs":18,"createdAt":19,"updatedAt":19,"module":20,"category":27,"packages":34},"3294c87c-41b0-4c3d-812a-04e3150d6e62","airtable-automation","通过Rube MCP（Composio）自动化Airtable任务：记录、基础、表格、字段、视图。始终首先搜索工具以查找当前架构。","cat_prod_automation","mod_productivity","sickn33,productivity","---\nname: airtable-automation\ndescription: \"Automate Airtable tasks via Rube MCP (Composio): records, bases, tables, fields, views. Always search tools first for current schemas.\"\nrisk: critical\nsource: community\ndate_added: \"2026-02-27\"\n---\n\n# Airtable Automation via Rube MCP\n\nAutomate Airtable operations through Composio's Airtable toolkit via Rube MCP.\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Airtable connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `airtable`\n- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas\n\n## Setup\n\n**Get Rube MCP**: Add `https:\u002F\u002Frube.app\u002Fmcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.\n\n1. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds\n2. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `airtable`\n3. If connection is not ACTIVE, follow the returned auth link to complete Airtable auth\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Core Workflows\n\n### 1. Create and Manage Records\n\n**When to use**: User wants to create, read, update, or delete records\n\n**Tool sequence**:\n1. `AIRTABLE_LIST_BASES` - Discover available bases [Prerequisite]\n2. `AIRTABLE_GET_BASE_SCHEMA` - Inspect table structure [Prerequisite]\n3. `AIRTABLE_LIST_RECORDS` - List\u002Ffilter records [Optional]\n4. `AIRTABLE_CREATE_RECORD` \u002F `AIRTABLE_CREATE_RECORDS` - Create records [Optional]\n5. `AIRTABLE_UPDATE_RECORD` \u002F `AIRTABLE_UPDATE_MULTIPLE_RECORDS` - Update records [Optional]\n6. `AIRTABLE_DELETE_RECORD` \u002F `AIRTABLE_DELETE_MULTIPLE_RECORDS` - Delete records [Optional]\n\n**Key parameters**:\n- `baseId`: Base ID (starts with 'app', e.g., 'appXXXXXXXXXXXXXX')\n- `tableIdOrName`: Table ID (starts with 'tbl') or table name\n- `fields`: Object mapping field names to values\n- `recordId`: Record ID (starts with 'rec') for updates\u002Fdeletes\n- `filterByFormula`: Airtable formula for filtering\n- `typecast`: Set true for automatic type conversion\n\n**Pitfalls**:\n- pageSize capped at 100; uses offset pagination; changing filters between pages can skip\u002Fduplicate rows\n- CREATE_RECORDS hard limit of 10 records per request; chunk larger imports\n- Field names are CASE-SENSITIVE and must match schema exactly\n- 422 UNKNOWN_FIELD_NAME when field names are wrong; 403 for permission issues\n- INVALID_MULTIPLE_CHOICE_OPTIONS may require typecast=true\n\n### 2. Search and Filter Records\n\n**When to use**: User wants to find specific records using formulas\n\n**Tool sequence**:\n1. `AIRTABLE_GET_BASE_SCHEMA` - Verify field names and types [Prerequisite]\n2. `AIRTABLE_LIST_RECORDS` - Query with filterByFormula [Required]\n3. `AIRTABLE_GET_RECORD` - Get full record details [Optional]\n\n**Key parameters**:\n- `filterByFormula`: Airtable formula (e.g., `{Status}='Done'`)\n- `sort`: Array of sort objects\n- `fields`: Array of field names to return\n- `maxRecords`: Max total records across all pages\n- `offset`: Pagination cursor from previous response\n\n**Pitfalls**:\n- Field names in formulas must be wrapped in `{}` and match schema exactly\n- String values must be quoted: `{Status}='Active'` not `{Status}=Active`\n- 422 INVALID_FILTER_BY_FORMULA for bad syntax or non-existent fields\n- Airtable rate limit: ~5 requests\u002Fsecond per base; handle 429 with Retry-After\n\n### 3. Manage Fields and Schema\n\n**When to use**: User wants to create or modify table fields\n\n**Tool sequence**:\n1. `AIRTABLE_GET_BASE_SCHEMA` - Inspect current schema [Prerequisite]\n2. `AIRTABLE_CREATE_FIELD` - Create a new field [Optional]\n3. `AIRTABLE_UPDATE_FIELD` - Rename\u002Fdescribe a field [Optional]\n4. `AIRTABLE_UPDATE_TABLE` - Update table metadata [Optional]\n\n**Key parameters**:\n- `name`: Field name\n- `type`: Field type (singleLineText, number, singleSelect, etc.)\n- `options`: Type-specific options (choices for select, precision for number)\n- `description`: Field description\n\n**Pitfalls**:\n- UPDATE_FIELD only changes name\u002Fdescription, NOT type\u002Foptions; create a replacement field and migrate\n- Computed fields (formula, rollup, lookup) cannot be created via API\n- 422 when type options are missing or malformed\n\n### 4. Manage Comments\n\n**When to use**: User wants to view or add comments on records\n\n**Tool sequence**:\n1. `AIRTABLE_LIST_COMMENTS` - List comments on a record [Required]\n\n**Key parameters**:\n- `baseId`: Base ID\n- `tableIdOrName`: Table identifier\n- `recordId`: Record ID (17 chars, starts with 'rec')\n- `pageSize`: Comments per page (max 100)\n\n**Pitfalls**:\n- Record IDs must be exactly 17 characters starting with 'rec'\n\n## Common Patterns\n\n### Airtable Formula Syntax\n\n**Comparison**:\n- `{Status}='Done'` - Equals\n- `{Priority}>1` - Greater than\n- `{Name}!=''` - Not empty\n\n**Functions**:\n- `AND({A}='x', {B}='y')` - Both conditions\n- `OR({A}='x', {A}='y')` - Either condition\n- `FIND('test', {Name})>0` - Contains text\n- `IS_BEFORE({Due Date}, TODAY())` - Date comparison\n\n**Escape rules**:\n- Single quotes in values: double them (`{Name}='John''s Company'`)\n\n### Pagination\n\n- Set `pageSize` (max 100)\n- Check response for `offset` string\n- Pass `offset` to next request unchanged\n- Keep filters\u002Fsorts\u002Fview stable between pages\n\n## Known Pitfalls\n\n**ID Formats**:\n- Base IDs: `appXXXXXXXXXXXXXX` (17 chars)\n- Table IDs: `tblXXXXXXXXXXXXXX` (17 chars)\n- Record IDs: `recXXXXXXXXXXXXXX` (17 chars)\n- Field IDs: `fldXXXXXXXXXXXXXX` (17 chars)\n\n**Batch Limits**:\n- CREATE_RECORDS: max 10 per request\n- UPDATE_MULTIPLE_RECORDS: max 10 per request\n- DELETE_MULTIPLE_RECORDS: max 10 per request\n\n## Quick Reference\n\n| Task | Tool Slug | Key Params |\n|------|-----------|------------|\n| List bases | AIRTABLE_LIST_BASES | (none) |\n| Get schema | AIRTABLE_GET_BASE_SCHEMA | baseId |\n| List records | AIRTABLE_LIST_RECORDS | baseId, tableIdOrName |\n| Get record | AIRTABLE_GET_RECORD | baseId, tableIdOrName, recordId |\n| Create record | AIRTABLE_CREATE_RECORD | baseId, tableIdOrName, fields |\n| Create records | AIRTABLE_CREATE_RECORDS | baseId, tableIdOrName, records |\n| Update record | AIRTABLE_UPDATE_RECORD | baseId, tableIdOrName, recordId, fields |\n| Update records | AIRTABLE_UPDATE_MULTIPLE_RECORDS | baseId, tableIdOrName, records |\n| Delete record | AIRTABLE_DELETE_RECORD | baseId, tableIdOrName, recordId |\n| Create field | AIRTABLE_CREATE_FIELD | baseId, tableIdOrName, name, type |\n| Update field | AIRTABLE_UPDATE_FIELD | baseId, tableIdOrName, fieldId |\n| Update table | AIRTABLE_UPDATE_TABLE | baseId, tableIdOrName, name |\n| List comments | AIRTABLE_LIST_COMMENTS | baseId, tableIdOrName, recordId |\n\n## When to Use\nThis skill is applicable to execute the workflow or actions described in the overview.\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.\n","","imported","https:\u002F\u002Fgithub.com\u002Fsickn33\u002Fantigravity-awesome-skills","user_system_seed","SkillOPIC",true,180,955,"2026-05-16 13:02:21",{"id":8,"name":21,"slug":22,"icon":23,"description":24,"sort":25,"createdAt":26},"效率工具","productivity","mdi-lightning-bolt-outline","文档处理、数据分析、自动化工作流",4,"2026-05-16 12:53:40",{"id":7,"name":28,"slug":29,"icon":30,"description":31,"moduleId":8,"sort":32,"skillCount":33,"createdAt":26},"自动化","automation","mdi-robot-outline","工作流自动化、批处理",3,101,[35],{"id":36,"skillId":4,"version":37,"fileName":38,"fileSize":39,"filePath":40,"fileHash":41,"manifest":42,"createdAt":19},"def92965-b2d2-4ef1-a857-41e055cc842a","1.0.0","airtable-automation.zip",2862,"uploads\u002Fskills\u002F3294c87c-41b0-4c3d-812a-04e3150d6e62\u002Fairtable-automation.zip","e924a2b388adfdba2b1d58a410b446e74d81eabf0222ee5662ecae6f2465fd74","[{\"path\":\"SKILL.md\",\"isDirectory\":false,\"size\":6997}]",{"code":44,"message":45,"data":46},200,"success",{"items":47,"stats":48,"page":51},[],{"averageRating":49,"totalRatings":49,"ratingCounts":50},0,[49,49,49,49,49],{"limit":52,"offset":49,"hasMore":53,"nextOffset":52,"ratedOnly":16},15,false]