| name | code-review |
| classification | workflow |
| classification-reason | Process automation persists regardless of model advancement |
| deprecation-risk | none |
| effort | high |
| description | Code review — analyze quality, detect bugs, ensure best practices with actionable feedback.
Triggers: code review, quality check, bug detection
|
| argument-hint | [file|directory|pr] |
| user-invocable | true |
| agent | bkit:code-analyzer |
| allowed-tools | ["Read","Glob","Grep","LSP","Task","Bash"] |
| imports | ["${PLUGIN_ROOT}/templates/pipeline/phase-8-review.template.md"] |
| next-skill | null |
| pdca-phase | check |
| task-template | [Code-Review] {feature} |
Code Review Skill
Skill for code quality analysis and review
Arguments
| Argument | Description | Example |
|---|
[file] | Review specific file | /code-review src/lib/auth.ts |
[directory] | Review entire directory | /code-review src/features/ |
[pr] | PR review (PR number) | /code-review pr 123 |
Review Categories
1. Code Quality
- Duplicate code detection
- Function/file complexity analysis
- Naming convention check
- Type safety verification
2. Bug Detection
- Potential bug pattern detection
- Null/undefined handling check
- Error handling inspection
- Boundary condition verification
3. Security
- XSS/CSRF vulnerability check
- SQL Injection pattern detection
- Sensitive information exposure check
- Authentication/authorization logic review
4. Performance
- N+1 query pattern detection
- Unnecessary re-render check
- Memory leak pattern detection
- Optimization opportunity identification
Review Output Format
## Code Review Report
### Summary
- Files reviewed: N
- Issues found: N (Critical: N, Major: N, Minor: N)
- Score: N/100
### Critical Issues
1. [FILE:LINE] Issue description
Suggestion: ...
### Major Issues
...
### Minor Issues
...
### Recommendations
- ...
Agent Integration
This Skill calls the code-analyzer Agent for in-depth code analysis.
| Agent | Role |
|---|
| code-analyzer | Code quality, security, performance analysis |
Usage Examples
/code-review src/lib/auth.ts
/code-review src/features/user/
/code-review 42
/code-review staged