.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/futuregerald-claude-plugin/code-quality-reviewer
home/subagents/futuregerald/futuregerald-claude-plugin/code-quality-reviewer
futuregerald avatar

code-quality-reviewer

byfuturegerald· 9 subagents

Stars

6

Category

Code Review & Refactor

View on GitHub

TL;DR

Reviews code quality for correctness, architecture, defensive coding, and testing. Use after spec compliance is verified.

How to install code-quality-reviewer?

futuregerald/futuregerald-claude-plugin/code-quality-reviewer
$curl -o .claude/agents/code-quality-reviewer.md https://raw.githubusercontent.com/futuregerald/futuregerald-claude-plugin/HEAD/agents/code-quality-reviewer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install code-quality-reviewer by running `curl -o .claude/agents/code-quality-reviewer.md https://raw.githubusercontent.com/futuregerald/futuregerald-claude-plugin/HEAD/agents/code-quality-reviewer.md`, then use it for the current task and follow its documentation at https://github.com/futuregerald/futuregerald-claude-plugin.

Files · 1

View on GitHub
agents/code-quality-reviewer.md
1# Code Quality Reviewer Subagent
2 
3Use this subagent to review code quality after spec compliance is verified.
4 
5**Purpose:** Verify implementation is well-built (clean, tested, maintainable)
6 
7**When to use:** ONLY after spec compliance review passes
8 
9**CRITICAL:** MUST always be dispatched via the `Task` tool as a fresh subagent with NO shared conversation context. The reviewer needs independent judgment — shared context creates anchoring bias and causes the reviewer to rubber-stamp work they watched being built. Never run reviews inline in the main conversation.
10 
11## Dispatch Configuration
12 
13```
14Task tool:
15 subagent_type: code-quality-reviewer
16 description: "Code quality review for Task N"
17```
18 
19## Prompt Template
20 
21```
22Review the implementation for code quality.
23 
24## What Was Implemented
25 
26[Summary from implementer's report]
27 
28## Plan/Requirements Reference
29 
30Task N from plan: [plan file path or inline requirements]
31 
32## Git Context
33 
34- Base SHA: [commit before task started]
35- Head SHA: [current commit after implementation]
36 
37## Description
38 
39[Brief description of what the task accomplishes]
40 
41## Quality Standards
42 
43Check for:
44 
45**Architecture:**
46- Controllers/handlers are thin (business logic in services/models)
47- Proper separation of concerns
48- Appropriate use of design patterns
49 
50**Code Quality:**
51- Clear, descriptive naming
52- Functions are focused and small
53- No code duplication
54- Consistent with codebase patterns
55 
56**Error Handling:**
57- Errors are handled gracefully
58- User-facing errors are friendly
59- Errors are logged appropriately
60 
61**Testing:**
62- Tests verify actual behavior
63- Edge cases covered
64- No mocked behavior tests
65- Tests are readable and maintainable
66 
67**Performance:**
68- Queries are efficient (no N+1)
69- Appropriate caching where needed
70- No obvious performance issues
71 
72**Security:**
73- Input validation present
74- Authorization checks in place
75- No obvious vulnerabilities
76```
77 
78## Review Criteria
79 
80The code reviewer evaluates:
81 
82**Strengths** - What was done well
83 
84**Issues** - Categorized by severity:
85 
86- **Critical:** Security issues, data loss risks, broken functionality
87- **Important:** Performance problems, maintainability concerns, missing error handling
88- **Minor:** Style inconsistencies, naming suggestions, documentation gaps
89 
90**Assessment** - Overall verdict:
91 
92- ✅ Approved
93- ⚠️ Approved with suggestions
94- ❌ Changes required
95 
96## Usage Example
97 
98```typescript
99Task({
100 subagent_type: 'code-quality-reviewer',
101 description: 'Code quality review for Task 3',
102 prompt: `Review the implementation for code quality.
103 
104## What Was Implemented
105 
106CommentThread component with threaded display, reply functionality,
107author info, and delete capability.
108 
109## Plan/Requirements Reference
110 
111Task 3 from plan: "Create CommentThread component for displaying and interacting with comments"
112 
113## Git Context
114 
115- Base SHA: abc1234
116- Head SHA: def5678
117 
118## Description
119 
120Adds the frontend component for displaying threaded comments with
121full CRUD operations.
122 
123## Quality Standards
124 
125[... quality standards from template ...]
126`,
127})
128```
129 
130## Review Loop
131 
132If code quality review returns issues:
133 
1341. **Critical issues:** Implementer MUST fix before proceeding
1352. **Important issues:** Implementer SHOULD fix, reviewer re-reviews
1363. **Minor issues:** Can be deferred or fixed at implementer's discretion
137 
138After fixes, dispatch another code quality review to verify.

Preview

futuregerald/futuregerald-claude-pluginfuturegerald/futuregerald-claude-plugin

# Code Quality Reviewer Subagent

Use this subagent to review code quality after spec compliance is verified.

**Purpose:** Verify implementation is well-built (clean, tested, maintainable)

**When to use:** ONLY after spec compliance review passes

Repofuturegerald/futuregerald-claude-plugin
TypeSubagents
CategoryCode Review & Refactor
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k