원클릭으로
review
Review code changes implemented in the current session before committing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review code changes implemented in the current session before committing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | review |
| description | Review code changes implemented in the current session before committing |
| allowed-tools | Read, Grep, Glob, Bash(git *) |
Review the code changes implemented in the current session before committing.
Gather Changes
git status
git diff --stat
Identify all modified and new files from the current work.
Read Changed Files
For each modified or new file, read the full content to understand the implementation.
Use git diff <file> for modified files to see what changed.
Analyze Changes Review the code for:
type over interface, etc.)any, type safetyStructure the Review Format your review with clear sections:
## Code Review: [Feature/Change Name]
### Overview
Brief summary of what the changes do.
### Code Quality & Style
- Positives
- Issues found
### Potential Issues & Risks
Bugs, edge cases, or concerns.
### Performance Implications
Any performance considerations.
### Suggestions for Improvement
Specific, actionable recommendations.
### Summary
Overall assessment and next steps.
Be Constructive
Check for Common Issues
Verify Against Project Rules
Read the rule files in .claude/rules/ and verify the code follows them:
.claude/rules/typescript.md: Types, naming, ordering.claude/rules/javascript.md: Formatting, arrow functions, explicit returns, early returns.claude/rules/react/component.md: File structure, component structure, map component template.claude/rules/react/hooks.md: useEffect extraction, dependencies, memoization rules.claude/rules/react/props.md: Type extraction, ordering, defaults, documentation.claude/rules/react/patterns.md: Component size, composition, common patterns.claude/rules/react/rendering.md: Conditional rendering, inline functions, keys, fragments.claude/rules/react/performance.md: Resource cleanup, refs vs state, layer management, canvas, DOM.claude/rules/clean-code.md: Naming, functions, comments, formatting, error handling.claude/rules/nextjs.md: App Router folder structure, file naming.claude/rules/security.md: XSS, CSP, CORS, CSRF, secrets, rate limitingFlag any violations with the specific rule and file location.
Verify Page Navigation
If docs pages were added or modified, verify the prev and next props in DocsLayout match the sidebar navigation order defined in src/app/docs/_components/docs-sidebar.tsx. Check:
prev, the last page has no nextRead a GitHub issue, summarize it, and create a branch for it
Commit, push, and open a pull request on GitHub
Verify all outputs exist after creating a new component and fix any issues
Create standardized git commits following Terrae's conventions
Generate or update documentation for Terrae components
Systematically fix issues found by /review or reported by the user