원클릭으로
code-review
Technical code review for quality and bugs on recently changed files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Technical code review for quality and bugs on recently changed files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Fix bugs found in a code review
First-time project setup after cloning
Create comprehensive feature plan with deep codebase analysis and research
Run the test suite
Run full validation suite (build, lint, type check, tests)
Create an atomic commit with conventional commit format
| name | code-review |
| description | Technical code review for quality and bugs on recently changed files |
| disable-model-invocation | true |
| allowed-tools | Read, Grep, Glob, Bash |
Perform a technical code review on recently changed files.
Read CLAUDE.md and key conventions in .claude/rules/ to understand project standards.
Then examine changes:
git status
git diff HEAD
git diff --stat HEAD
git ls-files --others --exclude-standard
Read each changed and new file in its entirety (not just the diff) to understand full context.
For each file, analyze for:
Save to .agents/code-reviews/{appropriate-name}.md
Stats:
For each issue:
severity: critical|high|medium|low
file: path/to/file
line: 42
issue: [one-line description]
detail: [why this is a problem]
suggestion: [how to fix it]
If no issues found: "Code review passed. No technical issues detected."