From RexyMCP
Dispatches a phase to a local-LLM executor via the execute_phase MCP tool. Use after an architect has drafted a phase doc and you are ready to run it.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rexymcp:dispatch <phase><phase>sonnetThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill is **thin glue** around the `execute_phase` MCP tool. It does not
This skill is thin glue around the execute_phase MCP tool. It does not
review, does not re-dispatch, does not decide escalation levers. It invokes
the executor, surfaces the result, and suggests the next step. Each step is
a user gate.
Before any action:
<repo>/docs/dev/NEXT.md to confirm the active phase pointer. If it
says "none," there is no active phase — tell the user and stop.<phase> from the argument — it may be
a short id like phase-01 or a full path). Confirm its Status: line is
todo or in-progress. todo = fresh first dispatch; in-progress =
re-dispatch after a bounce or escalation refinement (the executor reads
the phase doc + any bug docs + the Update Log's Notes-for-executor block
and continues). If it is review or done, tell the user the phase is
not dispatchable in its current state and stop.<repo>/rexymcp.toml to confirm bootstrap is complete (the
[executor] and [commands] sections are present). If missing, point the
user at /rexymcp:architect to bootstrap first.The repo root is <repo> — resolve it from CLAUDE_PROJECT_DIR, ANTIGRAVITY_PROJECT_DIR, or the
nearest directory containing the milestone layout (docs/dev/milestones/).
Invoke the executor_health MCP tool (no args, or pass base_url if the
user supplied an override from rexymcp.toml). If the endpoint is
unreachable, surface the error to the user and stop. Do not invoke
execute_phase against a dead endpoint.
Example healthy response: {"status": "ok", "model": "qwen-32b", ...}
Example unhealthy response: connection refused, timeout, or 5xx.
Call the execute_phase MCP tool with these arguments:
phase_doc_path: the absolute path to the phase doc. Resolve from the
<phase> argument using the milestone convention:
docs/dev/milestones/M<n>-<slug>/phase-<nn>-<slug>.md.repo_path: the target repo root (from CLAUDE_PROJECT_DIR, ANTIGRAVITY_PROJECT_DIR, or the
client's workspace roots).model (optional): if the user supplied a model override, pass it here.The executor will run the phase. The agent's client interface (Claude Code or Google Antigravity) surfaces MCP progress notifications to the user automatically — you do not need to manage them. The user will see progress as the executor works.
When PhaseResult.status == "complete", surface the result summary to the
user:
PhaseResult.files_changedlog_path for drill-down via /rexymcp:review or the
executor_log_tail / get_turn toolsSuggest the next step: "Run /rexymcp:review <phase> to verify against the
Definition of Done."
Do not review here — that is a separate skill with a separate verdict.
When PhaseResult.status == "hard_fail", a briefing is present. Surface
its fields to the user:
briefing.one_linebriefing.current_blockerbriefing.what_was_tried (list)briefing.diagnosticsSuggest the next step: "Run /rexymcp:escalate <phase> to decide whether to
refine and re-dispatch, or take over."
Do not decide the escalation lever here — that is the escalate skill's job.
When PhaseResult.status == "budget_exceeded", the shape is the same as
hard_fail — a briefing is present. Surface the same fields and suggest
the same next step: /rexymcp:escalate <phase>.
/rexymcp:review./rexymcp:escalate.npx claudepluginhub ryanczak/rexymcp --plugin rexymcpBootstraps rexyMCP projects, designs work, and authors phase docs for the architect/executor workflow split. Use when setting up a new target repo or drafting the next milestone phase.
Executes implementation plans by dispatching tasks to implementer and reviewer subagents. Tracks progress per-task and coordinates sequential phases.
Executes individual phases of implementation plans as autonomous background sub-agents, performing pre-flight checks, file changes, and automated verifications.