This skill should be used when the user asks for "code review", "review my changes", "review this PR", "check my code", "pre-merge review", "review diff", or mentions reviewing code quality, implementation correctness, or preparing changes for merge.
From tech-leadnpx claudepluginhub ruslan-korneev/claude-plugins --plugin tech-leadThis skill uses the workspace's default tool permissions.
references/api-semantics.mdreferences/implementation.mdreferences/pyramid.mdreferences/security.mdreferences/testing.mdSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides implementation of event-driven hooks in Claude Code plugins using prompt-based validation and bash commands for PreToolUse, Stop, and session events.
This skill should be used when the user asks for "code review", "review my changes", "review this PR", "check my code", "pre-merge review", "review diff", or mentions reviewing code quality, implementation correctness, or preparing changes for merge.
Code review following the Review Pyramid methodology — a prioritized approach that focuses on what matters most.
▲
/|\ 5. Code Style (Nit) ← Least important, automatable
/ | \
/ | \ 4. Tests
/ | \
/ | \ 3. Documentation
/ | \
/ | \ 2. Implementation Semantics ← High priority
/ | \
/________|________\ 1. API Semantics ← Most critical, review first
Key insight: Review from bottom to top. API and implementation issues are far more important than style issues.
Fast first pass using quick-reviewer agent (sonnet):
Thorough analysis using code-reviewer agent (opus):
| Trigger | Action |
|---|---|
| "Review my staged changes" | /review:diff staged |
| "Review before I merge" | /review:diff main --mode=full |
| "Quick check my code" | /review:diff --mode=quick |
| "Deep review this feature" | /review:diff main --task="..." --mode=deep |
--task flag for accurate business logic reviewpyramid.md — Detailed explanation of the Review Pyramidapi-semantics.md — API review checklistimplementation.md — Implementation review checklistsecurity.md — Security review checklisttesting.md — Test review checklist