code-review · v1.0.0 · 2026-02-14 · sha256 a808b5c646ee8af8

code-review v1.0.0A

Immutable. This exact content is served forever at /api/v1/blob/a808b5c646ee8af8.

---
name: code-review
description: Perform comprehensive code review including code quality, security, performance, and best practices
version: 1.0.0
author: Pulse Coder Team
---

# Code Review Skill

This skill helps you perform thorough code reviews with focus on:

## What to Check

### Code Quality
- Readability and maintainability
- Proper naming conventions
- Code duplication
- Function/method complexity
- Documentation and comments

### Security
- Input validation
- Authentication and authorization
- SQL injection vulnerabilities
- XSS vulnerabilities
- Sensitive data exposure

### Performance
- Algorithm efficiency
- Database query optimization
- Memory usage
- Resource leaks

### Best Practices
- Design patterns
- SOLID principles
- Framework conventions
- Error handling
- Testing coverage

## Usage

When reviewing code, follow these steps:
1. Read the code thoroughly
2. Check for each category above
3. Provide specific, actionable feedback
4. Suggest concrete improvements
5. Highlight both issues and good practices

## Output Format

Provide feedback in this structure:
- **Critical Issues**: Security vulnerabilities, bugs
- **Improvements**: Performance, maintainability
- **Suggestions**: Best practices, style
- **Positive Notes**: Well-written code, good patterns