원클릭으로
review-aggregation
Guidance on combining findings from multiple review agents into actionable recommendations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidance on combining findings from multiple review agents into actionable recommendations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Update Brain Dump's AI model pricing catalog (DEFAULT_COST_MODELS) when providers release new models or change prices. Use when the user asks to add a new model, refresh provider pricing, or fix ticket cost attribution for a model that shows $0 or wrong costs. Covers Anthropic, OpenAI, Google, Cursor, OpenCode, and open-source providers.
Use this skill when Ralph is working autonomously through Brain Dump backlogs. Covers ticket selection, implementation patterns, and autonomous workflow management.
MANDATORY quality workflow for Brain Dump tickets. Defines the exact MCP tool call sequence every ticket must follow. Load this before starting any ticket work.
Enforces Brain Dump quality workflow for ticket implementation with automatic telemetry
Autonomous backlog processing workflow for Brain Dump using the Universal Quality Workflow. Use when working through multiple tickets autonomously or when asked to process a backlog like Ralph.
MANDATORY quality workflow for Brain Dump tickets. Defines the exact MCP tool call sequence every ticket must follow. Load this before starting any ticket work.
| name | review-aggregation |
| description | Guidance on combining findings from multiple review agents into actionable recommendations |
| triggers | ["running extended review","synthesizing review findings","combining agent outputs","prioritizing review issues"] |
This skill provides guidance on how to effectively combine and prioritize findings from multiple code review agents.
Apply this skill when:
Gather outputs from all review agents:
| Agent | Focus Area | Output Format |
|---|---|---|
| code-reviewer | Style, security, logic | Issues list |
| silent-failure-hunter | Error handling, silent failures | Severity-rated |
| code-simplifier | Redundancy, clarity | Suggestions |
| context7-library-compliance | Library best practices, deprecated | Doc-referenced |
| react-best-practices | Component design, hooks, perf | Pattern violations |
| cruft-detector | Unnecessary code, shallow tests | Cruft inventory |
Multiple agents may flag the same issue:
Use this matrix to assign final priority:
| Criteria | Priority | Examples |
|---|---|---|
| Security vulnerability | P0 | SQL injection, XSS, auth bypass |
| Data loss risk | P0 | Missing transactions, race conditions |
| Breaking production | P0 | Undefined behavior, unhandled exceptions |
| Shallow tests (false safety) | P1 | Tests that pass when feature is broken |
| Silent failures | P1 | Empty catch, swallowed errors |
| Deprecated API (will break) | P1 | Using removed/deprecated APIs |
| Performance regression | P2 | N+1 queries, memory leaks, blocking operations |
| Library misuse | P2 | Anti-patterns per official docs |
| Missing best practices | P2 | Not following recommended patterns |
| Code style/cruft | P3 | Unnecessary comments, minor redundancy |
| Documentation gaps | P3 | Missing or outdated comments |
Look for systemic issues:
Pattern Detection Checklist:
- [ ] Same issue in 3+ locations = Systemic problem
- [ ] Multiple agents flag same area = High-risk zone
- [ ] Test issues + code issues together = Likely bug
- [ ] Similar mistakes across files = Missing guidance/tooling
## Review Summary
### At a Glance
- Files reviewed: X
- Total issues: Y (P0: A, P1: B, P2: C, P3: D)
- Recommendation: [APPROVE / APPROVE WITH FIXES / REQUEST CHANGES]
### Critical Path (P0-P1)
These MUST be addressed before merge:
1. [Issue] in `file:line` - [Brief reason why critical]
2. [Issue] in `file:line` - [Brief reason why critical]
### Important (P2)
Should address, can track as follow-up:
1. [Issue] in `file:line`
2. [Issue] in `file:line`
### Improvements (P3)
Nice-to-have for future cleanup:
1. [Issue] in `file:line`
2. [Issue] in `file:line`
### Patterns Detected
[Any systemic issues that need broader attention]
### What's Done Well
[Positive observations to reinforce good patterns]
When the same area has issues from multiple agents:
┌─────────────────────────────────────────────────────┐
│ src/api/auth.ts:45-67 │
├─────────────────────────────────────────────────────┤
│ code-reviewer: Missing input validation │
│ silent-failure-hunter: Empty catch block │
│ cruft-detector: Comment describes "what" not "why" │
│ context7: Using deprecated bcrypt.hash() pattern │
├─────────────────────────────────────────────────────┤
│ AGGREGATED: P0 - Auth handler has multiple issues │
│ - Security: input validation + deprecated API (P0) │
│ - Reliability: silent failure (P1) │
│ - Quality: poor comment (P3) │
│ │
│ Recommendation: Rewrite this handler entirely │
└─────────────────────────────────────────────────────┘
Escalate to P0 regardless of individual agent rating when:
Consider downgrading when:
Full aggregation happens automatically via hooks:
Manual aggregation - guide user through: