用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/yofine/mexus-agent-team --skill board命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when starting a new Markdown-only Agent Team Mission with Claude Code or Codex background Agents and no Mexus server.
Use when resuming an existing active Markdown-backed Agent Team Mission in a later Claude Code or Codex session.
Use when opening a RoundTable proposal in the active Markdown-backed Agent Team Mission.
基于 SOC 职业分类
正在显示 SKILL.md
| name | board |
| description | Use when showing a Web board for a Markdown-only Agent Team Mission without a Mexus server. |
| argument-hint | [--host <host>] [--public-host <host-or-ip>] [--port <port>] |
/mexus-team:boardUse this skill when the user invokes /mexus-team:board.
The board is read-only. It reads the current project's agent-team/ directory and does not require Mexus, A2A, pane state, or a server beyond the board process. By default it binds to 0.0.0.0 so it can be opened from another device on the same network.
Verify agent-team/ exists in the current project. If not, ask the user to run /mexus-team:mission "<request>" first.
Start the board:
node <plugin-root>/scripts/start-board.mjs --root "$PWD" --host 0.0.0.0
Check the script's exit code. On success it prints Agent Team board: <URL> after probing the board and API ports for up to 5 seconds. On failure it prints diagnostics (port in use, pnpm missing, agent-team/ missing, Vite crashed) and exits non-zero — surface those diagnostics to the user verbatim instead of claiming the board is up.
Print the externally reachable board URL only when the script confirmed the board is live.
If the printed IP is not reachable, rerun with an explicit public host:
node <plugin-root>/scripts/start-board.mjs --root "$PWD" --host 0.0.0.0 --public-host <host-or-ip>
The script reuses a board that is already running for this project: if .mexus-agent-team/board.json points at a live process it prints that board's URL instead of starting a second one.
agent-team/, not plugin reference files.--host 127.0.0.1 only when the user explicitly wants local-only access./mexus-team:status for a terminal summary.Ctrl+C.