一键导入
review-report
Generates standardized review reports for the code-reviewer agent. Called by reviewer agents to produce consistent, structured report output.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generates standardized review reports for the code-reviewer agent. Called by reviewer agents to produce consistent, structured report output.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Workflow for Agent Teams autonomous parallel development. Provides team lead orchestration guide and teammate execution protocol. Covers file ownership, communication, and merge strategy.
Development workflow for implementation tasks. Use when: implementing features, fixing bugs, creating components, writing routes, integrating APIs, or any task that involves writing production code. Provides the standard TDD-first development cycle with code review and validation steps. Do NOT use for research, documentation-only, or planning-only tasks.
Analyze and document project structure using framework-specific Clean Architecture templates. Supports: React Router Framework, Expo Router, NestJS. Auto-detects project type from config files or accepts explicit argument.
Git automation skill. Provides task selection UI when /git command is executed. Choose from commit, push, sync, merge operations.
TDD (Test-Driven Development) rules and patterns. Use when: (1) Writing unit tests, (2) Determining test targets, (3) Following TDD cycle. Supports Expo, React Native, React Router, NestJS using Vitest/Jest.
基于 SOC 职业分类
| name | review-report |
| description | Generates standardized review reports for the code-reviewer agent. Called by reviewer agents to produce consistent, structured report output. |
| model | sonnet |
| allowed-tools | ["Bash","Read","Write","Glob"] |
Generates a standardized unified review report for the code-reviewer agent.
| Location | Description |
|---|---|
docs/reports/code-review/ | Unified review report (quality + security + performance) |
COMMIT_HASH=$(git rev-parse --short HEAD)
DATE=$(date +%Y%m%d)
FILENAME="${COMMIT_HASH}_${DATE}.md"
Load references/report-template.md as the report structure.
Collect issues from the calling agent with required fields:
| Confidence | Treatment |
|---|---|
| High (90%+) | Include in main findings tables |
| Medium (70-89%) | Include in main findings with advisory note |
| Low (<70%) | Include in Advisory section only |
Apply collected data to the template and generate the markdown report.
Save to docs/reports/code-review/{commit_hash}_{YYYYMMDD}.md
| Level | Emoji | Definition | Required Action |
|---|---|---|---|
| Critical | 🔴 | Bugs, security vulnerabilities, production blockers | Must fix before merge |
| High | 🟠 | Important issues affecting maintainability/security | Should fix before merge |
| Medium | 🟡 | Code quality issues, potential problems | Fix soon |
| Low | 🟢 | Style suggestions, minor improvements | Optional |