Continue a paused siftcoder workflow from where you left off
Resumes a paused workflow from exactly where you stopped, continuing automatically through all phases.
/plugin marketplace add ialameh/sift-coder/plugin install sift-coder@sift-coderResume a previously paused workflow from exactly where you stopped.
$ARGUMENTS - Optional: specific feature ID to continue with (otherwise continues current)Read .claude/siftcoder-state/current-task.json:
If no paused task exists:
No paused workflow found.
Start a new workflow:
/siftcoder:build <spec> - Build from specification
/siftcoder:fix <issue> - Fix with boundaries
/siftcoder:add-feature <desc> - Add new feature
If task exists but not paused:
Workflow is already running.
Current: [mode] - [phase]
Feature: [feature name]
Use /siftcoder:status to see progress.
Display what will be resumed:
RESUMING WORKFLOW
Mode: [build/fix/optimize/document]
Paused at: [timestamp] ([duration] ago)
Phase: [planning/coding/qa_review/qa_fix]
Progress Summary:
Feature: [current feature] ([X/Y] features complete)
Subtask: [current subtask] ([X/Y] subtasks complete)
Last completed:
[description of last action]
Next action:
[description of what will happen next]
Resuming in 3 seconds... (Ctrl+C to cancel)
Update task to resume:
./siftcoder/scripts/state-manager.sh task-update '{
"mode": "[mode]",
"phase": "[phase]",
"paused": false,
"resumedAt": "[ISO timestamp]",
"pausedAt": null
}'
./siftcoder/scripts/state-manager.sh log "workflow_resumed" '{
"mode": "[mode]",
"phase": "[phase]",
"pausedDuration": "[duration in seconds]"
}'
Based on the saved state, invoke the appropriate agent:
If phase = "planning":
If phase = "coding":
If phase = "qa_review":
If phase = "qa_fix":
Once resumed, the workflow continues automatically until:
/siftcoder:pause againIf $ARGUMENTS contains a feature ID:
/siftcoder:continue feat-auth-login
SWITCHING TO FEATURE
Feature: feat-auth-login
Title: User Authentication Login
Status: in_progress (subtask 3/7)
Continuing from subtask 3...
/siftcoder:status first to see what will be resumed