From mexus-team
Starts a read-only web board that displays the current project's agent-team/ directory for Markdown-only Agent Team Missions without a Mexus server.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mexus-team:board [--host <host>] [--public-host <host-or-ip>] [--port <port>][--host <host>] [--public-host <host-or-ip>] [--port <port>]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user invokes `/mexus-team:board`.
/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.npx claudepluginhub yofine/mexus-agent-team --plugin mexus-team-roundtableStarts a new Markdown-only Agent Team Mission for Claude Code or Codex background Agents without a Mexus server. Creates mission files, assigns agents, and starts a board.
Connects projects to Just Ship Board using /connect-board jsp_ token or checks connection status via project.json and bash scripts. Handles plugin mode with CLAUDE_PLUGIN_ROOT.
Orchestrates multi-agent development via cmux using 4-layer architecture (Master→Manager→Conductor→Agent). Manages tasks, spawns agents in git worktrees, monitors progress, collects results, and synchronizes via CLI and slash commands.