33 lines
817 B
Markdown
33 lines
817 B
Markdown
---
|
|
description: Runs a Superpowers-style review pass with severity levels.
|
|
---
|
|
|
|
# Superpowers Review
|
|
|
|
Read and apply the `superpowers-review` skill.
|
|
|
|
Output:
|
|
- Blockers
|
|
- Majors
|
|
- Minors
|
|
- Nits
|
|
- Summary + next actions
|
|
|
|
## Persist (mandatory)
|
|
After generating the review content above, you MUST write it to disk:
|
|
|
|
1) Copy the full review markdown output.
|
|
2) Run:
|
|
|
|
```bash
|
|
python .agent/skills/superpowers-workflow/scripts/write_artifact.py --path artifacts/superpowers/review.md
|
|
|
|
```
|
|
|
|
Provide the review markdown as stdin to the command.
|
|
|
|
After writing, confirm it exists by listing artifacts/superpowers/.
|
|
|
|
If you cannot run the command, say so explicitly and instruct the user to copy/paste the review output into artifacts/superpowers/review.md.
|
|
Do not implement changes in this workflow. Stop after persistence.
|