# code-review > Reviews code for best practices, potential issues, and improvements. Use when reviewing code, checking PRs, or analyzing code quality. - Author: yu5 - Repository: yukyu30/makerket-place-template - Version: 20260103161418 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-07 - Source: https://github.com/yukyu30/makerket-place-template - Web: https://mule.run/skillshub/@@yukyu30/makerket-place-template~code-review:20260103161418 --- --- name: code-review description: Reviews code for best practices, potential issues, and improvements. Use when reviewing code, checking PRs, or analyzing code quality. --- # Code Review Skill When reviewing code, follow these guidelines: ## Review Checklist 1. **Code Organization** - Is the code well-structured? - Are responsibilities properly separated? - Is the naming clear and descriptive? 2. **Error Handling** - Are errors properly caught and handled? - Are error messages informative? - Is there proper logging? 3. **Performance** - Are there any obvious performance issues? - Is there unnecessary complexity? - Are resources properly managed? 4. **Security** - Is user input validated? - Are there any security vulnerabilities? - Is sensitive data properly protected? 5. **Testing** - Is the code testable? - Are edge cases considered? - Is there adequate test coverage? ## Output Format Provide feedback in the following format: - **Summary**: Brief overview of the code quality - **Issues**: List of problems found (severity: high/medium/low) - **Suggestions**: Recommendations for improvement - **Positive Notes**: Good practices observed