AI SummaryResume an interrupted feature workflow from its last checkpoint, allowing developers to pick up where they left off on multi-phase feature development. Ideal for teams managing complex feature branches with state tracking and task progression.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "feat-resume" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (7 files) mkdir -p .claude/skills/commands && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/SKILL.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/feat-resume.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/bug-implement.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/bug-implement.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/bug-rca.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/bug-rca.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/bug-solution.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/bug-solution.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/bug-start.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/bug-start.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/feat-status.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/feat-status.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/feature-start.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/feature-start.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Resume an interrupted feature workflow
Usage
`bash /feat-resume user-auth `
Process
• Load State: Read .agents/features/{identifier}/{identifier}-status.json • Validate: Check if resumable: • Feature directory exists • Status is "in_progress" (not "completed") • No conflicting changes in git • Dependencies haven't changed significantly • Present Options: ` Found incomplete feature: user-auth Last completed phase: implementation Current progress: 18/28 tasks Last activity: 2025-09-30 15:30:00 Resume options: • Continue from next pending task (TASK-019) • Re-run current phase from start • Review progress and then continue • Cancel and restart workflow Choose [1-4]: ` • Execute Choice: • Option 1: Call orchestrator to continue from next phase/task • Option 2: Reset current phase status, re-run • Option 3: Show detailed progress, then prompt to continue • Option 4: Mark as cancelled, offer to start fresh • Continue Workflow: Hand off to main /feature-start orchestrator with resume context
Output
` ✅ Resuming feature: user-auth 📊 Current State: Phase: Implementation Progress: 18/28 tasks (64%) Time elapsed: 2h 15m 🚀 Continuing from TASK-019... ` Then continues with standard workflow output.
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster