From mutagen
Explicit-only skill. Resume a slice after a manual repair without manually re-running structural-check, update-queue, transition-active-slice, and dispatch-stage in sequence. Use when an in-flight slice was hand-repaired (an author dispatch wrote a partial artifact, the operator fixed the file on disk, and the queue should now resume as if the repair was the canonical author output). Invoke only when the user explicitly says $mutagen-resume.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mutagen:mutagen-resumeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The operator counterpart to `$mutagen-execute-next`. It does the four-step
The operator counterpart to $mutagen-execute-next. It does the four-step
manual recovery sequence in one call:
in_progress and clear the escalation
reason (--reset-status).structural-check).review and dispatch the review stage.bash "$MUTAGEN_ROOT/scripts/resume_after_escalation.sh" \
--slice-id <SLICE_ID> \
--host codex
Add --reset-status if the slice is currently escalated or blocked_retry
and you want to flip it back to in_progress as part of the resume.
Add --stage review to skip structural-check and go straight to review (use
this only when structural-check already passed before the pause).
$mutagen-pause, you investigated and
resolved the issue, and now want to pick up at the next stage.escalated status because of a structural problem that you
hand-corrected in the workspace.$mutagen-execute-next instead.pending and let the author re-run.$mutagen-execute-next to drain the queue afterward.ok: true with the dispatch payload — surface that
payload and stop. Recommend $mutagen-execute-next to keep going.ok: false with stage: "structural-check" — surface
the structural findings and stop. Do not auto-retry; the structural
failure means the repaired artifact is still wrong.This skill does not loop. After it succeeds, the next slice (if any) is
picked up by $mutagen-execute-next as usual.
npx claudepluginhub chkdsklabs/mutagen --plugin mutagenGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.