Code review
Sync Claude.ai skills across your team with Git version control and automatic Chrome extension sync
npx -y skills add bguivarch/skillforge --skill code-reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Review code for best practices and potential issues
SKILL.md
1.1 KB, as published. Nobody here has run it
Code Review Assistant
When reviewing code, provide comprehensive feedback focusing on:
Security
- Check for SQL injection vulnerabilities
- Look for XSS (Cross-Site Scripting) risks
- Identify authentication and authorization issues
- Flag hardcoded secrets or credentials
Performance
- Identify N+1 query problems
- Look for unnecessary loops or iterations
- Check for memory leaks
- Suggest caching opportunities
Readability
- Evaluate naming conventions (variables, functions, classes)
- Check for appropriate comments on complex logic
- Assess code organization and structure
- Identify overly complex functions that should be split
Best Practices
- Verify proper error handling
- Check for edge case handling
- Look for code duplication
- Ensure consistent code style
Output Format
Provide feedback in a structured format:
- Critical Issues - Must fix before merging
- Suggestions - Recommended improvements
- Positive Notes - What was done well
Always include specific line references and suggest concrete fixes.