Skip to main content

code-review

Systematic code review for bugs, security, style, and performance

Ir para a instalação

Informações da origem

Repositório
vstorm-co/pydantic-deepagents
Última atividade na origem
30 de março de 2026 às 10:48
Idioma detectado do SKILL.md
inglês
Estrelas
1.068
Forks
132

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
name
code-review
description
Systematic code review for bugs, security, style, and performance
tags
["code-quality","review"]
version
1.0.0
# Code Review Perform a systematic code review covering these categories: ## Review Checklist ### 1. Correctness - Logic errors, off-by-one, null/None handling - Edge cases: empty inputs, large inputs, concurrent access - Error handling: are exceptions caught and handled properly? ### 2. Security - Input validation and sanitization - SQL injection, XSS, command injection - Secrets in code, hardcoded credentials - Authentication and authorization checks ### 3. Performance - Unnecessary loops, N+1 queries - Missing indexes for database queries - Large memory allocations, unbounded collections - Blocking calls in async code ### 4. Style & Maintainability - Naming clarity (variables, functions, classes) - Function length — split if >30 lines - Dead code, commented-out code - Missing type annotations ### 5. Testing - Are new code paths covered by tests? - Are edge cases tested? - Are error paths tested? ## Output Format For each issue found: - **File:line** — category — description — suggested fix - Severity: critical / warning / suggestion
Ver no GitHub