← 返回 Skills 市场
jolestar

Board Webmcp

作者 jolestar · GitHub ↗ · v0.1.1 · MIT-0
cross-platform ✓ 安全检测通过
173
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install board-webmcp
功能描述
Connect to the native board demo through local-mcp and one fixed UXC link. Use when the user wants to inspect or edit the shared board at board.holon.run or...
使用说明 (SKILL.md)

Board WebMCP

Use this skill to operate the native board demo through @webmcp-bridge/local-mcp.

Prerequisites

  • uxc is installed and available in PATH.
  • npx is installed and available in PATH.
  • Network access to https://board.holon.run.
  • On a fresh machine, or under an isolated HOME, install Playwright browsers first with npx playwright install.
  • For local board development, point the setup script at http://127.0.0.1:4173.

Core Workflow

  1. Ensure the fixed board link exists:
    • command -v board-webmcp-cli
    • if missing or pointed at the wrong URL, run skills/board-webmcp/scripts/ensure-links.sh
  2. Inspect the bridge and tool schema before calling tools:
    • board-webmcp-cli -h
    • board-webmcp-cli nodes.list -h
    • board-webmcp-cli nodes.upsert -h
  3. Read current board state:
    • non-collaborative automation: board-webmcp-cli nodes.list, board-webmcp-cli edges.list
    • collaborative visible session:
      • board-webmcp-cli bridge.session.mode.set '{"mode":"headed"}'
      • board-webmcp-cli bridge.open
      • board-webmcp-cli nodes.list
      • board-webmcp-cli edges.list
  4. Apply updates with structured inputs:
    • board-webmcp-cli diagram.export format=json
    • collaborative visible session should keep the same runtime in headed
    • board-webmcp-cli nodes.upsert '{"nodes":[{"label":"Fraud Service","kind":"service"}]}'
    • board-webmcp-cli edges.upsert '{"edges":[{"sourceNodeId":"gateway","targetNodeId":"orders","protocol":"grpc"}]}'
    • board-webmcp-cli layout.apply mode=layered
    • board-webmcp-cli diagram.export format=json
  5. When a human is editing or reviewing the same board live:
    • check current state with board-webmcp-cli bridge.session.status
    • if needed, switch to headed with board-webmcp-cli bridge.session.mode.set '{"mode":"headed"}'
    • board-webmcp-cli bridge.open
    • keep all reads and writes on board-webmcp-cli for that same collaborative session
    • board-webmcp-cli selection.get
    • board-webmcp-cli bridge.close
    • if the human closed the board window manually, the headed owner session has ended; run board-webmcp-cli bridge.open again to start a new headed session on the same profile

Default Target

The default public target is:

https://board.holon.run

The default board profile path is:

~/.uxc/webmcp-profile/board

Use the helper script to refresh the link for the public deployment:

skills/board-webmcp/scripts/ensure-links.sh

Use the helper script to point the link at local development instead:

skills/board-webmcp/scripts/ensure-links.sh --url http://127.0.0.1:4173

If the bridge fails to start on a fresh machine or inside an isolated HOME, install Playwright browsers in that environment first:

npx playwright install

Guardrails

  • board.holon.run is a shared demo. Writes are visible on the board surface and persisted in browser storage for that profile.
  • Prefer explicit bridge.session.mode.set over relying on a new launcher invocation to change runtime mode.
  • Before collaborative editing, confirm the runtime is actually headed.
  • If the human closes that window manually, the headed owner session ends. The next board-webmcp-cli bridge.open starts a new headed session on the same profile.
  • Keep the board profile isolated from other sites.
  • Use JSON output for automation. Do not depend on human-formatted text output.

References

  • Common command patterns:
    • references/usage-patterns.md
  • Link creation helper:
    • scripts/ensure-links.sh
安全使用建议
This skill is coherent with its stated purpose, but review and take these precautions before running it: 1) The SKILL.md and scripts require 'uxc' and 'npx' (and optionally Playwright); the registry metadata incorrectly omitted those requirements—install those tools first. 2) ensure-links.sh uses 'npx' to fetch @webmcp-bridge/local-mcp at runtime; prefer to inspect or pin that package (or vendor it locally) before allowing dynamic npx installs. 3) The script creates a profile directory (~/.uxc/webmcp-profile/board) and registers a daemon/link which may persist and run in the background—run it in an isolated HOME or test environment if you want to avoid side effects. 4) If you need stronger assurance, run the included scripts/validate.sh and manually inspect the npm package source for @webmcp-bridge/local-mcp before use. 5) Do not provide any unrelated credentials; this skill does not require them.
功能分析
Type: OpenClaw Skill Name: board-webmcp Version: 0.1.1 The board-webmcp skill facilitates interaction with a web-based diagramming tool (board.holon.run) via a Model Context Protocol (MCP) bridge. It uses a setup script (scripts/ensure-links.sh) to create a local CLI tool (board-webmcp-cli) that executes a specific NPM package (@webmcp-bridge/local-mcp) and manages a dedicated browser profile in ~/.uxc/webmcp-profile/board. The code and instructions are consistent with the stated purpose of inspecting and editing board nodes and edges, with no evidence of malicious intent, data exfiltration, or unauthorized system access.
能力评估
Purpose & Capability
The skill's name/description (connect to board via local-mcp/UXC) matches the included scripts and SKILL.md. However, registry metadata lists no required binaries/env, while the SKILL.md and scripts clearly require 'uxc' and 'npx' (and recommend Playwright browsers). This mismatch is an implementation inconsistency but not evidence of malicious intent.
Instruction Scope
Instructions are focused on creating/updating a UXC link and using board-webmcp-cli to read/write board state. They instruct the agent/user to run scripts/ensure-links.sh which writes a profile under $HOME (~/.uxc/webmcp-profile/board) and registers a daemon link. The skill does not ask for unrelated files or credentials, but it does create persistent user data and launches/links to an npm package at runtime.
Install Mechanism
There is no formal install spec (instruction-only). At runtime the helper uses npx to invoke @webmcp-bridge/local-mcp, which will dynamically fetch and run code from the npm registry. Using npx is expected for this use-case but increases risk vs. a pinned or audited binary because it downloads code at execution time.
Credentials
The skill does not request credentials or sensitive env vars. It does write to $HOME and uses optional env overrides (WEBMCP_LOCAL_MCP_COMMAND, WEBMCP_DAEMON_IDLE_TTL). No unrelated service keys are requested, so the requested environment access is proportionate to its purpose.
Persistence & Privilege
The helper script registers a UXC link and (by default) a daemon profile under the user's home directory and can create a persistent background runtime (--daemon-exclusive profile). The skill itself is not always: true and will not auto-install unless run, but running the script can create persistent background behavior the user should be aware of.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install board-webmcp
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /board-webmcp 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.1
Align skills with explicit bridge presentation mode, single-link site commands, and new X/Google adapter workflows.
v0.1.0
Initial publish from webmcp-bridge repository.
元数据
Slug board-webmcp
版本 0.1.1
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 2
常见问题

Board Webmcp 是什么?

Connect to the native board demo through local-mcp and one fixed UXC link. Use when the user wants to inspect or edit the shared board at board.holon.run or... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 173 次。

如何安装 Board Webmcp?

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

Board Webmcp 是免费的吗?

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

Board Webmcp 支持哪些平台?

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

谁开发了 Board Webmcp?

由 jolestar(@jolestar)开发并维护,当前版本 v0.1.1。

💬 留言讨论