Resume interrupted plan execution
Resumes interrupted workflow execution from the last pending task after reviewing progress.
/plugin marketplace add pproenca/dot-claude/plugin install dev-workflow@pproencaResume execution of an interrupted plan from where it left off.
Check TodoWrite for current progress:
# Check TodoWrite state - the existing todo list shows current progress
# Pending tasks are those not yet completed
# Count completed vs total to show progress
Check git log for recent work:
git log --oneline --since="1 day ago" | head -20
Use AskUserQuestion:
AskUserQuestion:
header: "Resume"
question: "Continue workflow execution?"
multiSelect: false
options:
- label: "Continue"
description: "Resume execution from first pending task"
- label: "Review first"
description: "Show completed work before continuing"
If Continue:
/dev-workflow:execute-plan [plan-file]If Review first:
git log --oneline --stat --since="1 day ago"
After all tasks done: