Replaces 4 sibling skills: progress, health, pause-work, resume-work.
Subcommand Reference
Both flag and bare forms are accepted interchangeably:
| Bare form | Flag form | Behavior |
|---|---|---|
| (no arg) | — | Show progress + intelligently route to next action |
check |
--check |
Validate .planning/ integrity; fix issues. Accepts --repair, --migrate, --dry-run. |
pause |
--pause |
Save current context to .continue-here.md for later resumption |
resume |
--resume |
Restore project context and pick up where you left off |
Use when the user asks: "where are we?", "what's the status?", "show progress", "what's next?", "is the project healthy?", "I need to stop", "save my progress", "let's continue", "pick up where we left off", "resume".
@.planning/STATE.md
ROUTE_JSON=$(node ~/.claude/devflow/bin/df-tools.cjs skill-route status $ARGUMENTS --raw)
Parse JSON. If error, display usage and stop. Otherwise extract subcommand, args, and workflow.
2. Follow resolved workflow:
Based on subcommand:
null(default, no subcommand) — execute progress workflowcheck— execute health workflow with residual args (e.g.,--repair,--migrate,--dry-run)pause— execute pause-work workflowresume— execute resume-project workflow
Pass residual args to the workflow as if the user had typed them.