[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-b4821e92-affa-4140-ad43-093dfcc7ab81":3,"$fh59nw70VT7aObtF2NRmRo2RwqEaCzz6JoZ8Z3hUry6o":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},"b4821e92-affa-4140-ad43-093dfcc7ab81","miro-automation","通过Rube MCP（Composio）自动化Miro任务：看板、项目、便利贴、框架、分享、连接器。始终首先搜索工具以查找当前架构。","cat_prod_automation","mod_productivity","sickn33,productivity","---\nname: miro-automation\ndescription: \"Automate Miro tasks via Rube MCP (Composio): boards, items, sticky notes, frames, sharing, connectors. Always search tools first for current schemas.\"\nrisk: critical\nsource: community\ndate_added: \"2026-02-27\"\n---\n\n# Miro Automation via Rube MCP\n\nAutomate Miro whiteboard operations through Composio's Miro toolkit via Rube MCP.\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Miro connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `miro`\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\n\n1. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds\n2. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `miro`\n3. If connection is not ACTIVE, follow the returned auth link to complete Miro OAuth\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Core Workflows\n\n### 1. List and Browse Boards\n\n**When to use**: User wants to find boards or get board details\n\n**Tool sequence**:\n1. `MIRO_GET_BOARDS2` - List all accessible boards [Required]\n2. `MIRO_GET_BOARD` - Get detailed info for a specific board [Optional]\n\n**Key parameters**:\n- `query`: Search term to filter boards by name\n- `sort`: Sort by 'default', 'last_modified', 'last_opened', 'last_created', 'alphabetically'\n- `limit`: Number of results per page (max 50)\n- `offset`: Pagination offset\n- `board_id`: Specific board ID for detailed retrieval\n\n**Pitfalls**:\n- Pagination uses offset-based approach, not cursor-based\n- Maximum 50 boards per page; iterate with offset for full list\n- Board IDs are long alphanumeric strings; always resolve by search first\n\n### 2. Create Boards and Items\n\n**When to use**: User wants to create a new board or add items to an existing board\n\n**Tool sequence**:\n1. `MIRO_CREATE_BOARD` - Create a new empty board [Optional]\n2. `MIRO_CREATE_STICKY_NOTE_ITEM` - Add sticky notes to a board [Optional]\n3. `MIRO_CREATE_FRAME_ITEM2` - Add frames to organize content [Optional]\n4. `MIRO_CREATE_ITEMS_IN_BULK` - Add multiple items at once [Optional]\n\n**Key parameters**:\n- `name` \u002F `description`: Board name and description (for CREATE_BOARD)\n- `board_id`: Target board ID (required for all item creation)\n- `data`: Content object with `content` field for sticky note text\n- `style`: Styling object with `fillColor` for sticky note color\n- `position`: Object with `x` and `y` coordinates\n- `geometry`: Object with `width` and `height`\n\n**Pitfalls**:\n- `board_id` is required for ALL item operations; resolve via GET_BOARDS2 first\n- Sticky note colors use hex codes (e.g., '#FF0000') in the `fillColor` field\n- Position coordinates use the board's coordinate system (origin at center)\n- BULK create has a maximum items-per-request limit; check current schema\n- Frame items require `geometry` with both width and height\n\n### 3. Browse and Manage Board Items\n\n**When to use**: User wants to view, find, or organize items on a board\n\n**Tool sequence**:\n1. `MIRO_GET_BOARD_ITEMS` - List all items on a board [Required]\n2. `MIRO_GET_CONNECTORS2` - List connections between items [Optional]\n\n**Key parameters**:\n- `board_id`: Target board ID (required)\n- `type`: Filter by item type ('sticky_note', 'shape', 'text', 'frame', 'image', 'card')\n- `limit`: Number of items per page\n- `cursor`: Pagination cursor from previous response\n\n**Pitfalls**:\n- Results are paginated; follow `cursor` until absent for complete item list\n- Item types must match Miro's predefined types exactly\n- Large boards may have thousands of items; use type filtering to narrow results\n- Connectors are separate from items; use GET_CONNECTORS2 for relationship data\n\n### 4. Share and Collaborate on Boards\n\n**When to use**: User wants to share a board with team members or manage access\n\n**Tool sequence**:\n1. `MIRO_GET_BOARDS2` - Find the board to share [Prerequisite]\n2. `MIRO_SHARE_BOARD` - Share the board with users [Required]\n3. `MIRO_GET_BOARD_MEMBERS` - Verify current board members [Optional]\n\n**Key parameters**:\n- `board_id`: Board to share (required)\n- `emails`: Array of email addresses to invite\n- `role`: Access level ('viewer', 'commenter', 'editor')\n- `message`: Optional invitation message\n\n**Pitfalls**:\n- Email addresses must be valid; invalid emails cause the entire request to fail\n- Role must be one of the predefined values; case-sensitive\n- Sharing with users outside the organization may require admin approval\n- GET_BOARD_MEMBERS returns all members including the owner\n\n### 5. Create Visual Connections\n\n**When to use**: User wants to connect items on a board with lines or arrows\n\n**Tool sequence**:\n1. `MIRO_GET_BOARD_ITEMS` - Find items to connect [Prerequisite]\n2. `MIRO_GET_CONNECTORS2` - View existing connections [Optional]\n\n**Key parameters**:\n- `board_id`: Target board ID\n- `startItem`: Object with `id` of the source item\n- `endItem`: Object with `id` of the target item\n- `style`: Connector style (line type, color, arrows)\n\n**Pitfalls**:\n- Both start and end items must exist on the same board\n- Item IDs are required for connections; resolve via GET_BOARD_ITEMS first\n- Connector styles vary; check available options in schema\n- Self-referencing connections (same start and end) are not allowed\n\n## Common Patterns\n\n### ID Resolution\n\n**Board name -> Board ID**:\n```\n1. Call MIRO_GET_BOARDS2 with query=board_name\n2. Find board by name in results\n3. Extract id field\n```\n\n**Item lookup on board**:\n```\n1. Call MIRO_GET_BOARD_ITEMS with board_id and optional type filter\n2. Find item by content or position\n3. Extract item id for further operations\n```\n\n### Pagination\n\n- Boards: Use `offset` and `limit` (offset-based)\n- Board items: Use `cursor` and `limit` (cursor-based)\n- Continue until no more results or cursor is absent\n- Default page sizes vary by endpoint\n\n### Coordinate System\n\n- Board origin (0,0) is at the center\n- Positive X is right, positive Y is down\n- Items positioned by their center point\n- Use `position: {x: 0, y: 0}` for center of board\n- Frames define bounded areas; items inside inherit frame position\n\n## Known Pitfalls\n\n**Board IDs**:\n- Board IDs are required for virtually all operations\n- Always resolve board names to IDs via GET_BOARDS2 first\n- Do not hardcode board IDs; they vary by account\n\n**Item Creation**:\n- Each item type has different required fields\n- Sticky notes need `data.content` for text\n- Frames need `geometry.width` and `geometry.height`\n- Position defaults to (0,0) if not specified; items may overlap\n\n**Rate Limits**:\n- Miro API has rate limits per token\n- Bulk operations preferred over individual item creation\n- Use MIRO_CREATE_ITEMS_IN_BULK for multiple items\n\n**Response Parsing**:\n- Response data may be nested under `data` key\n- Item types determine which fields are present in response\n- Parse defensively; optional fields may be absent\n\n## Quick Reference\n\n| Task | Tool Slug | Key Params |\n|------|-----------|------------|\n| List boards | MIRO_GET_BOARDS2 | query, sort, limit, offset |\n| Get board details | MIRO_GET_BOARD | board_id |\n| Create board | MIRO_CREATE_BOARD | name, description |\n| Add sticky note | MIRO_CREATE_STICKY_NOTE_ITEM | board_id, data, style, position |\n| Add frame | MIRO_CREATE_FRAME_ITEM2 | board_id, data, geometry, position |\n| Bulk add items | MIRO_CREATE_ITEMS_IN_BULK | board_id, items |\n| Get board items | MIRO_GET_BOARD_ITEMS | board_id, type, cursor |\n| Share board | MIRO_SHARE_BOARD | board_id, emails, role |\n| Get members | MIRO_GET_BOARD_MEMBERS | board_id |\n| Get connectors | MIRO_GET_CONNECTORS2 | board_id |\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,193,553,"2026-05-16 13:28:51",{"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},"59b13783-0765-43ff-b340-8a18e020d080","1.0.0","miro-automation.zip",3333,"uploads\u002Fskills\u002Fb4821e92-affa-4140-ad43-093dfcc7ab81\u002Fmiro-automation.zip","12c7412f392da1c0763b65bde79510044d7209377838bd6a871b2b950d39df82","[{\"path\":\"SKILL.md\",\"isDirectory\":false,\"size\":8130}]",{"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]