From claude-resources
Code review process and quality framework. Use when reviewing PRs, auditing code quality, or evaluating AI-generated code. Pair with language-specific code-review skill.
npx claudepluginhub deandum/claude-resources --plugin go-skillsThis skill uses the workspace's default tool permissions.
Systematic review across five axes. Work through each in order. Report findings per category.
Searches, 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 agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
Systematic review across five axes. Work through each in order. Report findings per category.
Every comment MUST have a severity prefix:
| Prefix | Meaning | Author Action |
|---|---|---|
| Critical: | Blocks merge. Security, data loss, crash. | Must fix |
| Important: | Bug risk, missing error handling, design issue | Should fix |
| Suggestion: | Style, minor optimization, readability | Nice to have |
| Nit: | Trivial, optional | May ignore |
| FYI | Informational only | No action needed |
| Lines Changed | Assessment |
|---|---|
| ~100 | Good — easy to review thoroughly |
| ~300 | Acceptable if single logical change |
| ~1000+ | Too large — must split before review |
| Strategy | When |
|---|---|
| Stack | Sequential dependencies — submit small change, next one builds on it |
| By file group | Different reviewers needed for different parts |
| Horizontal | Shared code/stubs first, then consumers |
| Vertical | Smaller full-stack slices of the feature |
## Review: [package or file]
**Verdict**: [APPROVE / REQUEST CHANGES / COMMENT]
### Critical
- [file:line] Description. Fix: [specific fix]
### Important
- [file:line] Description. Fix: [specific fix]
### Suggestions
- [file:line] Description
### Positive
- [Brief note on what was done well]
### Summary
[1-2 sentences: overall assessment + what was verified]
| Shortcut | Reality |
|---|---|
| "LGTM, looks fine" | Rubber-stamping is not reviewing. Check each axis systematically. |
| "It works, so it's correct" | Working code can still have races, leaks, and security holes. |
| "AI-generated code is probably fine" | AI code needs more scrutiny. It's confident and plausible, even when wrong. |
| "It's too big to review properly" | Then it's too big to merge. Split it first. |