aAAaqwq/AGI-Super-Team/skills/miro-automation/SKILL.md
miro-automation
Automate Miro tasks via Rube MCP (Composio): boards, items, sticky notes, frames, sharing, connectors. Always search tools first for current schemas.
- Source repository stars
- 89
- Declared platforms
- 0
- Static risk flags
- 0
- Last source update
- 2026-08-18
- Source checked
- 2026-08-26
Decision brief
What it does: where it fits
Automate Miro whiteboard operations through Composio's Miro toolkit via Rube MCP.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/aAAaqwq/AGI-Super-Team --skill "skills/miro-automation"Inspect the Agent Skill "miro-automation" from https://github.com/aAAaqwq/AGI-Super-Team/blob/3a4f3b9309c9b7e1525088c2d4cca243bc241daf/skills/miro-automation/SKILL.md at commit 3a4f3b9309c9b7e1525088c2d4cca243bc241daf. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
Verify Rube MCP is available by confirming RUBESEARCHTOOLS respondsCall RUBEMANAGECONNECTIONS with toolkit miroIf connection is not ACTIVE, follow the returned auth link to complete Miro OAuth - 02
Prerequisites
Rube MCP must be connected (RUBESEARCHTOOLS available)
Rube MCP must be connected (RUBESEARCHTOOLS available)Active Miro connection via RUBEMANAGECONNECTIONS with toolkit miroAlways call RUBESEARCHTOOLS first to get current tool schemas - 03
Core Workflows
When to use: User wants to find boards or get board details
MIROGETBOARDS2 - List all accessible boards [Required]MIROGETBOARD - Get detailed info for a specific board [Optional]query: Search term to filter boards by name - 04
1. List and Browse Boards
When to use: User wants to find boards or get board details
MIROGETBOARDS2 - List all accessible boards [Required]MIROGETBOARD - Get detailed info for a specific board [Optional]query: Search term to filter boards by name - 05
2. Create Boards and Items
When to use: User wants to create a new board or add items to an existing board
MIROCREATEBOARD - Create a new empty board [Optional]MIROCREATESTICKYNOTEITEM - Add sticky notes to a board [Optional]MIROCREATEFRAMEITEM2 - Add frames to organize content [Optional]
Permission review
Static risk signals and limitations
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 92/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 89 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- aAAaqwq/AGI-Super-Team
- Skill path
- skills/miro-automation/SKILL.md
- Commit
- 3a4f3b9309c9b7e1525088c2d4cca243bc241daf
- License
- MIT
- Collected
- 2026-08-26
- Default branch
- main
View the original SKILL.md
Miro Automation via Rube MCP
Automate Miro whiteboard operations through Composio's Miro toolkit via Rube MCP.
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Miro connection via
RUBE_MANAGE_CONNECTIONSwith toolkitmiro - Always call
RUBE_SEARCH_TOOLSfirst to get current tool schemas
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLSresponds - Call
RUBE_MANAGE_CONNECTIONSwith toolkitmiro - If connection is not ACTIVE, follow the returned auth link to complete Miro OAuth
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. List and Browse Boards
When to use: User wants to find boards or get board details
Tool sequence:
MIRO_GET_BOARDS2- List all accessible boards [Required]MIRO_GET_BOARD- Get detailed info for a specific board [Optional]
Key parameters:
query: Search term to filter boards by namesort: Sort by 'default', 'last_modified', 'last_opened', 'last_created', 'alphabetically'limit: Number of results per page (max 50)offset: Pagination offsetboard_id: Specific board ID for detailed retrieval
Pitfalls:
- Pagination uses offset-based approach, not cursor-based
- Maximum 50 boards per page; iterate with offset for full list
- Board IDs are long alphanumeric strings; always resolve by search first
2. Create Boards and Items
When to use: User wants to create a new board or add items to an existing board
Tool sequence:
MIRO_CREATE_BOARD- Create a new empty board [Optional]MIRO_CREATE_STICKY_NOTE_ITEM- Add sticky notes to a board [Optional]MIRO_CREATE_FRAME_ITEM2- Add frames to organize content [Optional]MIRO_CREATE_ITEMS_IN_BULK- Add multiple items at once [Optional]
Key parameters:
name/description: Board name and description (for CREATE_BOARD)board_id: Target board ID (required for all item creation)data: Content object withcontentfield for sticky note textstyle: Styling object withfillColorfor sticky note colorposition: Object withxandycoordinatesgeometry: Object withwidthandheight
Pitfalls:
board_idis required for ALL item operations; resolve via GET_BOARDS2 first- Sticky note colors use hex codes (e.g., '#FF0000') in the
fillColorfield - Position coordinates use the board's coordinate system (origin at center)
- BULK create has a maximum items-per-request limit; check current schema
- Frame items require
geometrywith both width and height
3. Browse and Manage Board Items
When to use: User wants to view, find, or organize items on a board
Tool sequence:
MIRO_GET_BOARD_ITEMS- List all items on a board [Required]MIRO_GET_CONNECTORS2- List connections between items [Optional]
Key parameters:
board_id: Target board ID (required)type: Filter by item type ('sticky_note', 'shape', 'text', 'frame', 'image', 'card')limit: Number of items per pagecursor: Pagination cursor from previous response
Pitfalls:
- Results are paginated; follow
cursoruntil absent for complete item list - Item types must match Miro's predefined types exactly
- Large boards may have thousands of items; use type filtering to narrow results
- Connectors are separate from items; use GET_CONNECTORS2 for relationship data
4. Share and Collaborate on Boards
When to use: User wants to share a board with team members or manage access
Tool sequence:
MIRO_GET_BOARDS2- Find the board to share [Prerequisite]MIRO_SHARE_BOARD- Share the board with users [Required]MIRO_GET_BOARD_MEMBERS- Verify current board members [Optional]
Key parameters:
board_id: Board to share (required)emails: Array of email addresses to inviterole: Access level ('viewer', 'commenter', 'editor')message: Optional invitation message
Pitfalls:
- Email addresses must be valid; invalid emails cause the entire request to fail
- Role must be one of the predefined values; case-sensitive
- Sharing with users outside the organization may require admin approval
- GET_BOARD_MEMBERS returns all members including the owner
5. Create Visual Connections
When to use: User wants to connect items on a board with lines or arrows
Tool sequence:
MIRO_GET_BOARD_ITEMS- Find items to connect [Prerequisite]MIRO_GET_CONNECTORS2- View existing connections [Optional]
Key parameters:
board_id: Target board IDstartItem: Object withidof the source itemendItem: Object withidof the target itemstyle: Connector style (line type, color, arrows)
Pitfalls:
- Both start and end items must exist on the same board
- Item IDs are required for connections; resolve via GET_BOARD_ITEMS first
- Connector styles vary; check available options in schema
- Self-referencing connections (same start and end) are not allowed
Common Patterns
ID Resolution
Board name -> Board ID:
1. Call MIRO_GET_BOARDS2 with query=board_name
2. Find board by name in results
3. Extract id field
Item lookup on board:
1. Call MIRO_GET_BOARD_ITEMS with board_id and optional type filter
2. Find item by content or position
3. Extract item id for further operations
Pagination
- Boards: Use
offsetandlimit(offset-based) - Board items: Use
cursorandlimit(cursor-based) - Continue until no more results or cursor is absent
- Default page sizes vary by endpoint
Coordinate System
- Board origin (0,0) is at the center
- Positive X is right, positive Y is down
- Items positioned by their center point
- Use
position: {x: 0, y: 0}for center of board - Frames define bounded areas; items inside inherit frame position
Known Pitfalls
Board IDs:
- Board IDs are required for virtually all operations
- Always resolve board names to IDs via GET_BOARDS2 first
- Do not hardcode board IDs; they vary by account
Item Creation:
- Each item type has different required fields
- Sticky notes need
data.contentfor text - Frames need
geometry.widthandgeometry.height - Position defaults to (0,0) if not specified; items may overlap
Rate Limits:
- Miro API has rate limits per token
- Bulk operations preferred over individual item creation
- Use MIRO_CREATE_ITEMS_IN_BULK for multiple items
Response Parsing:
- Response data may be nested under
datakey - Item types determine which fields are present in response
- Parse defensively; optional fields may be absent
Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| List boards | MIRO_GET_BOARDS2 | query, sort, limit, offset |
| Get board details | MIRO_GET_BOARD | board_id |
| Create board | MIRO_CREATE_BOARD | name, description |
| Add sticky note | MIRO_CREATE_STICKY_NOTE_ITEM | board_id, data, style, position |
| Add frame | MIRO_CREATE_FRAME_ITEM2 | board_id, data, geometry, position |
| Bulk add items | MIRO_CREATE_ITEMS_IN_BULK | board_id, items |
| Get board items | MIRO_GET_BOARD_ITEMS | board_id, type, cursor |
| Share board | MIRO_SHARE_BOARD | board_id, emails, role |
| Get members | MIRO_GET_BOARD_MEMBERS | board_id |
| Get connectors | MIRO_GET_CONNECTORS2 | board_id |
Frequently asked questions
What to verify before installation and use
What does the miro-automation source document cover?
Automate Miro whiteboard operations through Composio's Miro toolkit via Rube MCP.
How do I install miro-automation?
The source record exposes this install command: npx skills add https://github.com/aAAaqwq/AGI-Super-Team --skill "skills/miro-automation". Inspect the command and pinned source before running it.
Alternatives
Compare before choosing
davepoon/buildwithclaude
miro-automation
Automate Miro tasks via Rube MCP (Composio): boards, items, sticky notes, frames, sharing, connectors. Always search tools first for current schemas.
garrytan/gbrain
bulk-ingestion
End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.
alirezarezvani/claude-skills
app-store-optimization
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
citation-audit
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.