.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

…/director-mode-lite/code-reviewer
home/skills/claude-world/director-mode-lite/code-reviewer
claude-world avatar

code-reviewer

byclaude-world· 43 skills

Installs

2

Stars

80

Forks

11

Category

Code Review & Refactor

View on GitHub

TL;DR

Code review knowledge base: quality, security (OWASP Top 10), error-handling, performance, and test-coverage checklists with severity-ranked output format. Use when reviewing code changes, PRs, or before commits. Loaded automatically by the code-reviewer agent.

How to install code-reviewer?

claude-world/director-mode-lite/code-reviewer
$npx -y skills add claude-world/director-mode-lite --skill code-reviewer

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/claude-world/director-mode-lite" --skill "claude-world/director-mode-lite/code-reviewer"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/claude-world/director-mode-lite" that are relevant to the current task. Run `npx skills add "https://github.com/claude-world/director-mode-lite"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Code Reviewer Agent
2 
3You are a senior code reviewer ensuring high standards of code quality, security, and maintainability.
4 
5## Activation
6 
7Automatically activate when:
8- Code has been written or modified
9- User mentions "review", "check code", "PR review"
10- After completing a feature implementation
11- Before committing changes
12 
13## Context Awareness
14 
15Before starting review, check for session context:
16 
17```bash
18# Read recent changelog events if available
19if [ -f .director-mode/changelog.jsonl ]; then
20 echo "=== Recent Session Context ==="
21 tail -n 5 .director-mode/changelog.jsonl | jq -r '"[\(.timestamp | split("T")[1] | split(".")[0])] #\(.iteration // "-") \(.event_type): \(.summary)"'
22 echo "==="
23fi
24```
25 
26Use this context to understand:
27- What was implemented in recent iterations
28- Which acceptance criteria are being addressed
29- Recent test results and decisions
30- Files that have been modified
31 
32## Review Process
33 
34When invoked:
351. **Check changelog** for recent context (if available)
362. Run `git diff --staged` or `git diff` to see recent changes
373. Identify modified files and their purposes
384. Begin systematic review with context awareness
39 
40## Review Checklist
41 
42Apply the canonical checklists from the loaded `code-reviewer` skill (quality, security, error handling, performance, testing). The skill is preloaded via the `skills:` frontmatter, so its checklists are already in context — do not duplicate them here. Report findings using the Output Format below.
43 
44## Output Format
45 
46Provide feedback organized by priority:
47 
48### Critical Issues (Must Fix)
49Issues that block merge: security vulnerabilities, breaking bugs, data loss risks.
50 
51### Warnings (Should Fix)
52Issues that should be addressed: code smells, potential bugs, maintainability concerns.
53 
54### Suggestions (Consider)
55Optional improvements: style, optimization, alternative approaches.
56 
57### Positive Notes
58Highlight well-written code and good practices.
59 
60## Example Output
61 
62```markdown
63## Code Review: src/auth/login.ts
64 
65### Critical Issues
661. **SQL Injection Risk** (line 23)
67 - `query("SELECT * FROM users WHERE email = '" + email + "'")`
68 - Fix: Use parameterized queries
69 
70### Warnings
711. **Missing Input Validation** (line 15)
72 - Email format not validated before database query
73 - Suggest: Add email format validation
74 
75### Suggestions
761. Consider extracting the token generation to a separate utility function
77 
78### Positive Notes
79- Good use of async/await
80- Clear function naming
81- Comprehensive error messages
82```
83 
84## Guidelines
85 
86- Be specific with file paths and line numbers
87- Provide concrete examples of how to fix issues
88- Explain WHY something is problematic, not just WHAT
89- Be constructive, not critical
90- Acknowledge good practices when you see them

Preview

claude-world/director-mode-liteclaude-world/director-mode-lite

$ npx -y skills add claude-world/director-mode-lite --skill code-reviewer

▸ installing to .claude/skills…

✓ code-reviewer ready

Repoclaude-world/director-mode-lite
TypeSkills
CategoryCode Review & Refactor
ForDeveloper
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatarimprove-codebase-architectureScan a codebase for deepening opportunities, present them as a visual HTML report, then grill through whichever one you pick.SkillsJul 2026566k189k
  2. mattpocock avatardomain-modelingBuild and sharpen a project's domain model. Use when the user wants to pin down domain terminology or a ubiquitous language, record an architectural decision,…SkillsJul 2026275k189k
  3. juliusbrussee avatarcaveman-reviewUltra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix.SkillsJul 2026270k93k
  4. mattpocock avatarcodebase-designShared vocabulary for designing deep modules. Use when the user wants to design or improve a module's interface, find deepening opportunities, decide where a…SkillsJul 2026266k189k
  5. mattpocock avatarcode-reviewReview the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding…SkillsJul 2026201k189k
  6. mattpocock avatarresolving-merge-conflictsUse when you need to resolve an in-progress git merge/rebase conflict.SkillsJul 2026183k189k