From synapse-review
Deep code review with cross-agent support. Supports claude-only, codex-review, and dual-review modes. Use when the user says /code-review, "review code", "代码审查", or when code needs quality verification after implementation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/synapse-review:code-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Multi-mode code review supporting single-agent and cross-agent review patterns. Integrates with EARS for knowledge capture.
Multi-mode code review supporting single-agent and cross-agent review patterns. Integrates with EARS for knowledge capture.
git diff to find recent changesFast single-perspective review by Claude Code. Best for small, low-risk changes.
Codex performs the review, Claude adjudicates findings.
Via MCP:
PROMPT: files to review + review instructions (see dimensions below)cd: current working directorysandbox: "read-only"return_all_messages: trueVia Shell fallback:
bash <plugin-scripts-dir>/ask_codex.sh "<review-prompt>" read-only "<working-dir>"
Both Claude and Codex review independently, then cross-compare findings. Most thorough, best for critical changes.
Every review evaluates these 5 dimensions. Each issue gets a severity tag.
| Dimension | What to Check |
|---|---|
| Correctness | Logic errors, off-by-one, null handling, race conditions |
| Security | Injection, auth bypass, secrets exposure, input validation |
| Performance | O(n²) loops, memory leaks, unnecessary allocations |
| Readability | Naming, structure, complexity, documentation |
| Test Coverage | Missing tests, edge cases, assertion quality |
Severity levels: CRITICAL / HIGH / MEDIUM / LOW
Write to ./plans/code-review-{timestamp}.md:
## Code Review Report
**Reviewer**: Claude Code | Codex | Dual
**Verdict**: APPROVED | NEEDS_FIX | NEEDS_MAJOR_REWORK
**Files Reviewed**: N files
**Issues Found**: X critical, Y high, Z medium, W low
### Issues
#### [CRITICAL] Issue title
- **File**: path/to/file.py:42
- **Dimension**: Correctness
- **Description**: ...
- **Suggested Fix**: ...
#### [HIGH] Issue title
...
/commit + /push; otherwise git add -A && git commit && git push manually/plan-reviewIf synapse-ears is installed:
If synapse-ears is NOT installed, skip EARS entries.
npx claudepluginhub chosenx-gpu/synapse --plugin synapse-reviewDelegates structured code review to a separate Claude Code session via the claude_code MCP tool, returning findings by severity and category.
Orchestrates parallel agents to review code changes for CLAUDE.md compliance, bugs, git history, and security with confidence scores. Outputs reports or posts to GitHub PRs.
Runs a structured code review using Codex, Claude, or other engines as a closeout check before commit or ship.