From superpowers-plus
Creates and maintains a git-ignored progress document for large issues across sessions, tracking completed tasks, decisions, refinements, findings, and verification steps.
npx claudepluginhub bordenet/superpowers-plus --plugin superpowers-plusThis skill uses the workspace's default tool permissions.
> **Purpose:** Maintain implementation context across sessions
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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 |