code-reviewer

Automate code review for security flaws, performance bottlenecks, and quality gaps.

Updated Dec 12, 2025
One-click install
npx skills add https://github.com/jk278/veld --skill code-reviewer-jk278
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-reviewer
Source: https://github.com/jk278/veld/tree/main/.claude/skills/code-reviewer
Command: npx skills add https://github.com/jk278/veld --skill code-reviewer-jk278

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Developers need consistent, thorough feedback on security, performance, and coding standards to reduce defects and technical debt.

Core Features & Use Cases

  • Security Review: Identify vulnerabilities (e.g., injection, authentication flaws) and suggest fixes.
  • Performance Review: Detect inefficient patterns, N+1 queries, and memory bottlenecks.
  • Code Quality: Check for DRY, SOLID principles, naming conventions, and documentation gaps.
  • Testing & Coverage: Assess test adequacy and edge-case handling.
  • Documentation: Ensure meaningful comments and README updates accompany changes.

Quick Start

Review the latest pull request for security and performance issues and propose concrete improvements.

Frequently Asked Questions about code-reviewer

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

FAQPage Schema
How do I automate security and performance code reviews in pull requests?

Automated code review identifies security flaws like SQL injection and XSS, detects performance bottlenecks such as N+1 queries and memory leaks, and flags coding standard violations. It runs during pull requests to catch issues before merge, providing actionable feedback with concrete code examples.

What security vulnerabilities can automated code review detect?

Security review catches injection attacks, XSS, authentication flaws, and other common vulnerabilities. It analyzes code patterns statically and dynamically to highlight risky implementations and suggest concrete fixes before code reaches production.

Can automated code review check test coverage and documentation quality?

Yes. Code review assesses test adequacy, identifies missing edge cases, and ensures documentation is consistent with changes. It validates that comments, docstrings, and README updates accompany code modifications.

How does automated code review enforce coding standards?

It checks compliance with DRY and SOLID principles, naming conventions, and structural patterns. The review applies consistent standards across pull requests and before commits, reducing technical debt through systematic quality checks.

What performance issues does automated code review identify?

Performance review detects N+1 queries, inefficient loops, memory bottlenecks, and other resource-waste patterns. It highlights optimization opportunities with specific code examples to improve application efficiency.