一键导入
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)