EN DE
← ← Zurück zur Übersicht

requesting-code-review

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

Beschreibung

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

Relevanz für unsere Projekte

Wird vor jedem Commit ausgeführt. Stellt sicher, dass keine Sicherheitslücken, Logikfehler oder Architekturprobleme ins Repository gelangen. Der 5-Achsen-Review deckt Korrektheit, Lesbarkeit, Architektur, Sicherheit und Performance ab.

Ablauf

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

← ← Zurück zur Übersicht