miro-core-workflow-b

Featured

Manage Miro connectors, images, embeds, app cards, and document items via REST API v2. Use for visual workflows, embedding content, and building rich board layouts. Trigger with phrases like "miro connectors", "miro embed", "miro app card", "miro image upload", "connect miro items".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Miro Core Workflow B — Connectors, Embeds & Rich Items ## Overview Advanced item operations: connectors between items, image uploads, embedded content, app cards for custom integrations, and document items — all via the Miro REST API v2. ## Prerequisites - Completed `miro-core-workflow-a` (boards and basic items) - Access token with `boards:read` and `boards:write` scopes ## Connectors Connectors are lines that visually link two items on a board. They replaced "lines" from the v1 API. ### Create a Connector ```typescript // POST https://api.miro.com/v2/boards/{board_id}/connectors const connector = await miroFetch(`/v2/boards/${boardId}/connectors`, 'POST', { startItem: { id: startItemId, position: { x: 1.0, // 0.0–1.0 relative position on item boundary y: 0.5, // 0.0 = top/left, 1.0 = bottom/right }, // or use snapTo: 'right' | 'left' | 'top' | 'bottom' | 'auto' }, endItem: { id: endItemId, snapTo: 'left', }, captions: [ { content: 'depends on', position: 0.5, // 0.0–1.0 along the connector line textAlignVertical: 'top', // 'top' | 'middle' | 'bottom' }, ], shape: 'curved', // 'straight' | 'elbowed' | 'curved' style: { color: '#1a1a2e', fontSize: 12, strokeColor: '#1a1a2e', strokeWidth: 2, strokeStyle: 'normal', // 'normal' | 'dashed' | 'dotted' startStrokeCap: 'none', // 'none' | 'stealth' | 'diamond' | 'filled_diamond' | ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

miro-core-workflow-a

Manage Miro boards and items — create, read, update, delete boards, sticky notes, shapes, cards, frames, and tags via REST API v2. Trigger with phrases like "miro board management", "create miro board", "miro items CRUD", "miro sticky notes", "organize miro board".

2,266 Updated today
jeremylongshore
AI & Automation Featured

miro-hello-world

Create a minimal working Miro example with real board and item operations. Use when starting a new Miro integration, testing your setup, or learning the Miro REST API v2 item model. Trigger with phrases like "miro hello world", "miro example", "miro quick start", "first miro board", "create miro sticky note".

2,266 Updated today
jeremylongshore
AI & Automation Solid

miro-automation

Automate Miro tasks via Rube MCP (Composio): boards, items, sticky notes, frames, sharing, connectors. Always search tools first for current schemas.

2,987 Updated 4 days ago
davepoon
AI & Automation Featured

miro-migration-deep-dive

Execute major Miro migrations — migrate boards between teams/orgs, export board content to external systems, import data into Miro, and re-platform from competing whiteboard tools using REST API v2. Trigger with phrases like "migrate miro", "miro migration", "export miro boards", "import to miro", "miro data migration".

2,266 Updated today
jeremylongshore
AI & Automation Featured

miro-webhooks-events

Implement Miro REST API v2 webhooks with board subscriptions, event handling, and signature verification for real-time board change notifications. Trigger with phrases like "miro webhook", "miro events", "miro board subscription", "miro real-time", "miro notifications".

2,266 Updated today
jeremylongshore