From claude-impl-tools
Displays TASKS.md progress in real time on Claude Code status bar Line 3, showing completed/total tasks, progress bar, phase, and next task. Use for live project tracking.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-impl-tools:statuslineThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Displays project task progress in real time on the Claude Code status bar.
Displays project task progress in real time on the Claude Code status bar.
📋 12/34 ▓▓▓░░░░░░░ Phase 2 → T2.1: Build API
./skills/statusline/install.sh
Or installed automatically at Step 5 of the root install.sh.
| Field | Description |
|---|---|
📋 12/34 | Completed / total task count |
▓▓▓░░░░░░░ | Progress bar (10 segments) |
Phase 2 | Currently active phase |
→ T2.1: ... | Next incomplete task |
statusline-segment.sh — Parses TASKS.md on each status bar refresh (30-second cache). Installed globally (~/.claude/) since it auto-detects the current project's TASKS.md.hooks/tasks-status-writer.js — Immediately invalidates the cache whenever TASKS.md is edited. Installed per-project (.claude/hooks/) since it should only activate in projects that have TASKS.md.skills/statusline/
├── SKILL.md
├── install.sh # Installation script
├── statusline-segment.sh # Status bar Line 3 output
└── hooks/
└── tasks-status-writer.js # PostToolUse hook
npx claudepluginhub insightflo/claude-impl-tools --plugin claude-impl-toolsDefines conventions for TASKS.md files: structure with optional sections, status symbols ([ ] todo, [/] ongoing, [x] done, [-] backlog), task descriptions, and testable acceptance criteria. Use for creating, editing, updating tasks or tracking progress.
Manages tasks using native Claude Code subagent tools (TaskCreate, TaskUpdate, TaskList, TaskGet). Tracks TODOs, checkpoints progress, and resumes work across sessions.
Displays ultra-concise progress summary of current tasks from task.md: last completed, next task, and blocks. Invoke via /cm-status for quick checks during workflows.