← ClaudeAtlas

code_reviewlisted

Review code for quality, security, and best practices. Use when analyzing code, suggesting improvements, or conducting code reviews.
tanveerkhan2005/custom-agent-with-skills · ★ 2 · Code & Development · score 68
Install: claude install-skill tanveerkhan2005/custom-agent-with-skills
# Code Review Skill Provides comprehensive code review capabilities covering quality, security, and best practices analysis. ## When to Use - User asks you to review their code - User wants to improve code quality - User asks about security vulnerabilities in code - User wants to identify antipatterns or code smells - User requests best practices suggestions - User wants a general code quality assessment ## Available Operations 1. **Analyze Code Structure**: Evaluate organization, modularity, and architecture 2. **Check Best Practices**: Compare against established coding standards 3. **Security Review**: Identify potential security vulnerabilities 4. **Antipattern Detection**: Find common code smells and antipatterns 5. **Generate Review Report**: Provide structured feedback with recommendations ## Multi-Step Review Workflow When conducting a code review, follow these steps in order: ### Step 1: Initial Code Analysis Read the code thoroughly and identify: - Primary purpose and functionality - Programming language and frameworks used - Overall structure and organization - Entry points and main logic flow ### Step 2: Best Practices Check Evaluate the code against best practices. Load the best practices guide for comprehensive checks: - `references/best_practices.md` - Comprehensive coding standards and practices Key areas to check: - Naming conventions (variables, functions, classes) - Function design (single responsibility, proper parameters) - Error handling patt