.claude/skills/code-reviewer/SKILL.md
Automated code review using official Claude Code plugin with parallel agents. Integrates ralph-security for OWASP validation and ralph-frontend for accessibility checks. Uses LSP for efficient code navigation.
npx skillsauth add alfredolopez80/multi-agent-ralph-loop code-reviewerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Integrates the official Claude Code code-review plugin.
~/.claude/settings.json or CLI/env varsANTHROPIC_DEFAULT_*_MODEL env vars/code-review # Review current changes
/code-review --comment # Post review as PR comment
4 parallel agents with confidence scoring (≥80):
Official plugin: ~/.claude-sneakpeek/zai/config/plugins/cache/anthropics/code-review/
Author: Boris Cherny ([email protected]) Version: 1.0.0
Optimal Scenario: Pure Custom Subagents
This skill uses Pure Custom Subagents (no Agent Teams) for focused code review operations.
# Official plugin runs 4 parallel agents natively
/code-review → Plugin spawns 4 agents with confidence scoring
# For extended analysis (optional):
Task(subagent_type="ralph-reviewer", prompt="Deep analysis of specific file...")
→ Agent executes with restricted tools
→ Returns detailed findings
→ Complete
| Agent | Allowed Tools | Purpose |
|-------|---------------|---------|
| ralph-reviewer | Read, Grep, Glob | Analysis only (no modifications) |
| ralph-researcher | Read, Grep, Glob | Context lookup only |
Esta skill genera reportes automáticos completos para trazabilidad:
Cuando esta skill completa, se genera automáticamente:
docs/actions/code-reviewer/{timestamp}.md.claude/metadata/actions/code-reviewer/{timestamp}.jsonCada reporte incluye:
# Listar todos los reportes de esta skill
ls -lt docs/actions/code-reviewer/
# Ver el reporte más reciente
cat $(ls -t docs/actions/code-reviewer/*.md | head -1)
# Buscar reportes fallidos
grep -l "Status: FAILED" docs/actions/code-reviewer/*.md
source .claude/lib/action-report-lib.sh
start_action_report "code-reviewer" "Task description"
# ... ejecución ...
complete_action_report "success" "Summary" "Recommendations"
development
Living knowledge base management. Actions: search (query vault), save (store learning), index (update indices), compile (raw->wiki->rules graduation), init (create vault structure). Follows Karpathy pipeline: ingest->compile->query. Use when: (1) searching accumulated knowledge, (2) saving learnings, (3) compiling raw notes into wiki, (4) initializing a new vault. Triggers: /vault, 'vault search', 'knowledge base', 'save learning'.
testing
Produce a verifiable technical specification before coding. 6 mandatory sections: Interfaces, Behaviors, Invariants (from Aristotle Phase 2), File Plan, Test Plan, Exit Criteria (executable bash commands + expected results). Use when: (1) before implementing features with complexity > 4, (2) as Step 1.5 in orchestrator workflow, (3) when requirements need formalization. Triggers: /spec, 'create spec', 'write specification', 'technical spec'.
testing
Pre-launch shipping checklist orchestrating /gates, /security, /browser-test, /perf. Ensures nothing ships without passing all quality checks. Use when: (1) before deploying, (2) before merging to main, (3) before release. Triggers: /ship, 'ship it', 'ready to deploy', 'pre-launch check'.
development
Performance optimization skill. Core Web Vitals via Lighthouse, bundle size analysis, metrics tracking over time. Use when: (1) optimizing frontend performance, (2) analyzing bundle size, (3) tracking metrics regression. Triggers: /perf, 'performance audit', 'core web vitals', 'bundle size'.