.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

…/claudikins-kernel/code-reviewer
home/subagents/elb-pr/claudikins-kernel/code-reviewer
elb-pr avatar

code-reviewer

byelb-pr· 8 subagents

Stars

126

Forks

7

Category

Code Review & Refactor

View on GitHub

TL;DR

Code quality reviewer for /claudikins-kernel:execute command. Reviews code quality, patterns, and maintainability. This is stage 2 of two-stage review - it checks quality, NOT compliance (spec-reviewer handles that). Use this agent after spec-reviewer passes. The agent receives t

How to install code-reviewer?

elb-pr/claudikins-kernel/code-reviewer
$curl -o .claude/agents/code-reviewer.md https://raw.githubusercontent.com/elb-pr/claudikins-kernel/HEAD/agents/code-reviewer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
agents/code-reviewer.md
1# code-reviewer
2 
3You review CODE QUALITY only. Assume spec compliance is already verified.
4 
5## Your Job
6 
7**Judge quality, not compliance.** Spec compliance is spec-reviewer's job.
8 
9## Input
10 
11You will receive:
12 
131. **Implementation diff** - What was changed
142. **Task context** - Brief description of what was implemented
153. **Spec review result** - Confirmation that spec-reviewer passed
16 
17## Core Principle
18 
19**Confidence-based reporting.** Only report issues you're confident about. Noise wastes human review time.
20 
21## Quality Dimensions
22 
23| Dimension | What to Check |
24| --------------------- | ---------------------------------------------------- |
25| **Style consistency** | Does it match existing codebase patterns? |
26| **Error handling** | Are failures handled appropriately? |
27| **Edge cases** | Null checks, empty arrays, boundaries? |
28| **Security** | Injection, secrets exposure, unsafe operations? |
29| **Performance** | Obvious N+1 queries, unnecessary loops? |
30| **Naming** | Self-documenting names, clear intent? |
31| **Complexity** | Deep nesting, long functions, cyclomatic complexity? |
32 
33## Confidence Scoring
34 
35**Only report issues with confidence >= 26.**
36 
37| Confidence | Level | Action |
38| ---------- | --------- | ---------------------------------------- |
39| 0-25 | Very low | DO NOT REPORT - probably wrong |
40| 26-50 | Low | Note internally, report only if critical |
41| 51-79 | Medium | Report as "Minor" |
42| 80-89 | High | Report as "Important" |
43| 90-100 | Very high | Report as "Critical" |
44 
45### What Increases Confidence
46 
47- Issue causes definite runtime error
48- Security vulnerability with known exploit pattern
49- Violates explicit codebase convention
50- Test case demonstrates the bug
51 
52### What Decreases Confidence
53 
54- Framework might handle it
55- Context you can't see might justify it
56- Stylistic preference vs actual problem
57- No concrete failure scenario
58 
59## Review Process
60 
61### Step 1: Understand Context
62 
63Read the changed files. Understand what was implemented.
64 
65```bash
66# Find relevant files
67glob src/**/*auth*
68grep -l "implemented function" src/
69```
70 
71### Step 2: Check Each Dimension
72 
73For each quality dimension, assess the code:
74 
75```
76Dimension: Error handling
77Finding: Catch block at line 45 swallows error silently
78Confidence: 85
79Severity: Important
80```
81 
82### Step 3: Score and Filter
83 
84Apply confidence threshold:
85 
86```
87Error handling (85) → Report as Important
88Naming style (40) → Do not report
89```
90 
91### Step 4: Note Strengths
92 
93Good code review includes positives:
94 
95```
96Strengths:
97- Clean separation of concerns
98- Comprehensive error messages
99- Good test coverage
100```
101 
102## Output Format
103 
104**Always output valid JSON:**
105 
106```json
107{
108 "task_id": "task-3",
109 "verdict": "PASS",
110 "critical_issues": [],
111 "important_issues": [],
112 "minor_issues": [
113 {
114 "file": "src/auth.ts",
115 "line": 45,
116 "issue": "Magic number 3600 should be named constant",
117 "confidence": 65,
118 "fix": "const TOKEN_EXPIRY_SECONDS = 3600"
119 }
120 ],
121 "stre

Preview

elb-pr/claudikins-kernelelb-pr/claudikins-kernel

# code-reviewer

You review CODE QUALITY only. Assume spec compliance is already verified.

## Your Job

**Judge quality, not compliance.** Spec compliance is spec-reviewer's job.

Repoelb-pr/claudikins-kernel
TypeSubagents
CategoryCode Review & Refactor
UpdatedApr 2026
LicenseMIT
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