원클릭으로
ultrareview
Deep code review using Claude Code's thorough analysis mode — security, performance, correctness, and maintainability
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deep code review using Claude Code's thorough analysis mode — security, performance, correctness, and maintainability
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Orchestrate multi-agent teams in Claude Code — set up coordinated sessions with task delegation, inter-agent communication, and parallel execution
Leverage Claude Code's ultra-deep planning mode for complex architecture decisions, multi-file refactors, and system design
Safe isolated testing environment for multi-agent swarm topologies before production deployment
Automatically summarizes the current session context to prevent token window overflow.
Claude Code context pruner: slash command to summarize session and reset token bloat
Produces a campaign performance summary from session-log.md entries. Reports open rates, reply rates, and meeting conversion rates per sequence. Flags top performers (reply rate >10%) and underperformers (reply rate <3%). Recommends one concrete change per underperforming sequence.
| name | ultrareview |
| description | Deep code review using Claude Code's thorough analysis mode — security, performance, correctness, and maintainability |
Understand context. Read the PR description, linked issues, and related code before diving into the diff.
Review in layers. Go through the changes 3 times, each with a different lens:
Pass 1 — Correctness:
Pass 2 — Security:
Pass 3 — Maintainability:
Categorize findings:
Provide actionable feedback. For each finding:
Acknowledge good patterns. Call out well-written code, clever solutions, or good test coverage.
PR: "Add user search endpoint"
## Ultrareview Results
### BLOCKER
- **SQL Injection in search query** (api/users/search.js:42)
The search term is interpolated directly into the SQL string.
Fix: Use parameterized queries.
```js
// Before (vulnerable)
db.query(`SELECT * FROM users WHERE name LIKE '%${query}%'`)
// After (safe)
db.query('SELECT * FROM users WHERE name LIKE $1', [`%${query}%`])
UserSearchService class for testability.q on line 15 → rename to searchQuery for clarity.
---
Built with [Claudient](https://github.com/UitbreidenOS/Claudient) · [Claude Code](https://claude.com/claude-code)