From exarchos
Dispatches implementation tasks to subagents using a plan, then auto-chains to review. Also supports --fixes and --pr-fixes modes for addressing issues.
How this command is triggered — by the user, by Claude, or both
Slash command
/exarchos:delegateFiles this command reads when invoked
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Delegate Delegate tasks for: "$ARGUMENTS" ## Workflow Position Auto-invokes `/exarchos:review` after tasks complete (or `/exarchos:synthesize` for `--pr-fixes` mode). ## Invocation Modes | Flag | Source | Use Case | |------|--------|----------| | (none) | Implementation plan | Initial task delegation | | `--fixes` | Review issues | Address spec/quality failures | | `--pr-fixes` | PR comments | Address human review feedback | ## Skill References Follow the delegation skill for full process details: `@skills/delegation/SKILL.md` Supporting references: - Git worktrees: `@skills/git...
Delegate tasks for: "$ARGUMENTS"
/exarchos:ideate → [CONFIRM] → /exarchos:plan → /exarchos:delegate → /exarchos:review → /exarchos:synthesize → [CONFIRM] → merge
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ │
│ │
ON FAIL ──────┤ │
--pr-fixes ───┴────────────────────────────────────┘
Auto-invokes /exarchos:review after tasks complete (or /exarchos:synthesize for --pr-fixes mode).
| Flag | Source | Use Case |
|---|---|---|
| (none) | Implementation plan | Initial task delegation |
--fixes | Review issues | Address spec/quality failures |
--pr-fixes | PR comments | Address human review feedback |
Follow the delegation skill for full process details: @skills/delegation/SKILL.md
Supporting references:
@skills/git-worktrees/SKILL.md@skills/delegation/references/implementer-prompt.md@skills/delegation/references/fixer-prompt.md@skills/delegation/references/fix-mode.md@skills/delegation/references/pr-fixes-mode.md@skills/delegation/references/parallel-strategy.mdBefore delegating, check task status:
status == "complete"For every task subagent dispatch (including parallel waves), emit a
task.assigned event before invoking the subagent. Without this event,
the rehydration projection's taskProgress is silently empty (tracked by
#1179 / #1180; see [memory: feedback_orchestrator_task_assigned_emission]).
mcp__plugin_exarchos_exarchos__exarchos_event with:
action: "append"
stream: "<featureId>"
event: {
type: "task.assigned",
data: {
taskId: "<task-id-from-plan>",
title: "<task title>",
branch: "<task-branch-name>",
worktree: "<absolute-worktree-path>",
assignee: "<subagent-identifier>"
}
}
This applies to all three modes (normal, --fixes, --pr-fixes).
After all delegated tasks complete, auto-continue immediately (no user confirmation needed).
mcp__plugin_exarchos_exarchos__exarchos_workflow with
action: "transition", featureId: <featureId>, target: "review".
Then invoke Skill({ skill: "exarchos:review", args: "$STATE_FILE" }).mcp__plugin_exarchos_exarchos__exarchos_workflow with
action: "transition", featureId: <featureId>, target: "synthesize".
Then invoke Skill({ skill: "exarchos:synthesize", args: "$PR_URL" }).Never set the phase via action: "update" — the runtime rejects phase
mutation inside updates per servers/exarchos-mcp/src/workflow/tools.update.test.ts
("non-phase mutation only"). Phase set must be via action: "transition".
This is NOT a human checkpoint. State is saved automatically for recovery after context compaction.
npx claudepluginhub lvlup-sw/exarchos/implementExecutes an implementation plan using parallel devcore:programmer subagents. Parses plan-path or description, partitions tasks by file ownership and dependencies, dispatches via Task tool.
/comPACTDispatches concurrent specialists (backend, frontend, database, etc.) for self-contained tasks via shorthands, creating agent sub-tasks in a hierarchy and monitoring completion.
/sc-taskExecutes complex development tasks via intelligent analysis, multi-agent delegation to MCP servers and personas, workflow coordination, validation, and optimization.
/delegateGenerates Codex prompt for code/experiment tasks from project context files, confirms plan with user, displays new-terminal execution command, polls agent_handoff.md for results, and prompts next steps.
/delegateOrchestrates complex tasks: decomposes into agent waves/tasks, plans execution, awaits user approval, then executes via subagents or teams.
/delegateDelegates a task to a named altana harness preset, runs it with optional prompt template and write access, then surfaces a structured JSON result with status, duration, response, and log path.