con un clic
review-core
Shared contract for independent review agents and durable review findings.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Shared contract for independent review agents and durable review findings.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Durable project-memory rules for `.agent-memory/` plus session-memory boundaries.
Review routing, independent post-implementation review gates, built-in code-review usage, and targeted optimization follow-up.
| name | review-core |
| description | Shared contract for independent review agents and durable review findings. |
| user-invocable | false |
This skill is the single source of truth for independent code-review outputs that feed either:
code-reviewBLOCKER: Must fix before shipping (security, data loss, critical bugs, breaking changes)WARNING: Should fix soon (error handling gaps, likely regressions, notable performance issues)SUGGESTION: Optional improvements (maintainability and design quality)POSITIVE: Good patterns worth preservingAll independent reviewers must return findings in this exact structure:
## Findings
### 🔴 BLOCKER: [File:Line] — [Title]
- Problem: [What's wrong]
- Impact: [Why it matters]
- Fix: [How to resolve]
### 🟡 WARNING: [File:Line] — [Title]
- Problem: [What's wrong]
- Suggestion: [How to improve]
### 🔵 SUGGESTION: [File:Line] — [Title]
- Observation: [What could be better]
- Benefit: [Why consider this]
### ✅ POSITIVE: [Description]
- [Good pattern/implementation found]
.agent-memory/When the Orchestrator requests it (or when the review discovers durable repo-wide rules), append this section after ## Findings:
## Memory Candidate
- [Durable invariant/decision/rule-of-thumb worth remembering]
- [Repeatable error pattern + prevention guardrail]
- [How to run/build/test in this repo (only if stable)]
Keep it short (2–8 bullets). No long narrative.