一键导入
review
Guide for reviewing code changes (uncommitted or on a branch), existing code, and the project in general, providing a structured review report.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for reviewing code changes (uncommitted or on a branch), existing code, and the project in general, providing a structured review report.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Guide for creating E2E feature tests with VHS GIF generation and Zola feature page auto-discovery for new visible UI features.
Guide for bumping project versions and running base release-preparation validations.
Guide for preparing git commits in this repository, including context gathering and repository-specific commit message conventions.
Audit subprocess execution, path handling, SQL queries, panic conditions, and dependency risks in this Rust TUI project.
Sweep the codebase for tech debt and return a prioritized markdown task list of findings.
基于 SOC 职业分类
| name | review |
| description | Guide for reviewing code changes (uncommitted or on a branch), existing code, and the project in general, providing a structured review report. |
Use this skill when asked to review changes (uncommitted, staged, or committed on a feature branch), existing code files, or the overall project.
Gather Context
git diff HEAD or git diff --staged.git diff <base_branch>...HEAD.AGENTS.md) to inform your review.Analyze the Code
Generate the Review Report
# Review Report
## Summary
[Brief summary of the changes or code reviewed and overall impressions]
## Critical Issues
[Issues that cause immediate failures, security risks, or block progress. Must be fixed.]
- **[Issue Title]:** [Description]
- **Recommendation/Fix:** [Actionable advice or exact code fix]
## High Issues
[Significant issues like major bugs, missing tests, or severe architectural deviations.]
- **[Issue Title]:** [Description]
- **Recommendation/Fix:** [Actionable advice or exact code fix]
## Medium Issues
[Style violations, suboptimal performance, missing documentation, or minor edge cases.]
- **[Issue Title]:** [Description]
- **Recommendation/Fix:** [Actionable advice or exact code fix]
## Low Issues (Nitpicks)
[Minor stylistic suggestions, small improvements, or general thoughts.]
- **[Issue Title]:** [Description]
- **Recommendation/Fix:** [Actionable advice or exact code fix]
## Architectural & Maintainability Recommendations
[High-level recommendations for making the project more maintainable, modular, and extendable.]
- **[Area/Component]:** [Description of the current state]
- **Recommendation:** [Actionable advice on improving modularity, separation of concerns, or testability]