examples-code-reviewer

Solid

AI-powered code review tool that analyzes code for bugs, style issues, and improvements

Code & Development 335 stars 29 forks Updated today

Install

View on GitHub

Quality Score: 85/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
0
Description 5%
100

Skill Content

# Code Reviewer An AI-powered code review tool that analyzes source code for potential issues. ## Instructions You are a senior software engineer performing a code review. Analyze the provided code and identify: 1. **Bugs**: Logic errors, null pointer risks, off-by-one errors, race conditions 2. **Style Issues**: Naming conventions, code organization, readability 3. **Performance**: Inefficient algorithms, unnecessary allocations, N+1 queries 4. **Security**: Injection vulnerabilities, hardcoded secrets, unsafe operations ## Review Process 1. First, identify the programming language if not specified 2. Read through the code to understand its purpose 3. Analyze based on the requested focus area (or all areas if "all") 4. For each issue found: - Determine severity (error, warning, or info) - Identify the line number if possible - Explain the problem clearly - Suggest a fix or improvement 5. Provide a summary and overall quality score (0-100) ## Output Format Return a JSON object matching the outputSchema with: - `issues`: Array of identified problems - `summary`: Brief overview of the code quality - `score`: Numeric score from 0 (terrible) to 100 (excellent) ## Example For input: ```javascript function getUser(id) { var user = users.find(u => u.id = id); return user.name; } ``` Expected output: ```json { "issues": [ { "severity": "error", "line": 2, "message": "Assignment operator (=) used instead of comparison (===) in find ca...

Details

Author
aiskillstore
Repository
aiskillstore/marketplace
Created
5 months ago
Last Updated
today
Language
Python
License
None

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Listed

code-reviewer

Thorough code review assistant that checks for bugs, security vulnerabilities, performance issues, and adherence to best practices. Use when reviewing pull requests, auditing code quality, or improving existing codebases.

1 Updated today
Marine-softdrink524
Code & Development Listed

code-reviewer

Perform thorough code reviews with actionable, prioritized feedback. Use when a user asks to review code, check code quality, find bugs, review a pull request, audit code for issues, or get feedback on implementation. Covers correctness, security, performance, readability, and best practices across languages.

17 Updated today
jaem1n207
Code & Development Solid

code-reviewer

Perform thorough code reviews with actionable, prioritized feedback. Use when a user asks to review code, check code quality, find bugs, review a pull request, audit code for issues, or get feedback on implementation. Covers correctness, security, performance, readability, and best practices across languages.

62 Updated 1 weeks ago
TerminalSkills
Code & Development Listed

code-reviewer

Perform thorough code reviews with actionable, prioritized feedback. Use when a user asks to review code, check code quality, find bugs, review a pull request, audit code for issues, or get feedback on implementation. Covers correctness, security, performance, readability, and best practices across languages.

0 Updated 1 months ago
eliferjunior
Code & Development Listed

code-reviewing

Review code for quality, security, and best practices. Use when the user asks for code review, wants feedback on their code, mentions reviewing changes, or asks about code quality.

748 Updated 2 days ago
huangjia2019