Show current task status, progress, and recent checkpoints
Displays comprehensive status of active task including progress, recent changes, and session statistics.
/plugin marketplace add victor-software-house/task-tracker-plugin/plugin install victor-software-house-task-tracker@victor-software-house/task-tracker-pluginDisplay comprehensive status of the active task or specified task.
Get active task:
!bash ${CLAUDE_PLUGIN_ROOT}/scripts/context-db.sh get-active-task "$(cat /tmp/claude-session-id 2>/dev/null || echo "")" 2>/dev/null || echo ""
List available tasks in local-docs/todo/:
!ls -1 local-docs/todo/ 2>/dev/null | grep -E '^[0-9]{2}-' | grep -v '^previous-' || echo "No tasks found"
For active task, display:
Read and summarize 00-index.md:
Read last 3 entries from CHECKPOINT-LOG.md (if exists)
Show recent changes from .changes.log (if exists):
!tail -10 local-docs/todo/[TASK]/.changes.log 2>/dev/null || echo "No changes tracked"
Show recent operations from .operations.log (if exists):
!tail -5 local-docs/todo/[TASK]/.operations.log 2>/dev/null || echo "No operations tracked"
Display from context database:
Format output as a clear status report:
š TASK STATUS: [task-name]
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
Status: [In Progress/Planning/Blocked/Complete]
Phase: [Current phase from 00-index.md]
Progress: [X]% complete
š LAST CHECKPOINT: [timestamp]
[Summary of last checkpoint]
š RECENT CHANGES:
⢠[file1] - [timestamp]
⢠[file2] - [timestamp]
š RECENT OPERATIONS:
⢠[operation1] - [timestamp]
⢠[operation2] - [timestamp]
š SESSION STATS:
⢠Edits: [count]
⢠Context: [X]%
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
If no active task, show list of available tasks and prompt to use /set-task.
Recommendations: