ソース情報
- リポジトリ
- yofine/Mexus
- ソースの最終更新活動
- 2026年5月8日 18:11
- 検出された SKILL.md の言語
- 英語
- スター
- 86
- フォーク
- 6
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/yofine/Mexus --skill dispatchコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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.
SOC 職業分類に基づく
SKILL.md を表示中
| 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.