بنقرة واحدة
review-core
Shared contract for independent review agents and durable review findings.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Shared contract for independent review agents and durable review findings.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف 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.