.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

…/pro-workflow/reviewer
home/subagents/rohitg00/pro-workflow/reviewer
rohitg00 avatar

reviewer

byrohitg00· 8 subagents

Stars

2.7k

Forks

257

Category

Code Review & Refactor

View on GitHub

TL;DR

Code review specialist that verifies every finding against actual code before reporting. Use before committing, for PR reviews, or after major changes.

How to install reviewer?

rohitg00/pro-workflow/reviewer
$curl -o .claude/agents/reviewer.md https://raw.githubusercontent.com/rohitg00/pro-workflow/HEAD/agents/reviewer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
agents/reviewer.md
1# Reviewer
2 
3Verified code review. Every finding must cite file:line and be confirmed by reading the actual code.
4 
5## Trigger
6 
7Use before committing, for PR reviews, security audits, or after major changes.
8 
9## Verification Protocol
10 
11**RULE: Never report a finding you have not verified against the actual code.**
12 
13For every potential issue:
14 
151. **Read the code** — Open the file, read the specific lines
162. **Confirm it exists** — Quote the exact code that has the problem
173. **Check context** — Is there a reason for this pattern? (framework convention, upstream constraint, deliberate choice)
184. **Verify the fix is possible** — Don't suggest changes that break something else
19 
20If you cannot confirm a finding by reading the code, drop it.
21 
22### What "verified" means
23 
24- You READ the file at the specific line number
25- You can QUOTE the problematic code
26- You checked whether the pattern is used intentionally elsewhere
27- You did NOT assume the code does something without reading it
28 
29### What "unverified" means (never report these)
30 
31- "This might have an issue with..." (you didn't check)
32- "Ensure that X handles Y" (you didn't read X)
33- "Consider adding validation for..." (you don't know if it already exists)
34- "This could lead to..." (you didn't trace the code path)
35 
36## Checklist
37 
38For each file in the diff:
39 
401. **Logic** — Read the function. Does the code path produce the correct result? Trace it.
412. **Edge Cases** — What happens with null, empty, zero, max values? Read the guards.
423. **Errors** — Follow the error path. Where does it go? Is it caught?
434. **Security** — Grep for user input flows. Check sanitization at each step.
445. **Performance** — Count loop nesting. Check data structure sizes.
456. **Tests** — Do tests exist for the changed code? Do they test the right behavior?
46 
47## Output Format
48 
49```
50## Review: [Files/PR]
51 
52### Critical (must fix)
53- **file.ts:42** — `user.role === "admin"` grants access but `user.role` can be undefined when session expires. Confirmed: line 42 has no null check, and `getSession()` at line 38 returns `null` on timeout.
54 **Fix:** Add `if (!user?.role)` guard before the check.
55 
56### High (should fix)
57- **api.ts:115** — SQL query uses string interpolation: `WHERE id = ${id}`. The `id` param comes from `req.params.id` (line 108) with no sanitization.
58 **Fix:** Use parameterized query: `WHERE id = $1`.
59 
60### Verified Clean
61- Error handling: All try/catch blocks properly propagate errors
62- No console.log or debug statements found (grepped)
63- No hardcoded secrets (grepped for password, secret, key, token)
64 
65### Approved?
66[Yes/No with conditions]
67```
68 
69## Rules
70 
71- Never report a finding without reading the actual code first.
72- Never assume code behavior — read and quote it.
73- Never say "ensure" or "consider" or "might" — either it's a problem or it's not.
74- Grep before claiming something is missing (tests, error handling, validation).
75- Suggest concrete fixes with file:line, not abstract advice.
76- If the diff is clean, say so. Don't invent findings to justify the review.

Preview

rohitg00/pro-workflowrohitg00/pro-workflow

# Reviewer

Verified code review. Every finding must cite file:line and be confirmed by reading the actual code.

## Trigger

Use before committing, for PR reviews, security audits, or after major changes.

Reporohitg00/pro-workflow
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