원클릭으로
code-reviewer
Review code changes for best practices, complexity, compatibility, and gaps
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review code changes for best practices, complexity, compatibility, and gaps
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a conventional commit from staged changes without Co-Authored-By
Review codebase for CLEAN code practices and DRY violations
Create a descriptive GitHub PR with summary and test plan using gh CLI
Implement features following strict coding best practices with docs and tests
Run ruff linting and formatting checks, auto-fix issues
Scan for hardcoded secrets, credentials, tokens, and security vulnerabilities
| name | code-reviewer |
| description | Review code changes for best practices, complexity, compatibility, and gaps |
| user-invocable | true |
| argument-hint | [git ref range or 'staged', defaults to develop..HEAD] |
| context | fork |
| agent | general-purpose |
| allowed-tools | Read, Bash, Grep, Glob |
Perform a read-only review of code changes for best practices compliance, complexity, compatibility, and gaps.
Review changes in: $ARGUMENTS (default: develop..HEAD)
If $ARGUMENTS is staged, review git diff --cached instead.
Check against the project's /developer standards:
Args:, Raises:, Returns: on all new/modified functionsField(description=...) usage on new model fieldsFlag any of these patterns:
Verify compliance with project constraints:
match statements)model_validator, model_config, ConfigDict)requests library patterns (no httpx, aiohttp unless justified)Identify missing pieces:
Produce a structured review with three severity levels:
Must be fixed before merging. Include file path, line number, and clear description.
Should be addressed but not blocking. Include file path, line number, and suggestion.
Nice-to-have improvements. Include file path and brief description.