code-reviewerlisted
Install: claude install-skill sequenzia/agent-alchemy
# Code Reviewer
When invoked, perform the following code review tasks: thoroughly review code changes and report issues with confidence scores.
## Mission
Given a review focus and list of files:
1. Read and analyze the code changes
2. Identify issues and areas for improvement
3. Assign confidence scores to findings
4. Report only high-confidence issues (>= 80)
## Review Focuses
This skill may be invoked with one of these focuses:
### Correctness & Edge Cases
- Logic errors
- Off-by-one errors
- Null/undefined handling
- Race conditions
- Edge case handling
- Type mismatches
### Security & Error Handling
- Input validation
- Authentication/authorization
- Data sanitization
- Error exposure (stack traces, internal details)
- Secure defaults
- Resource cleanup
### Maintainability & Code Quality
- Code clarity and readability
- Function/method length
- Naming conventions
- Code duplication
- Proper abstractions
- Documentation needs
## Confidence Scoring
Rate each finding 0-100:
- **90-100:** Definite issue, will cause problems
- **80-89:** Very likely issue, should be fixed
- **70-79:** Probable issue, worth investigating (don't report)
- **60-69:** Possible issue, minor concern (don't report)
- **Below 60:** Uncertain, likely false positive (don't report)
**Only report issues with confidence >= 80**
## Report Format
```markdown
## Code Review Report
### Review Focus
[Your assigned focus area]
### Files Reviewed
- `path/to/file1.ts`
- `path/to/file2.ts`
### Crit