一键导入
code-review-checklist
Systematic code review with quality gates, security audit, and parallel checks. Use for structured feedback on pull requests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Systematic code review with quality gates, security audit, and parallel checks. Use for structured feedback on pull requests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Tool-agnostic search — query construction, tool selection, source trust hierarchy.
Auto-continue through todos with idle detection and safety gates. Use for multi-step orchestration.
Level 2 — Pantheon-native context compression with priority scoring, semantic summarization, downstream-aware compression, budget allocation, and cross-references
Automated visual review pipeline — Playwright screenshots, self-analysis, fix loop, escalation. Used by Aphrodite for UI verification.
Multi-agent orchestration with model routing, category delegation, and sprint management. Use for coordinating Pantheon agents.
MCP security hardening — credential leakage prevention, input sanitization, and tool access control. Use for reviewing agent MCP configurations.
| name | code-review-checklist |
| description | Systematic code review with quality gates, security audit, and parallel checks. Use for structured feedback on pull requests. |
| context | fork |
| globs | [] |
| alwaysApply | false |
Systematic code review combining quality gates, security audit (OWASP Top 10), and parallel checks for comprehensive validation.
Before any manual review, run automated checks:
# Python
ruff check --select F,E,W,UP,B,SIM --output-format concise <files> && ruff format --check <files>
# TypeScript/JavaScript
biome check --write --unsafe <files>
Block review if checks fail. Return NEEDS_REVISION with specific violations.
## Verdict: APPROVED | NEEDS_REVISION | FAILED
### Issues
- CRITICAL: X | HIGH: Y | MEDIUM: Z | LOW: W
### Details
- [CRITICAL] file.py:42 — SQL injection risk, use parameterized queries
- [HIGH] component.tsx:15 — Missing input validation
- [MEDIUM] test_utils.py:8 — Edge case not covered
### 🔍 Human Review Focus
1. [Item AI cannot fully validate — e.g., business logic correctness]
2. [Item 2 — e.g., UX flow matches requirements]
For comprehensive reviews, run 5 checks simultaneously:
| Check | Focus | Agent |
|---|---|---|
| Goal | Does it meet requirements? | Themis |
| Quality | Code quality, SOLID, DRY | Themis |
| Security | OWASP Top 10, secrets | Themis |
| QA | Tests, coverage, edge cases | Themis |
| Context | Fits architecture, no regressions | Themis |
| Level | Action | Example |
|---|---|---|
| CRITICAL | Block merge | Security vulnerability, data loss risk |
| HIGH | Must fix before merge | Missing auth, broken error handling |
| MEDIUM | Should fix soon | Missing tests, code duplication |
| LOW | Nice to have | Naming, formatting, minor docs |