ワンクリックで
dispatch
Ensure a real Mission Agent Pane exists for an agent in the active Mission.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Ensure a real Mission Agent Pane exists for an agent in the active Mission.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when showing a Web board for a Markdown-only Agent Team Mission without a Mexus server.
Use when opening a RoundTable proposal in the active Markdown-backed Agent Team Mission.
Use when executing the next tasks from a Markdown-backed Agent Team kanban with Claude Code or Codex background Agents.
Use when starting or continuing a Markdown-only Agent Team Mission with Claude Code or Codex background Agents and no Mexus server.
Use when summarizing a Markdown-only Agent Team Mission from local files.
Use when stopping the local Web board for a Markdown-only Agent Team Mission.
| name | dispatch |
| description | Ensure a real Mission Agent Pane exists for an agent in the active Mission. |
| argument-hint | <agent-name> |
/dispatchUse this skill when the user invokes /dispatch <agent-name>.
This command opens Panes only. It does not write kanban, does not decide assignments, and does not execute the target Agent's task inline.
Validate that <agent-name> is present.
Run mexus mission active --json and parse the active Mission name from the JSON response. If there is no active Mission, fail with:
No active Mission. Run `/mission-activate <name>` first.
Run mexus pane list --mission <active> --json. If any returned Pane has mission.agentName === <agent-name>, print:
Pane already exists for <agent-name> (id: <id>, status: <status>). The Mission Inbox pipeline will deliver kanban tasks automatically.
Then exit without creating another Pane.
Read agent-team/missions/<active>/agents.md. Extract the section that begins with ## Agent: <agent-name> and ends before the next ## Agent: heading or the end of the file. Within that block, extract the activation prompt. Use a simple section regex or direct Markdown section extraction; do not parse kanban. If the section is missing, fail with:
Agent <agent-name> not found in agents.md roster
Read .nexus/config.yaml. If it contains mission_default_cli_agent, use that value as <cli-type>. If the field is missing or empty, use claudecode.
Run:
mexus pane create --name "<agent-name>" --agent <cli-type> --workdir "$PWD" --mission <active> --mission-agent <agent-name> --mission-role mission-agent --task "<extracted-activation-prompt>"
Print the created Pane id. Mention that the Mission Inbox pipeline will deliver matching kanban tasks automatically.