EN DE
← ← Back to Index

requesting-code-review

software-development › requesting-code-review v2.1.0
code-review security verification quality pre-commit auto-fix

Description

Pre-commit review: security scan, quality gates, 5-axis review, auto-fix.

Relevance to Our Projects

Run before every commit. Ensures no security vulnerabilities, logic errors, or architecture issues reach the repository. The 5-axis review covers correctness, readability, architecture, security, and performance.

Pipeline

1🔍 Diff holen (git diff --cached)
2🛡️ Statischer Sicherheits-Scan (API-Keys, SQL-Injection, eval)
3🧪 Baseline-Tests + Linting (pytest, ruff, eslint)
4✅ Selbst-Checkliste (10 Prüfpunkte)
5🤖 Unabhängiger Prüf-Agent (5-Achsen-Review: Korrektheit, Lesbarkeit, Architektur, Sicherheit, Performance)
6🔄 Auto-Fix-Schleife (max. 2 Durchläufe)
7💾 Commit mit [verified] Präfix

SKILL.md Preview

# Pre-Commit Code Verification

Automated verification pipeline before code lands. Multi-axis review with quality gates, static scans,
baseline-aware checks, an independent reviewer subagent, and an auto-fix loop.

**Core principle:** No agent should verify its own work. Fresh context finds what you miss.

**Approval standard:** Approve a change when it definitely improves overall code health, even if it
isn't perfect. Perfect code doesn't exist — the goal is continuous improvement. Don't block

← ← Back to Index