Skip to main content

code-review

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

Zur Installation springen

Quellinformationen

Repository
vstorm-co/pydantic-deepagents
Letzte Quellaktivität
30. März 2026 um 10:48
Erkannte Sprache von SKILL.md
Englisch
Sterne
1.068
Forks
132

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
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
Auf GitHub ansehen