[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-5bb58e1d-f9b8-41c9-b840-82abf4cf3883":3,"$fCqAm55QYIhih-4C-av7uQMSJP8m8ykAynW40uR8n484":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},"5bb58e1d-f9b8-41c9-b840-82abf4cf3883","trello-automation","通过Rube MCP（Composio）自动化Trello看板、卡片和工作流程。创建卡片、管理列表、分配成员以及跨看板进行编程搜索。","cat_prod_automation","mod_productivity","sickn33,productivity","---\nname: trello-automation\ndescription: \"Automate Trello boards, cards, and workflows via Rube MCP (Composio). Create cards, manage lists, assign members, and search across boards programmatically.\"\nrisk: critical\nsource: community\ndate_added: \"2026-02-27\"\n---\n\n# Trello Automation via Rube MCP\n\nAutomate Trello board management, card creation, and team workflows through Composio's Rube MCP integration.\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Trello connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `trello`\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 `trello`\n3. If connection is not ACTIVE, follow the returned auth link to complete Trello auth\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Core Workflows\n\n### 1. Create a Card on a Board\n\n**When to use**: User wants to add a new card\u002Ftask to a Trello board\n\n**Tool sequence**:\n1. `TRELLO_GET_MEMBERS_BOARDS_BY_ID_MEMBER` - List boards to find target board ID [Prerequisite]\n2. `TRELLO_GET_BOARDS_LISTS_BY_ID_BOARD` - Get lists on board to find target list ID [Prerequisite]\n3. `TRELLO_ADD_CARDS` - Create the card on the resolved list [Required]\n4. `TRELLO_ADD_CARDS_CHECKLISTS_BY_ID_CARD` - Add a checklist to the card [Optional]\n5. `TRELLO_ADD_CARDS_CHECKLIST_CHECK_ITEM_BY_ID_CARD_BY_ID_CHECKLIST` - Add items to the checklist [Optional]\n\n**Key parameters**:\n- `idList`: 24-char hex ID (NOT list name)\n- `name`: Card title\n- `desc`: Card description (supports Markdown)\n- `pos`: Position ('top'\u002F'bottom')\n- `due`: Due date (ISO 8601 format)\n\n**Pitfalls**:\n- Store returned id (idCard) immediately; downstream checklist operations fail without it\n- Checklist payload may be nested (data.data); extract idChecklist from inner object\n- One API call per checklist item; large checklists can trigger rate limits\n\n### 2. Manage Boards and Lists\n\n**When to use**: User wants to view, browse, or restructure board layout\n\n**Tool sequence**:\n1. `TRELLO_GET_MEMBERS_BOARDS_BY_ID_MEMBER` - List all boards for the user [Required]\n2. `TRELLO_GET_BOARDS_BY_ID_BOARD` - Get detailed board info [Required]\n3. `TRELLO_GET_BOARDS_LISTS_BY_ID_BOARD` - Get lists (columns) on the board [Optional]\n4. `TRELLO_GET_BOARDS_MEMBERS_BY_ID_BOARD` - Get board members [Optional]\n5. `TRELLO_GET_BOARDS_LABELS_BY_ID_BOARD` - Get labels on the board [Optional]\n\n**Key parameters**:\n- `idMember`: Use 'me' for authenticated user\n- `filter`: 'open', 'starred', or 'all'\n- `idBoard`: 24-char hex or 8-char shortLink (NOT board name)\n\n**Pitfalls**:\n- Some runs return boards under response.data.details[]—don't assume flat top-level array\n- Lists may be nested under results[0].response.data.details—parse defensively\n- ISO 8601 timestamps with trailing 'Z' must be parsed as timezone-aware\n\n### 3. Move Cards Between Lists\n\n**When to use**: User wants to change a card's status by moving it to another list\n\n**Tool sequence**:\n1. `TRELLO_GET_SEARCH` - Find the card by name or keyword [Prerequisite]\n2. `TRELLO_GET_BOARDS_LISTS_BY_ID_BOARD` - Get destination list ID [Prerequisite]\n3. `TRELLO_UPDATE_CARDS_BY_ID_CARD` - Update card's idList to move it [Required]\n\n**Key parameters**:\n- `idCard`: Card ID from search\n- `idList`: Destination list ID\n- `pos`: Optional ordering within new list\n\n**Pitfalls**:\n- Search returns partial matches; verify card name before updating\n- Moving doesn't update position within new list; set pos if ordering matters\n\n### 4. Assign Members to Cards\n\n**When to use**: User wants to assign team members to cards\n\n**Tool sequence**:\n1. `TRELLO_GET_BOARDS_MEMBERS_BY_ID_BOARD` - Get member IDs from the board [Prerequisite]\n2. `TRELLO_ADD_CARDS_ID_MEMBERS_BY_ID_CARD` - Add a member to the card [Required]\n\n**Key parameters**:\n- `idCard`: Target card ID\n- `value`: Member ID to assign\n\n**Pitfalls**:\n- UPDATE_CARDS_ID_MEMBERS replaces entire member list; use ADD_CARDS_ID_MEMBERS to append\n- Member must have board permissions\n\n### 5. Search and Filter Cards\n\n**When to use**: User wants to find specific cards across boards\n\n**Tool sequence**:\n1. `TRELLO_GET_SEARCH` - Search by query string [Required]\n\n**Key parameters**:\n- `query`: Search string (supports board:, list:, label:, is:open\u002Farchived operators)\n- `modelTypes`: Set to 'cards'\n- `partial`: Set to 'true' for prefix matching\n\n**Pitfalls**:\n- Search indexing has delay; newly created cards may not appear for several minutes\n- For exact name matching, use TRELLO_GET_BOARDS_CARDS_BY_ID_BOARD and filter locally\n- Query uses word tokenization; common words may be ignored as stop words\n\n### 6. Add Comments and Attachments\n\n**When to use**: User wants to add context to an existing card\n\n**Tool sequence**:\n1. `TRELLO_ADD_CARDS_ACTIONS_COMMENTS_BY_ID_CARD` - Post a comment on the card [Required]\n2. `TRELLO_ADD_CARDS_ATTACHMENTS_BY_ID_CARD` - Attach a file or URL [Optional]\n\n**Key parameters**:\n- `text`: Comment text (1-16384 chars, supports Markdown and @mentions)\n- `url` OR `file`: Attachment source (not both)\n- `name`: Attachment display name\n- `mimeType`: File MIME type\n\n**Pitfalls**:\n- Comments don't support file attachments; use the attachment tool separately\n- Attachment deletion is irreversible\n\n## Common Patterns\n\n### ID Resolution\nAlways resolve display names to IDs before operations:\n- **Board name → Board ID**: `TRELLO_GET_MEMBERS_BOARDS_BY_ID_MEMBER` with idMember='me'\n- **List name → List ID**: `TRELLO_GET_BOARDS_LISTS_BY_ID_BOARD` with resolved board ID\n- **Card name → Card ID**: `TRELLO_GET_SEARCH` with query string\n- **Member name → Member ID**: `TRELLO_GET_BOARDS_MEMBERS_BY_ID_BOARD`\n\n### Pagination\nMost list endpoints return all items. For boards with 1000+ cards, use `limit` and `before` parameters on card listing endpoints.\n\n### Rate Limits\n300 requests per 10 seconds per token. Use `TRELLO_GET_BATCH` for bulk read operations to stay within limits.\n\n## Known Pitfalls\n\n- **ID Requirements**: Nearly every tool requires IDs, not display names. Always resolve names to IDs first.\n- **Board ID Format**: Board IDs must be 24-char hex or 8-char shortLink. URL slugs like 'my-board' are NOT valid.\n- **Search Delays**: Search indexing has delays; newly created\u002Fupdated cards may not appear immediately.\n- **Nested Responses**: Response data is often nested (data.data or data.details[]); parse defensively.\n- **Rate Limiting**: 300 req\u002F10s per token. Batch reads with TRELLO_GET_BATCH.\n\n## Quick Reference\n\n| Task | Tool Slug | Key Params |\n|------|-----------|------------|\n| List user's boards | TRELLO_GET_MEMBERS_BOARDS_BY_ID_MEMBER | idMember='me', filter='open' |\n| Get board details | TRELLO_GET_BOARDS_BY_ID_BOARD | idBoard (24-char hex) |\n| List board lists | TRELLO_GET_BOARDS_LISTS_BY_ID_BOARD | idBoard |\n| Create card | TRELLO_ADD_CARDS | idList, name, desc, pos, due |\n| Update card | TRELLO_UPDATE_CARDS_BY_ID_CARD | idCard, idList (to move) |\n| Search cards | TRELLO_GET_SEARCH | query, modelTypes='cards' |\n| Add checklist | TRELLO_ADD_CARDS_CHECKLISTS_BY_ID_CARD | idCard, name |\n| Add comment | TRELLO_ADD_CARDS_ACTIONS_COMMENTS_BY_ID_CARD | idCard, text |\n| Assign member | TRELLO_ADD_CARDS_ID_MEMBERS_BY_ID_CARD | idCard, value (member ID) |\n| Attach file\u002FURL | TRELLO_ADD_CARDS_ATTACHMENTS_BY_ID_CARD | idCard, url OR file |\n| Get board members | TRELLO_GET_BOARDS_MEMBERS_BY_ID_BOARD | idBoard |\n| Batch read | TRELLO_GET_BATCH | urls (comma-separated paths) |\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,68,1581,"2026-05-16 13:44:47",{"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},"ff82f5ce-f413-4c9d-940a-e8e6066b7788","1.0.0","trello-automation.zip",3231,"uploads\u002Fskills\u002F5bb58e1d-f9b8-41c9-b840-82abf4cf3883\u002Ftrello-automation.zip","1162f58f6272db13d0ca9dfde0f0ed6fc20284b072bfe729363ece75c985a0ee","[{\"path\":\"SKILL.md\",\"isDirectory\":false,\"size\":8164}]",{"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]