← 返回 Skills 市场
hith3sh

Mural

作者 Jay · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
33
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install mural
功能描述
Mural API integration with managed OAuth for collaborative whiteboard automation. Browse workspaces, rooms, murals, and templates. Create sticky notes, searc...
使用说明 (SKILL.md)

Mural

Mural

Mural is a collaborative whiteboard platform for visual thinking and team collaboration. This integration provides managed OAuth through ClawLink, so you can browse workspaces, rooms, murals, and widgets without handling API keys or tokens yourself.

Setup in 3 Steps

Step 1: Install Step 2: Pair Account Step 3: Connect Mural
Install Pair App-specific connection GIF coming soon
Run the install command in OpenClaw Sign in and approve the device Open the dashboard and connect Mural

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│   Mural API      │
│   (User Chat)   │     │   (OAuth)    │     │                  │
└─────────────────┘     └──────────────┘     └──────────────────┘

Install

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Quick Start

List your workspaces and browse murals:

clawlink_execute_tool --integration mural --tool mural_get_workspaces

Search for a specific mural by name:

clawlink_execute_tool --integration mural --tool mural_search_murals --args '{"query": "sprint retro", "workspaceId": "ws-123"}'

Add a sticky note to a mural:

clawlink_execute_tool --integration mural --tool mural_create_sticky_note --args '{"muralId": "mur-456", "stickies": [{"x": 100, "y": 200, "text": "Action item: Update docs"}]}'

Authentication

Mural uses OAuth 2.0 managed by ClawLink. No API keys are needed. When you connect Mural through the ClawLink dashboard, you authorize access via a standard OAuth login flow. The connection is stored securely and refreshed automatically.

Connect at: https://claw-link.dev/dashboard?add=mural

Connection Management

List connections:

clawlink_list_integrations

Verify connection:

clawlink_execute_tool --integration mural --tool mural_get_current_user

Reconnect: If a connection expires, visit the dashboard URL above and reconnect Mural.

Security & Permissions

  • Read operations (browsing workspaces, rooms, murals, widgets, templates, tags) are safe and require no confirmation.
  • Write operations (creating sticky notes) modify mural content and require explicit confirmation before execution.
  • All operations respect the permissions of the authenticated Mural user.

Tool Reference

User & Authentication

Tool Description Mode
mural_authorization_request Initiate OAuth 2.0 authorization process Read
mural_get_current_user Retrieve authenticated user profile information Read

Workspace Operations

Tool Description Mode
mural_get_workspace Retrieve details of a specific workspace by ID Read
mural_get_workspaces List all workspaces the authenticated user belongs to Read

Room Operations

Tool Description Mode
mural_get_room Retrieve details of a specific room by ID Read
mural_list_rooms List all rooms within a workspace Read
mural_list_open_rooms List discoverable open rooms in a workspace Read
mural_search_rooms Search rooms within a workspace by name or description Read
mural_list_room_users List members and guests for a room Read

Mural Operations

Tool Description Mode
mural_list_room_murals List all murals within a room Read
mural_list_workspace_murals List all murals in a workspace owned or joined by the user Read
mural_list_recent_murals List recently opened murals in a workspace Read
mural_search_murals Search murals within a workspace by query text Read
mural_create_sticky_note Create one or more sticky notes on a mural Write
mural_get_mural_widgets Retrieve all widgets within a specified mural Read
mural_get_files_for_mural Retrieve file widgets attached to a mural Read

Folder Operations

Tool Description Mode
mural_list_folders List all folders within a room Read

Template Operations

Tool Description Mode
mural_list_templates Retrieve all default Mural templates Read
mural_list_workspace_templates List default and custom templates for a workspace Read
mural_list_recent_templates Retrieve recently used templates in a workspace Read
mural_search_templates Search templates within a workspace by name or keyword Read

Tag Operations

Tool Description Mode
mural_list_tags Retrieve all tags in a mural Read

Code Examples

List workspaces and get murals:

{
  "tool": "mural_get_workspaces",
  "args": {}
}

Search for murals containing "roadmap":

{
  "tool": "mural_search_murals",
  "args": {
    "query": "roadmap",
    "workspaceId": "workspace-uuid-here"
  }
}

Add sticky notes to a mural:

{
  "tool": "mural_create_sticky_note",
  "args": {
    "muralId": "mural-uuid-here",
    "stickies": [
      {"x": 100, "y": 200, "text": "First note"},
      {"x": 300, "y": 400, "text": "Second note", "shape": "circle"}
    ]
  }
}

Get all widgets in a mural:

{
  "tool": "mural_get_mural_widgets",
  "args": {
    "muralId": "mural-uuid-here"
  }
}

Browse room members:

{
  "tool": "mural_list_room_users",
  "args": {
    "roomId": "room-uuid-here"
  }
}

Discovery Workflow

  1. Call clawlink_list_integrations to confirm mural is connected.
  2. Call clawlink_list_tools --integration mural to see the live catalog.
  3. Start with mural_get_workspaces to discover available workspaces.
  4. Use mural_list_rooms to navigate rooms within a workspace.
  5. Use mural_list_room_murals or mural_search_murals to find specific murals.

Execution Workflow

Read Flow:
  get_workspaces → get_room / list_rooms → list_room_murals → get_mural_widgets

Write Flow:
  get_workspaces → search_murals → create_sticky_note (confirm required)

Notes

  • Sticky notes require proper x/y coordinates. Always provide a direct array of objects for the stickies parameter, not strings or nested objects.
  • Workspaces, rooms, and murals follow a hierarchy: Workspace > Room > Mural. Navigate top-down.
  • The mural_search_murals tool returns murals the user owns or is a member of, not all murals in the workspace.

Error Handling

Status / Error Meaning
401 Unauthorized OAuth token expired; reconnect Mural from the dashboard
403 Forbidden User lacks access to the requested workspace, room, or mural
404 Not Found Invalid workspace, room, or mural ID
429 Too Many Requests Rate limit exceeded; retry after a short delay

Troubleshooting

Tools Not Visible

Run clawlink_list_tools --integration mural to verify the integration is active. If empty, reconnect at https://claw-link.dev/dashboard?add=mural.

Invalid Tool Call

Ensure you pass valid UUIDs for workspaceId, roomId, and muralId. These are obtained from parent-level listing tools.

Sticky Note Creation Fails

Verify the stickies parameter is a flat array of objects with x, y, and text fields. Do not wrap in extra objects or pass as strings.

Resources


Powered by ClawLink -- an integration hub for OpenClaw

ClawLink Logo

安全使用建议
Before installing, make sure you trust ClawLink to broker OAuth access to your Mural account. The skill is purpose-aligned, but it can read collaboration content available to your account and can add sticky notes when you confirm a write action.
能力标签
requires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
The stated purpose is Mural workspace, room, mural, template, and sticky-note automation, and the documented capabilities match that purpose.
Instruction Scope
Runtime instructions are scoped to Mural tools exposed through ClawLink; write behavior is limited to creating sticky notes and is disclosed as requiring explicit confirmation.
Install Mechanism
Installation requires the separate ClawLink plugin, enabling it in OpenClaw, and restarting the gateway; this is disclosed and coherent with the managed OAuth integration model.
Credentials
The skill can access Mural collaboration data visible to the authenticated user, including rooms, murals, widgets, files, tags, templates, and room users; that access is expected for the integration but may include sensitive business content.
Persistence & Privilege
OAuth tokens are handled and refreshed by ClawLink rather than embedded in the skill; users should understand they are authorizing a third-party integration broker to maintain the connection.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install mural
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /mural 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Mural skill v1.0.0 – Initial release - Integrates Mural collaborative whiteboard API with managed OAuth via ClawLink. - Browse and search workspaces, rooms, murals, widgets, templates, and tags. - Create sticky notes directly on murals (write operations require confirmation). - Streamlined authentication: connect accounts via the ClawLink dashboard, no API keys required. - Includes detailed instructions, tool reference, and troubleshooting for seamless setup and usage.
元数据
Slug mural
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Mural 是什么?

Mural API integration with managed OAuth for collaborative whiteboard automation. Browse workspaces, rooms, murals, and templates. Create sticky notes, searc... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 33 次。

如何安装 Mural?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install mural」即可一键安装,无需额外配置。

Mural 是免费的吗?

是的,Mural 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Mural 支持哪些平台?

Mural 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Mural?

由 Jay(@hith3sh)开发并维护,当前版本 v1.0.0。

💬 留言讨论