Resume work on existing task orchestrations after session loss or context switch.
Restores full context for active orchestrations, showing current progress and next actions.
/plugin marketplace add davepoon/buildwithclaude/plugin install commands-workflow-orchestration@buildwithclaudeResume work on existing task orchestrations after session loss or context switch.
/orchestration/resume [options]
Restores full context for active orchestrations, showing current progress, identifying next actions, and providing all necessary information to continue work seamlessly.
/orchestration/resume
Shows all orchestrations with active (non-completed) tasks.
/orchestration/resume --date 03_15_2024 --project auth_system
Loads complete context for a specific orchestration.
/orchestration/resume --latest
Automatically resumes the most recently active orchestration.
Active Task Orchestrations
==========================
1. 03_15_2024/authentication_system
Started: 3 days ago | Progress: 65% | Active Tasks: 3
└─ Focus: JWT implementation, OAuth integration
2. 03_14_2024/payment_processing
Started: 4 days ago | Progress: 40% | Active Tasks: 2
└─ Focus: Stripe webhooks, refund handling
3. 03_12_2024/admin_dashboard
Started: 1 week ago | Progress: 85% | Active Tasks: 1
└─ Focus: Final testing and deployment
Select orchestration to resume: [1-3] or use --date and --project
Resuming: authentication_system (03_15_2024)
============================================
## Current Status Summary
- Total Tasks: 24 (12 completed, 3 in progress, 2 on hold, 7 todos)
- Time Elapsed: 3 days
- Estimated Remaining: 2 days
## Tasks In Progress
┌──────────┬────────────────────────────┬───────────────┬──────────────┐
│ Task ID │ Title │ Agent │ Duration │
├──────────┼────────────────────────────┼───────────────┼──────────────┤
│ TASK-003 │ JWT token validation │ dev-backend │ 2.5h │
│ TASK-007 │ OAuth provider setup │ dev-frontend │ 1h │
│ TASK-011 │ Integration tests │ test-dev │ 30m │
└──────────┴────────────────────────────┴───────────────┴──────────────┘
## Blocked Tasks (Require Attention)
- TASK-005: User profile API - Blocked by TASK-003 (JWT validation)
- TASK-009: OAuth callback handling - Waiting for provider credentials
## Next Available Tasks (Ready to Start)
1. TASK-013: Password reset flow (4h, frontend)
Files: src/auth/reset.tsx, src/api/auth.ts
2. TASK-014: Session management (3h, backend)
Files: src/services/session.ts, src/middleware/auth.ts
## Recent Git Activity
- feature/jwt-auth: 2 commits behind, last commit 2h ago
- feature/oauth-setup: clean, last commit 1h ago
## Quick Actions
[1] Show TASK-003 details (current focus)
[2] Pick up TASK-013 (password reset)
[3] View dependency graph
[4] Show recent commits
[5] Generate status report
/orchestration/resume --task TASK-003
Shows:
/orchestration/resume --show-files
Lists all files mentioned in active tasks with:
/orchestration/resume --deps
Shows dependency graph focused on active tasks.
## Git Working State
Current Branch: feature/jwt-auth
Status: 2 files modified, 1 untracked
Modified Files:
- src/auth/jwt.ts (related to TASK-003)
- tests/auth.test.ts (related to TASK-003)
Untracked:
- src/auth/jwt.config.ts (new file for TASK-003)
Recommendation: Commit current changes before switching tasks
## Last Session (2 hours ago)
- Completed: TASK-002 (Database schema)
- Started: TASK-003 (JWT validation)
- Commits: 2 (feat: add user auth schema, test: auth unit tests)
- Next planned: Continue TASK-003, then TASK-005
/orchestration/resume --show in_progress,on_hold
/orchestration/resume --since "last week"
/orchestration/resume --incomplete # < 50% done
/orchestration/resume --nearly-done # > 80% done
/orchestration/resume --pickup TASK-013
Automatically:
/orchestration/resume --with-status
Includes full status report with resume context.
/orchestration/resume --commits 5
Shows last 5 commits related to the orchestration.
/orchestration/resume --latest --with-status
Perfect for daily standups - shows what you were working on and current state.
/orchestration/resume --save-state
Saves current working state before switching to another orchestration.
/orchestration/resume --handoff
Generates detailed handoff notes for another developer.
/orchestration/resume --latest --pickup-where-left-off
Resumes exactly where you stopped, showing the in-progress task.
/orchestration/resume --since friday --show-completed
Shows what was done Friday and what's next for Monday.
/orchestration/resume --all --summary
Quick overview of all active orchestrations.
The command reads from:
/orchestration/resume when starting work--save-state before extended breaks