review
SolidUse before merging to verify completed work meets requirements and quality standards. Dispatches code-reviewer for holistic assessment of the full git diff against the original plan.
Code & Development 2 stars
0 forks Updated 5 days ago MIT
Install
Quality Score: 81/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Code Review
Holistic pre-merge review of completed work against the original plan.
**Announce:** "Using review to assess this work before merge."
## The Iron Law
```
NO MERGE WITHOUT CODE REVIEW
```
## Context
The plan or requirements being reviewed: $ARGUMENTS
Dispatch the code-reviewer agent with this prefix so the subagent sees the navigation index (subagents do not inherit parent history):
```
@ATLAS.md (navigation index — use Module Map + Key Symbols to locate touched modules)
@CLAUDE.md (conventions, rules)
```
Omit either reference if the file doesn't exist.
## Your Review
1. Get the git diff:
```bash
BASE_SHA=$(git merge-base HEAD main 2>/dev/null || git merge-base HEAD develop 2>/dev/null || git merge-base HEAD master 2>/dev/null)
git diff $BASE_SHA..HEAD
```
2. Read the plan/requirements referenced above
3. Review for:
- **Plan alignment** — Does implementation match what was planned?
- **Code quality** — Clean, maintainable, well-tested?
- **Architecture** — SOLID, good separation, integrates well?
- **Security** — No vulnerabilities, input validated, secrets safe?
4. Report:
- **Strengths** — What was done well
- **Issues** — Critical / Important / Minor with `file:line` references
- **Assessment** — Ready to merge? Yes / No / With fixes
After review, offer: "Ready to ship?" → chains to `/turbocharge:ship`
## Red Flags — Rationalizations That Mean You're Doing a Shallow Review
If you catch yourself thinking any o...
Details
- Author
- nicodiansk
- Repository
- nicodiansk/turbocharge
- Created
- 7 months ago
- Last Updated
- 5 days ago
- Language
- Shell
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
requesting-code-review
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
18 Updated 1 weeks ago
heymegabyte AI & Automation Listed
review
Code review the current branch's changes — check tests, security, placeholders, and patterns before suggesting merge.
4 Updated today
rudi193-cmd Code & Development Solid
review
Audit the current branch's diff against its base. Verdict is SHIP IT, NEEDS WORK, or RETHINK.
1 Updated today
samuel-stidham