Agent skill
miro
Manage Miro boards, sticky notes, and shapes via Miro API. Create collaborative whiteboards programmatically.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/miro
Metadata
Additional technical details for this skill
- clawdbot
-
{ "emoji": "\ud83c\udfa8", "requires": { "env": [ "MIRO_ACCESS_TOKEN" ] } }
SKILL.md
Miro
Collaborative whiteboard platform.
Environment
export MIRO_ACCESS_TOKEN="xxxxxxxxxx"
List Boards
curl "https://api.miro.com/v2/boards" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN"
Create Board
curl -X POST "https://api.miro.com/v2/boards" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "Project Planning", "description": "Sprint planning board"}'
Get Board
curl "https://api.miro.com/v2/boards/{board_id}" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN"
Create Sticky Note
curl -X POST "https://api.miro.com/v2/boards/{board_id}/sticky_notes" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"data": {"content": "New idea!", "shape": "square"},
"position": {"x": 0, "y": 0},
"style": {"fillColor": "yellow"}
}'
Create Shape
curl -X POST "https://api.miro.com/v2/boards/{board_id}/shapes" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"data": {"shape": "rectangle", "content": "Task 1"},
"position": {"x": 100, "y": 100},
"geometry": {"width": 200, "height": 100}
}'
Get All Items on Board
curl "https://api.miro.com/v2/boards/{board_id}/items" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN"
Links
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?