--- name: board description: Use when showing a Web board for a Markdown-only Agent Team Mission without a Mexus server. argument-hint: "[--host ] [--public-host ] [--port ]" --- # `/mexus-skill:board` Use this skill when the user invokes `/mexus-skill: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. ## Steps 1. Verify `agent-team/` exists in the current project. If not, ask the user to run `/mexus-skill:team ""` first. 2. Start the board: ```bash node /scripts/start-board.mjs --root "$PWD" --host 0.0.0.0 ``` 3. Print the externally reachable board URL. If the printed IP is not reachable, rerun with an explicit public host: ```bash node /scripts/start-board.mjs --root "$PWD" --host 0.0.0.0 --public-host ``` ## Rules - Read the caller project's `agent-team/`, not plugin reference files. - Do not mutate Mission files from the board. - Use `--host 127.0.0.1` only when the user explicitly wants local-only access. - Use `/mexus-skill:team-status` for terminal summary. - Use `/mexus-skill:team-stop` to stop the board.