From superpowers-plus
Creates and maintains a living progress document for implementing large issues across multiple sessions, tracking completed work, decisions, and refinements.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers-plus:implementation-trackerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Purpose:** Maintain implementation context across sessions
Purpose: Maintain implementation context across sessions Path:
docs/plans/{PREFIX}-XXXX-progress.md(git-ignored during active work)
Announce at start: "Using implementation-tracker to maintain progress across sessions."
| Trigger | Action |
|---|---|
writing-plans completes | Auto-create progress doc |
| "Track implementation for {PREFIX}-XXX" | Manual creation |
| "Update progress" / milestone | Update doc + verify |
| "Resume work on {PREFIX}-XXX" | Load existing context |
| "Implementation complete" | Archive prompt |
When existing progress doc found:
I found: docs/plans/{PREFIX}-1234-progress.md
Last session: aug_abc123 (2026-03-05)
Status: 3/7 tasks, 2 decisions, 1 open question
[Yes / No / Show summary first]
| Facts (persist) | Fresh Each Session |
|---|---|
| Completed tasks, files modified | Reasoning/approach |
| Blockers, decisions, refinements | Tool call sequences |
| Open questions, key insights | Error messages |
| Wiki context | Debugging hypotheses |
| Order | Method | Purpose |
|---|---|---|
| 1 | git diff --name-only | What actually changed |
| 2 | test -f path/to/file.ts | Files exist |
| 3 | grep -rn "symbol" --include="*.ts" | Symbols present |
| 4 | tsc --noEmit | Type errors |
| 5 | npm test -- --filter=relevant | Tests pass |
Target: ~1,500 words. When exceeded: move completed tasks to summary table, condense session summaries, archive resolved questions.
| Skill | Relationship |
|---|---|
writing-plans | Chains into this skill |
| Mode | Symptom | Recovery |
|---|---|---|
| Scope drift | Tracking items not in original plan | Compare against plan regularly |
| False completion | Marking done without verifying behavior | Run verification after each update |
| Missing downstream | Tracking primary changes only | Check tests and docs too |
npx claudepluginhub bordenet/superpowers-plus --plugin superpowers-plusGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.