🎯

code-review

🎯Skill

from tatat/agents-playground

VibeIndex|
What it does

Performs comprehensive code review analyzing quality, security vulnerabilities, and adherence to best practices across multiple dimensions.

πŸ“¦

Part of

tatat/agents-playground(25 items)

code-review

Installation

uv runRun with uv
uv run pre-commit install
uv runRun with uv
uv run jupyter notebook
uv runRun with uv
uv run agentchat-direct
uv runRun with uv
uv run agentchat-programmatic
MakeRun with Make
make lint # ruff check

+ 3 more commands

πŸ“– Extracted from docs: tatat/agents-playground
6Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Review code for quality, security vulnerabilities, and best practices compliance

Overview

# Code Review

Review code for quality, security issues, and best practices.

Capabilities

  • Identify bugs and potential issues
  • Check for security vulnerabilities (OWASP top 10)
  • Suggest performance improvements
  • Verify coding standards compliance

Checklist

  1. Error handling - proper try/catch, edge cases
  2. Security - input validation, injection prevention
  3. Performance - unnecessary loops, memory leaks
  4. Readability - naming, comments, structure

Output Format

Returns structured feedback with:

  • severity: critical | warning | info
  • location: file:line
  • message: description of the issue
  • suggestion: how to fix