Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub neonwatty/claude-plugins --plugin looperHow this command is triggered — by the user, by Claude, or both
Slash command
/looper:resumeThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /resume - Resume Implementation Resume an in-progress feature implementation from where it left off. ## Arguments - $ARGUMENTS: Optional - feature name or path to PLAN.md - `/resume` - Auto-detect from current branch (feature/X → .plans/X/PLAN.md) - `/resume my-feature` - Resume .plans/my-feature/PLAN.md - `/resume .plans/my-feature/PLAN.md` - Resume from specific path --- ## Process ### 1. Load State Read PLAN.md to determine: - Feature being implemented - Current step number - Step status (NOT_STARTED, IN_PROGRESS, APPROVED) - Number of attempts on current step ### 2. Check...
/mega-resumeResumes interrupted mega-plan execution by detecting state from files like mega-plan.json and worktrees, then continues automatically. Supports --auto-prd and new/legacy modes.
/implementExecutes a technical implementation plan phase by phase with verification at each step. Supports autonomous mode, subagent-driven development, and checkpoint-based resume.
/implement_planImplements approved technical plans from ./thoughts/shared/plans directory via phases with automated verification, manual pauses, and progress tracking.
/resumeResumes a previously-running Claude agent by ID, picking up its transcript and continuing the interrupted task.
/resumeLists active task orchestrations with progress and resumes specific ones via --date --project or --latest. Shows tasks in progress, blocked/next tasks, git activity, and quick actions.
/resumeLists active task orchestrations with progress and resumes specific ones via --date --project or --latest. Shows tasks in progress, blocked/next tasks, git activity, and quick actions.
Share bugs, ideas, or general feedback.
Resume an in-progress feature implementation from where it left off.
/resume - Auto-detect from current branch (feature/X → .plans/X/PLAN.md)/resume my-feature - Resume .plans/my-feature/PLAN.md/resume .plans/my-feature/PLAN.md - Resume from specific pathRead PLAN.md to determine:
git branch --show-current # Confirm on feature branch
git status # Check for uncommitted changes
Before resuming, display:
📋 Implementation Status
Feature: {plan title}
Branch: {current git branch}
Progress: Step {current} of {total}
Step Status:
1. {title} - ✅ APPROVED
2. {title} - 🔄 IN_PROGRESS (attempt {n}/3)
3. {title} - ⏳ NOT_STARTED
4. {title} - ⏳ NOT_STARTED
Current Step: {step title}
Attempts: {n}/3
Uncommitted changes: {yes/no}
Based on current state:
If current step is IN_PROGRESS:
/implementIf current step is NOT_STARTED:
/implementIf all steps are APPROVED:
/implementIf there are uncommitted changes:
Follow the same verification loop as /implement:
while attempts < 3:
1. Implement/fix the step
2. Commit changes
3. Run tests
4. Spawn Checker (via /check)
5. If APPROVED: next step
If NEEDS_WORK: attempts++, fix issues
if attempts == 3:
Escalate to user
/resume # Auto-detect from branch name
/resume my-feature # Resume .plans/my-feature/PLAN.md
/resume .plans/other/PLAN.md # Resume from specific path
/resume loads PLAN.md/resume loads state/resume loads state/resume loads state/plan first