code-reviewer

Detect code quality issues across JavaScript, TypeScript, Python, Go, and React.

763|165|Updated Sep 16, 2025
One-click install
npx skills add https://github.com/alirezarezvani/claude-code-tresor --skill code-reviewer-alirezarezvani
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-reviewer
Source: https://github.com/alirezarezvani/claude-code-tresor/tree/main/skills/development/code-reviewer
Command: npx skills add https://github.com/alirezarezvani/claude-code-tresor --skill code-reviewer-alirezarezvani

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides instant, automatic code quality and best practices analysis as you write code, catching issues like style violations, potential bugs, and basic security flaws in real-time. It helps you maintain high code standards, reduce errors, and learn best practices without interrupting your workflow.

Core Features & Use Cases

  • Instant Feedback: Analyzes code on file saves or modifications, providing non-blocking alerts with severity levels and quick fix suggestions.
  • Comprehensive Checks: Covers code style, common anti-patterns, null checks, basic security (e.g., SQL injection, hardcoded secrets), and best practices.
  • Use Case: You write a JavaScript function with a potential SQL injection: return db.query('SELECT * FROM users WHERE id = ' + id);. The skill immediately flags a CRITICAL vulnerability, suggesting parameterized queries as a secure alternative.

Quick Start

The skill activates automatically when you modify or save code files.

Write some code, for example, a function with a potential bug:

function getUser(id) { return db.query(SELECT * FROM users WHERE id = ${id}); }

The skill will instantly provide feedback on code quality and potential issues.

Frequently Asked Questions about code-reviewer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I catch code quality issues in real-time while writing?

Real-time code quality checks analyze your code instantly on file saves or edits, flagging style violations, anti-patterns, potential bugs, and security flaws like SQL injection with severity labels and fix suggestions before you commit.

What programming languages does automated code review support?

Automated code review covers JavaScript, TypeScript, Python, Go, and React ecosystems, detecting issues across all supported languages with non-blocking analysis and sub-second latency.

Can code quality checks detect security vulnerabilities automatically?

Yes, automated checks flag basic security concerns including hardcoded secrets, SQL injection risks, and other common vulnerabilities, delivering structured findings with severity levels for remediation.

How much project access does real-time code analysis require?

Real-time code quality analysis requires read-only project access to monitor file edits, saves, and diffs, ensuring non-blocking feedback without write permissions to your codebase.

What's the difference between code review automation and manual code review?

Automated code review provides instant, continuous feedback during development with instant latency and consistent checks, while manual review catches contextual issues; both complement each other in a complete quality workflow.