一键导入
code-review
Review code changes for quality, security, and correctness. Use this before merging PRs, after significant refactors, or when reviewing agent output.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review code changes for quality, security, and correctness. Use this before merging PRs, after significant refactors, or when reviewing agent output.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Deep-dive analysis of an open-source repository. Clones the repo, explores architecture/patterns/internals, and produces up to 30 structured Markdown files in analysis/<repo-name>/. Use when analyzing a GitHub repo for learnings, comparison, or adoption roadmap.
Review and optimize LLM API costs in the orchestrator. Analyze model routing, budget tracking, prompt caching, and retry logic for cost efficiency.
Deploy services using Docker/OrbStack. Use this to build and deploy containers, run health checks, and manage deployments.
Review production code and update all documentation under docs/ to match the current codebase state.
Build and manage Docker containers via OrbStack. Use this to build images, run containers, check service health, and manage docker-compose services.
End-to-end feature development — implement, iterate with user feedback, test, SOLID review, document, commit & push. Use when building a new feature or making a significant code change that needs quality assurance.
| name | code-review |
| description | Review code changes for quality, security, and correctness. Use this before merging PRs, after significant refactors, or when reviewing agent output. |
| allowed-tools | Bash, Read, Grep, Glob |
Review staged or committed changes for common issues.
# For staged changes
git diff --cached --stat
git diff --cached
# For branch changes vs main
git diff main...HEAD --stat
git diff main...HEAD
Format findings as:
## Code Review Summary
### Critical
- [file:line] Description of critical issue
### Warnings
- [file:line] Description of warning
### Suggestions
- [file:line] Optional improvement
### Verdict: APPROVE / REQUEST_CHANGES