一键导入
review-implementation
Use after implementing a feature or any code change to verify completeness and correctness before committing
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use after implementing a feature or any code change to verify completeness and correctness before committing
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when the user wants to create a new cryochamber application, set up a scheduled agent task, or scaffold a cryo project with plan.md and cryo.toml
Use when the user wants a screenshot of the cryohub web dashboard for documentation, README, mdbook, or a slide deck. Spawns cryohub on a chamber workspace, drives headless Chrome, and saves a PNG to the requested path.
Use when preparing a new crate release, bumping versions, or tagging a release
Use when the user wants visual state machines of the cryochamber daemon — the overall event loop around inbox messages and TODO-triggered wakes, plus per-item lifecycles for a message and for a reminder — rendered as hand-written SVGs
Use when a PR has review comments to address, CI failures to fix, or codecov coverage gaps to resolve
| name | review-implementation |
| description | Use after implementing a feature or any code change to verify completeness and correctness before committing |
Dispatches a quality review subagent with fresh context (no implementation history bias):
/review-implementation -- auto-detect from git diff/review-implementation generic -- code quality only (explicit)Determine what files were added or modified:
# Check for NEW files (not just modifications)
git diff --name-only --diff-filter=A HEAD~1..HEAD
# Also check against main for branch-level changes
git diff --name-only --diff-filter=A main..HEAD
Extract the changed file paths and a summary of what changed.
Get the git SHAs for the review range:
BASE_SHA=$(git merge-base main HEAD) # or HEAD~N for batch reviews
HEAD_SHA=$(git rev-parse HEAD)
Get the diff summary and changed file list:
git diff --stat $BASE_SHA..$HEAD_SHA
git diff --name-only $BASE_SHA..$HEAD_SHA
Dispatch using Task tool with subagent_type="superpowers:code-reviewer":
quality-reviewer-prompt.md from this skill directory{DIFF_SUMMARY} -> output of git diff --stat{CHANGED_FILES} -> list of changed files{PLAN_STEP} -> description of what was implemented (or "standalone review"){BASE_SHA}, {HEAD_SHA} -> git rangeWhen the subagent returns:
## Review: [Feature/Fix/Generic] [Name]
### Build Status
- `make test`: PASS / FAIL
- `make clippy`: PASS / FAIL
### Code Quality (from quality reviewer)
- DRY: OK / ...
- KISS: OK / ...
- HC/LC: OK / ...
### HCI (if CLI changed)
...
### Test Coverage
- Coverage: [X.X%] -- OK (>=95%) / CRITICAL (<95%)
### Test Quality
...
### Fixes Applied
- [list of issues automatically fixed by main agent]
### Remaining Items (needs user decision)
- [list of issues that need user input]
After creating a PR (from any flow), run make copilot-review to request GitHub Copilot code review on the PR.
Invoke directly via /review-implementation for any code change.