Files
Claude-Code-Workflow/.claude/commands/workflow/session/resume.md
catlog22 2c3e04b6fc refactor: Standardize command naming conventions and remove parent relationships
Updates all command files to use consistent naming without parent field:
- Remove parent field from all command frontmatter
- Standardize name field to use simple names instead of prefixed names
- Fix usage patterns for brainstorm commands to use proper workflow namespace
- Add new medium-project-update.sh script for batch updates

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-09 15:06:06 +08:00

82 lines
2.0 KiB
Markdown

---
name: resume
description: Resume the most recently paused workflow session
usage: /workflow:session:resume
---
# Resume Workflow Session (/workflow:session:resume)
## Purpose
Resume the most recently paused workflow session, restoring all context and state.
## Usage
```bash
/workflow:session:resume
```
## Resume Logic
### Session Detection
- Finds most recently paused session
- Loads session state from `workflow-session.json`
- Validates session integrity
### State Restoration
- Creates `.workflow/.active-[session-name]` marker file
- Loads current phase from session state
- Restores appropriate agent context
- Continues from exact interruption point
### Context Continuity
- Restores TodoWrite state
- Loads phase-specific context
- Maintains full audit trail
- Preserves document references
## Phase-Specific Resume
### Planning Phase
- Resumes planning document generation
- Maintains requirement analysis progress
- Continues task breakdown where left off
### Implementation Phase
- Resumes task execution state
- Maintains agent coordination
- Continues from current task
### Review Phase
- Resumes validation process
- Maintains quality checks
- Continues review workflow
## Session Validation
Before resuming, validates:
- Session directory exists
- Required documents present
- State consistency
- No corruption detected
## Output
Displays:
- Resumed session ID and description
- Current phase and progress
- Available next actions
- Session directory location
## Error Handling
- **No paused sessions**: Lists available sessions to switch to
- **Corrupted session**: Attempts recovery or suggests manual repair
- **Directory missing**: Clear error with recovery options
- **State inconsistency**: Validates and repairs where possible
## Next Actions
After resuming:
- Use `/context` to view current session state
- Continue with phase-appropriate commands
- Check TodoWrite status for next steps
---
**Result**: Previously paused session is now active and ready to continue