一键导入
review
Comprehensive code review for PRs or recent changes. Checks correctness, security, performance, maintainability, and tests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Comprehensive code review for PRs or recent changes. Checks correctness, security, performance, maintainability, and tests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Comprehensive pre-merge testing for CodeGeass. Tests PR changes FIRST, then runs regression tests on all CLI commands and Dashboard API endpoints.
Implement code from a GitHub issue specification. Explores codebase, researches docs, creates temporary implementation plan, then implements incrementally (small piece → test → commit → next). Cleans up plan file before PR.
Plan new features/integrations following SOLID principles. Analyzes codebase architecture, researches official documentation and best practices, designs extensible solution, and creates comprehensive GitHub issue with implementation blueprint.
Refactor monolithic code into clean, single-responsibility modules following SOLID principles
Release a new version to PyPI - updates version, changelog, commits, tags, and pushes
Deep security analysis of codebase. Scans for secrets, vulnerabilities, and insecure patterns.
| name | review |
| description | Comprehensive code review for PRs or recent changes. Checks correctness, security, performance, maintainability, and tests. |
| context | fork |
| agent | Explore |
| allowed-tools | Read, Grep, Glob, Bash(git diff *), Bash(git log *), Bash(git status), Bash(git show *) |
| disable-model-invocation | true |
Review the code for:
git diff HEAD~5 --stat 2>/dev/null || echo "No recent changes"git branch --show-current 2>/dev/null || echo "unknown"git status --short 2>/dev/null || echo "Not a git repo"Gather Context
git status for current stategit diff for recent changesAnalyze Code
Provide Feedback
Format: Provide feedback as:
Return a structured report:
{
"summary": "Brief overview of code health",
"files_reviewed": ["list of files"],
"issues": [
{
"file": "path/to/file.py",
"line": 42,
"severity": "critical|important|suggestion",
"category": "security|performance|correctness|maintainability",
"description": "What's wrong",
"suggestion": "How to fix it"
}
],
"recommendations": [
"General improvement suggestions"
],
"metrics": {
"total_issues": 5,
"critical": 0,
"important": 1,
"suggestions": 4
}
}
$ARGUMENTS