From superpowers
Use when finishing a development branch or sub-project — before merge or PR. Produces a concise completion dashboard that shows delivery status, artifact links, known issues, and next steps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers:documenting-completionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Write a final completion summary that acts as the handoff dashboard for the work. It should tell future readers what shipped, what remains, and where the detailed artifacts live — without retelling the entire project history.
Write a final completion summary that acts as the handoff dashboard for the work. It should tell future readers what shipped, what remains, and where the detailed artifacts live — without retelling the entire project history.
Core principle: Completion summary is a dashboard, not a document.
Announce at start: "I'm using the documenting-completion skill to write the completion summary."
At the end of a development cycle:
Don't use when:
Before writing the summary, gather data from:
Do not rely on memory or git log alone.
docs/superpowers/completion/YYYY-MM-DD-<feature-name>-summary.md
Use the same <feature-name> as the plan and execution log.
# [Feature Name] — Completion Summary
**Date:** YYYY-MM-DD
**Branch:** [actual branch name]
**Status:** ✅ Complete / ⚠️ Deferred items exist
## Scope
One sentence describing what the feature delivers.
## Spec coverage
| Req | Status | Notes |
|---|---|---|
| [Requirement / section] | ✅ | — |
| [Requirement / section] | ⚠️ | Deferred — see review-log |
## Artifacts
| Document | Link |
|---|---|
| Spec | [link] |
| Plan | [link] |
| Execution log | [link] |
| Review log | [link if relevant] |
| Debugging log | [link if relevant] |
## Known issues / deferred
- [Only list real deferred items. Omit the section entirely if there are none.]
## Summary
One line on what shipped.
One line on the immediate next step or deferred follow-up.
Do not use the completion summary to:
Those belong in the source artifacts. Link to them instead.
When creating a PR after this summary:
| Thought | Reality |
|---|---|
| "If someone reads only this file, they should know every detail" | They should know the status and where to click next, not every detail. |
| "I'll copy the execution-log into the summary so it's self-contained" | That turns the summary into a token sink. Link instead. |
| "PR description already covers this" | PR descriptions are shorter and should point back here. |
| "Nobody reads these" | Future-you and future-AI do. Keep it short enough that they actually will. |
npx claudepluginhub lzy-ricardo/superpowers-enhancedCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.