Resume a task by loading its full context from 00-index.md and checkpoints
Resumes a task by loading its full context from saved documentation and checkpoints.
/plugin marketplace add victor-software-house/task-tracker-plugin/plugin install victor-software-house-task-tracker@victor-software-house/task-tracker-plugintask-name or task-numberResume work on a task by loading its complete context. This is essential after context compaction or session restart.
Identify task to resume:
If $ARGUMENTS provided:
If no argument:
ls -1 local-docs/todo/ 2>/dev/null | grep -E '^[0-9]{2}-' | grep -v '^previous-'Locate task directory:
!ls -d local-docs/todo/$1* 2>/dev/null || ls -d local-docs/todo/*$1* 2>/dev/null | head -1
Load complete context:
Read and internalize the full task index: @local-docs/todo/[TASK]/00-index.md
Key elements to extract:
Read the most recent checkpoint entry:
!bash ${CLAUDE_PLUGIN_ROOT}/scripts/checkpoint-helper.sh last "local-docs/todo/[TASK]" 2>/dev/null
Extract:
Review recent file modifications:
!tail -20 local-docs/todo/[TASK]/.changes.log 2>/dev/null || echo "No changes tracked"
If current phase identified, read the relevant phase document: @local-docs/todo/[TASK]/[current-phase].md
Set as active task:
!bash ${CLAUDE_PLUGIN_ROOT}/scripts/context-db.sh set-active-task "$(cat /tmp/claude-session-id 2>/dev/null || echo "default")" "[TASK]"
Report context loaded:
š RESUMED TASK: [task-name]
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
Context Loaded:
⢠Task overview from 00-index.md
⢠Last checkpoint: [timestamp]
⢠Recent changes: [count] files
š CURRENT STATE:
[Summary from last checkpoint or 00-index.md]
š NEXT STEPS:
1. [First action from checkpoint/index]
2. [Second action]
3. [Third action]
š” Ready to continue. Use /checkpoint to save progress.
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
This command is critical for context recovery after compaction. Always read and internalize all available context before proceeding with work.