skills$openclaw/miro
mrgoodb2.1k

by mrgoodb

miro – OpenClaw Skill

miro is an OpenClaw Skills integration for planning workflows. Manage Miro boards, sticky notes, and shapes via Miro API. Create collaborative whiteboards programmatically.

2.1k stars569 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026planning

Skill Snapshot

namemiro
descriptionManage Miro boards, sticky notes, and shapes via Miro API. Create collaborative whiteboards programmatically. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/miro
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/miro
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains miro in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
261 B
SKILL.md
1.7 KB
SKILL.md

name: miro description: Manage Miro boards, sticky notes, and shapes via Miro API. Create collaborative whiteboards programmatically. metadata: {"clawdbot":{"emoji":"🎨","requires":{"env":["MIRO_ACCESS_TOKEN"]}}}

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}
  }'
curl "https://api.miro.com/v2/boards/{board_id}/items" \
  -H "Authorization: Bearer $MIRO_ACCESS_TOKEN"
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install miro?

Run openclaw add @mrgoodb/miro in your terminal. This installs miro into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/miro. Review commits and README documentation before installing.