code-reviewer
Code Reviewer (Official Plugin)
Integrates the official Claude Code code-review plugin.
v2.88 Key Changes (MODEL-AGNOSTIC)
- Model-agnostic: Uses model configured in
~/.claude/settings.jsonor CLI/env vars - No flags required: Works with the configured default model
- Flexible: Works with GLM-5, Claude, Minimax, or any configured model
- Settings-driven: Model selection via
ANTHROPIC_DEFAULT_*_MODELenv vars
Quick Start
/code-review # Review current changes
/code-review --comment # Post review as PR comment
Architecture
4 parallel agents with confidence scoring (≥80):
- Agent #1: CLAUDE.md compliance
- Agent #2: CLAUDE.md compliance (redundancy)
- Agent #3: Bug detection (changes only)
- Agent #4: Git blame/history analysis
Features
- Multi-agent parallel review
- Confidence-based filtering
- Auto-skip closed/draft/trivial PRs
- Direct GitHub code links
Integration
Official plugin: ~/.claude-sneakpeek/zai/config/plugins/cache/anthropics/code-review/
Author: Boris Cherny (boris@anthropic.com) Version: 1.0.0
Agent Teams Integration (v2.88)
Optimal Scenario: Pure Custom Subagents
This skill uses Pure Custom Subagents (no Agent Teams) for focused code review operations.
Why Scenario B for Code Review
- Native multi-agent: Already uses 4 parallel agents via official plugin
- Read-only operation: Review should not modify code (tool restrictions critical)
- No coordination needed: Analysis is independent per file/PR
- Faster execution: Direct spawn avoids team creation overhead
Configuration
- No TeamCreate: Official plugin already handles parallelism
- Direct Task: Spawn ralph-reviewer for additional analysis if needed
- Tool Restrictions: Review agents restricted to Read/Grep/Glob (no Write/Edit)
- Model Inheritance: Use model configured in settings.json
Workflow Pattern
# 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
Tool Restrictions for Safety
| Agent | Allowed Tools | Purpose |
|---|---|---|
ralph-reviewer |
Read, Grep, Glob | Analysis only (no modifications) |
ralph-researcher |
Read, Grep, Glob | Context lookup only |
When NOT to Use Agent Teams
- Official plugin already provides parallel review
- Read-only analysis doesn't need team coordination
- Tool restrictions prevent accidental changes more effectively than teams
- When review is a one-shot operation (not multi-phase workflow)
Action Reporting (v2.93.0)
Esta skill genera reportes automáticos completos para trazabilidad:
Reporte Automático
Cuando esta skill completa, se genera automáticamente:
- En la conversación de Claude: Resultados visibles
- En el repositorio:
docs/actions/code-reviewer/{timestamp}.md - Metadatos JSON:
.claude/metadata/actions/code-reviewer/{timestamp}.json
Contenido del Reporte
Cada reporte incluye:
- ✅ Summary: Descripción de la tarea ejecutada
- ✅ Execution Details: Duración, iteraciones, archivos modificados
- ✅ Results: Errores encontrados, recomendaciones
- ✅ Next Steps: Próximas acciones sugeridas
Ver Reportes Anteriores
# 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
Generación Manual (Opcional)
source .claude/lib/action-report-lib.sh
start_action_report "code-reviewer" "Task description"
# ... ejecución ...
complete_action_report "success" "Summary" "Recommendations"
Referencias del Sistema
- Action Reports System - Documentación completa
- action-report-lib.sh - Librería helper
- action-report-generator.sh - Generador
More from alfredolopez80/multi-agent-ralph-loop
stop-slop
A skill for removing AI-generated writing patterns ('slop') from prose. Eliminates telltale signs of AI writing like filler phrases, excessive hedging, overly formal language, and mechanical sentence structures. Use when: writing content that should sound human and natural, editing AI-generated drafts, cleaning up prose for publication, or any content that needs to sound authentic rather than AI-generated. Triggers: 'stop-slop', 'remove AI tells', 'clean up prose', 'make it sound human', 'edit AI writing'.
10iterate
Ralph Loop pattern with swarm mode: iterative execution until VERIFIED_DONE with multi-agent coordination. Use when: (1) iterative refinement needed, (2) quality gates must pass, (3) automated validation required. Triggers: /iterate, 'iterate until done', 'keep trying', 'fix until passing', 'loop until done'.
2gemini-cli
|
2minimax
Custom skill for minimax
1clarify
Intensive requirement clarification using structured AskUserQuestion workflow. Gathers MUST_HAVE (blocking) and NICE_TO_HAVE (optional) information before implementation. Use when: (1) starting new feature implementation, (2) requirements are ambiguous, (3) multiple approaches possible, (4) before writing any code. Triggers: /clarify, 'clarify requirements', 'ask questions', 'gather requirements'.
1security
Security audit with Codex + MiniMax second opinion. Integrates ralph-security agent (6 quality pillars, OWASP A01-A10). Uses LSP for code navigation during analysis. Use when: (1) /security is invoked, (2) task relates to security functionality.
1