Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

miro-automationMiro 自动化

Agent Skill

miro-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

588

周安装

25

GitHub Stars

52

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:miro-automation(Miro 自动化)
来源仓库:https://github.com/aaaaqwq/claude-code-skills
仓库路径:skills/miro-automation
安装命令:
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill miro-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill miro-automation

简介

用于查找、检索和筛选相关信息。

  • 适合在关键词搜索、任务场景定位或来源线索核验时使用。
  • 可结合来源仓库和原始 README 继续核验具体用法。
  • 安装方式:github,通过 npx skills add 命令从 aaaaqwq/claude-code-skills 仓库添加。
  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。

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_CONNECTIONS with toolkit miro
  • Always call RUBE_SEARCH_TOOLS first 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.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit miro
  3. If connection is not ACTIVE, follow the returned auth link to complete Miro OAuth
  4. 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:

  1. MIRO_GET_BOARDS2 - List all accessible boards [Required]
  2. MIRO_GET_BOARD - Get detailed info for a specific board [Optional]

Key parameters:

  • query: Search term to filter boards by name
  • sort: Sort by 'default', 'last_modified', 'last_opened', 'last_created', 'alphabetically'
  • limit: Number of results per page (max 50)
  • offset: Pagination offset
  • board_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:

  1. MIRO_CREATE_BOARD - Create a new empty board [Optional]
  2. MIRO_CREATE_STICKY_NOTE_ITEM - Add sticky notes to a board [Optional]
  3. MIRO_CREATE_FRAME_ITEM2 - Add frames to organize content [Optional]
  4. 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 with content field for sticky note text
  • style: Styling object with fillColor for sticky note color
  • position: Object with x and y coordinates
  • geometry: Object with width and height

Pitfalls:

  • board_id is required for ALL item operations; resolve via GET_BOARDS2 first
  • Sticky note colors use hex codes (e.g., '#FF0000') in the fillColor field
  • 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 geometry with 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:

  1. MIRO_GET_BOARD_ITEMS - List all items on a board [Required]
  2. 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 page
  • cursor: Pagination cursor from previous response

Pitfalls:

  • Results are paginated; follow cursor until 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:

  1. MIRO_GET_BOARDS2 - Find the board to share [Prerequisite]
  2. MIRO_SHARE_BOARD - Share the board with users [Required]
  3. MIRO_GET_BOARD_MEMBERS - Verify current board members [Optional]

Key parameters:

  • board_id: Board to share (required)
  • emails: Array of email addresses to invite
  • role: 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:

  1. MIRO_GET_BOARD_ITEMS - Find items to connect [Prerequisite]
  2. MIRO_GET_CONNECTORS2 - View existing connections [Optional]

Key parameters:

  • board_id: Target board ID
  • startItem: Object with id of the source item
  • endItem: Object with id of the target item
  • style: 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 offset and limit (offset-based)
  • Board items: Use cursor and limit (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.content for text
  • Frames need geometry.width and geometry.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 data key
  • Item types determine which fields are present in response
  • Parse defensively; optional fields may be absent

Quick Reference

TaskTool SlugKey Params
List boardsMIRO_GET_BOARDS2query, sort, limit, offset
Get board detailsMIRO_GET_BOARDboard_id
Create boardMIRO_CREATE_BOARDname, description
Add sticky noteMIRO_CREATE_STICKY_NOTE_ITEMboard_id, data, style, position
Add frameMIRO_CREATE_FRAME_ITEM2board_id, data, geometry, position
Bulk add itemsMIRO_CREATE_ITEMS_IN_BULKboard_id, items
Get board itemsMIRO_GET_BOARD_ITEMSboard_id, type, cursor
Share boardMIRO_SHARE_BOARDboard_id, emails, role
Get membersMIRO_GET_BOARD_MEMBERSboard_id
Get connectorsMIRO_GET_CONNECTORS2board_id

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.4%
按下载量换算67

Claude

32.64%
按下载量换算67

Cursor

19.49%
按下载量换算40

Gemini CLI

8.66%
按下载量换算18

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills