Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

miro-sdkMiro SDK 搜索

Agent Skill

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

总安装

8,495

周安装

347

GitHub Stars

公开资料未说明

下载量

2,748
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:miro-sdk(Miro SDK 搜索)
来源仓库:https://github.com/bigbubbaagent-bot/miro-sdk
安装命令:
openclaw skills install miro-sdk
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install miro-sdk

简介

提供完整 Miro Web SDK 参考,涵盖板、形状与事件 API。

  • 适用于插件开发与桌面应用集成,扩展 Miro 功能边界。
  • 安装命令:openclaw skills install miro-sdk,来源仓库:https://github.com/bigbubbaagent-bot/miro-sdk。
  • 使用前请阅读官方文档并测试沙箱环境,确保兼容性与稳定性。
  • 涉及 DOM 操作与实时通信,需注意性能优化与错误处理机制。

SKILL.md

name
miro-sdk
description
Complete Miro Web SDK reference for building web plugins and desktop applications. Covers setup, core APIs (boards, shapes, text, items, selections, events), authentication, real-time collaboration, examples in TypeScript/JavaScript, best practices, and error handling.

Miro Web SDK

The Miro Web SDK enables you to build web plugins that extend Miro's functionality. Create custom tools, automate workflows, and integrate external data directly into Miro boards.

Quick Start

Install SDK:

npm install @mirohq/websdk-cli @mirohq/miro-webplugin

Create Plugin:

npm create @mirohq/websdk-cli my-plugin
cd my-plugin
npm start

Hello World Plugin:

import { Board } from '@mirohq/miro-webplugin';

miro.onReady(async () => {
  console.log('Plugin ready!');
  
  // Get current board
  const board = await miro.board.getInfo();
  console.log('Board name:', board.name);
  
  // Listen for shape creation
  miro.board.events.on('item:create', (event) => {
    console.log('New item:', event.data);
  });
});

Core Capabilities

1. Board Interaction

  • Get board information (name, owner, size)
  • Listen to real-time events (item creation, updates, deletions)
  • Manage board selection and viewport
  • Access board history and undo/redo

2. Create Items

  • Shapes (rectangles, circles, diamonds, etc.)
  • Text and rich text formatting
  • Images and embeds
  • Sticky notes and cards
  • Frames and groups

3. Manipulate Items

  • Move, resize, rotate items
  • Change styling (colors, opacity, fonts)
  • Update content and properties
  • Apply connectors between shapes
  • Delete items

4. Selection & Interaction

  • Get selected items
  • Listen to selection changes
  • Programmatically select items
  • Multi-select operations

5. User Interaction

  • Viewport and zoom control
  • Notification system
  • Modal dialogs
  • Context menus
  • Keyboard shortcuts

6. Collaboration Features

  • Real-time sync with other users
  • User presence indicators
  • Shared selections
  • Live editing

7. Data Management

  • Metadata and custom properties
  • Board-level storage
  • Plugin configuration
  • Event tracking

8. Advanced Features

  • Batch operations (bulk create/update)
  • Search and filtering
  • Viewport navigation
  • Animation support
  • Performance optimization

SDK Platforms

Web Plugin

Browser-based plugin running inside Miro app

Install:

npm install @mirohq/miro-webplugin

Use:

import { Board, Ui } from '@mirohq/miro-webplugin';

// Access board
const board = await miro.board.getInfo();

// Create UI
miro.ui.openPanel({
  url: 'panel.html'
});

Desktop App

Standalone desktop application using Electron

Install:

npm install @mirohq/miro-desktop

Supported Platforms:

  • macOS
  • Windows
  • Linux

Architecture

Plugin Structure

my-plugin/
├── src/
│   ├── index.ts          # Main plugin code
│   ├── panel.html        # UI panel
│   ├── panel.ts          # Panel logic
│   └── styles.css        # Styling
├── manifest.json         # Plugin metadata
├── package.json
└── tsconfig.json

Event Flow

User Action
  ↓
Browser/Electron
  ↓
Miro SDK
  ↓
Event Handler
  ↓
API Call
  ↓
Board Update
  ↓
Real-time Sync

Authentication

Web Plugin Auth

Uses implicit flow - user already logged into Miro

miro.onReady(async () => {
  // User automatically authenticated
  const user = await miro.currentUser.get();
  console.log('Current user:', user.name);
});

Scopes

Define what your plugin can do:

{
  "requiredScopes": [
    "board:read",
    "board:write",
    "identity:read"
  ]
}

Available Scopes:

  • board:read - Read board data
  • board:write - Create/edit items
  • board:history - Access history
  • identity:read - Get current user info

Reference Files

See detailed documentation:

  • references/setup-installation.md - Project setup and installation
  • references/core-apis.md - Complete SDK API reference
  • references/authentication.md - Auth patterns and scopes
  • references/examples.md - TypeScript/JavaScript code examples
  • references/best-practices.md - Performance, security, reliability
  • references/error-handling.md - Error types and handling strategies

API Overview

Core Objects

// Board
miro.board.getInfo()
miro.board.getAllItems()
miro.board.createShape(shape)
miro.board.getSelection()
miro.board.events

// Items
item.move(deltaX, deltaY)
item.resize(width, height)
item.update(updates)
item.delete()

// User
miro.currentUser.get()

// UI
miro.ui.openPanel()
miro.ui.openModal()
miro.ui.notifyWithButton()

// Viewport
miro.board.viewport.zoomIn()
miro.board.viewport.scrollTo()

Events

// Item events
miro.board.events.on('item:create', (event) => {})
miro.board.events.on('item:update', (event) => {})
miro.board.events.on('item:delete', (event) => {})

// Selection events
miro.board.events.on('selection:change', (event) => {})

// User events
miro.board.events.on('user:join', (event) => {})
miro.board.events.on('user:leave', (event) => {})

Version History

Latest: 2.0+ Support: Web plugins, Desktop apps, Collaborative features

Getting Help

  • Documentation: https://developers.miro.com/docs
  • API Reference: https://developers.miro.com/reference
  • GitHub: https://github.com/miroapp/api-clients
  • Community: https://community.miro.com
  • Support: https://support.miro.com

Tutorials

  • Build your first plugin
  • Create interactive shapes
  • Real-time collaboration
  • Data integration
  • Performance optimization
  • Testing and debugging

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

92.93%
按下载量换算2,554

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills