Resume an interrupted orchestration from the last checkpoint or a specific checkpoint
/plugin marketplace add Lobbi-Docs/claude/plugin install orchestrate-complex@claude-orchestration# Resume Orchestration
Resume an interrupted orchestration workflow from a checkpoint.
## Resume Configuration
**Checkpoint:** ${checkpoint:-latest}
**Phase Override:** ${phase:-none}
**Skip Validation:** ${skip-validation:-false}
## Resume Process
### Step 1: Locate Checkpoint
### Step 2: Validate Checkpoint
Unless `--skip-validation` is set:
1. **Verify Integrity**: Check checkpoint data is valid
2. **Verify Context**: Ensure referenced files exist
3. **Verify Dependencies**: Confirm external deps available
4. **Verify Outputs**: Previous phase outputs accessible
### Step 3: ...