Default code-quality route for broad code review, PR review, maintainability, correctness, and regression-risk checks. Do not use as the primary route for dedicated OWASP/security audits, review-feedback handling, completion verification, AI-code cleanup, or TDD/test-first work.
49
52%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
High
Do not use without reviewing
Fix and improve this skill with Tessl
tessl review fix ./bundled/skills/code-reviewer/SKILL.mdComplete toolkit for code reviewer with modern tools and best practices.
Use code-reviewer when the user asks for a fresh review of code or a PR:
Do not let this skill own narrower problems:
security-reviewer owns OWASP, secret leak, auth bypass, injection, and dedicated security audit prompts.receiving-code-review owns existing CodeRabbit/GitHub/human review comments.verification-before-completion owns final evidence before claiming work is done.deslop owns cleanup of AI-generated comments, redundant guards, and boilerplate.tdd-guide owns test-first or RED -> GREEN -> REFACTOR development.The legacy review wrapper has been absorbed into this direct route owner.
references/python-style-guide.md contains the retained Python naming, import, documentation, error-handling, and secret-handling guidance.scripts/check_style.py is a lightweight stdin/string style checker for quick local review support.Use these assets as supporting material inside code-reviewer; do not route to the deleted wrapper skill.
This skill provides three core capabilities through automated scripts:
# Script 1: Pr Analyzer
python scripts/pr_analyzer.py [options]
# Script 2: Code Quality Checker
python scripts/code_quality_checker.py [options]
# Script 3: Review Report Generator
python scripts/review_report_generator.py [options]Automated tool for pr analyzer tasks.
Features:
Usage:
python scripts/pr_analyzer.py <project-path> [options]Comprehensive analysis and optimization tool.
Features:
Usage:
python scripts/code_quality_checker.py <target-path> [--verbose]Advanced tooling for specialized tasks.
Features:
Usage:
python scripts/review_report_generator.py [arguments] [options]Comprehensive guide available in references/code_review_checklist.md:
Complete workflow documentation in references/coding_standards.md:
Technical reference guide in references/common_antipatterns.md:
Languages: TypeScript, JavaScript, Python, Go, Swift, Kotlin Frontend: React, Next.js, React Native, Flutter Backend: Node.js, Express, GraphQL, REST APIs Database: PostgreSQL, Prisma, NeonDB, Supabase DevOps: Docker, Kubernetes, Terraform, GitHub Actions, CircleCI Cloud: AWS, GCP, Azure
# Install dependencies
npm install
# or
pip install -r requirements.txt
# Configure environment
cp .env.example .env# Use the analyzer script
python scripts/code_quality_checker.py .
# Review recommendations
# Apply fixesFollow the patterns and practices documented in:
references/code_review_checklist.mdreferences/coding_standards.mdreferences/common_antipatterns.mdsecurity-reviewer.# Development
npm run dev
npm run build
npm run test
npm run lint
# Analysis
python scripts/code_quality_checker.py .
python scripts/review_report_generator.py --analyze
# Deployment
docker build -t app:latest .
docker-compose up -d
kubectl apply -f k8s/Check the comprehensive troubleshooting section in references/common_antipatterns.md.
references/code_review_checklist.mdreferences/coding_standards.mdreferences/common_antipatterns.mdscripts/ directoryf627ab5
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.