Stats
Actions
Tags
From karpathy-coder
Run Karpathy's 4-principle review on staged changes or the last commit. Checks complexity, diff noise, hidden assumptions, and goal verification. Usage /karpathy-check [--last-commit]
How this command is triggered — by the user, by Claude, or both
Slash command
/karpathy-coder:karpathy-checkThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /karpathy-check Review your staged changes (or last commit) against Karpathy's 4 coding principles. ## Usage ## What it runs 1. **Principle #2 (Simplicity):** `skills/karpathy-coder/scripts/complexity_checker.py` on all changed files — detects over-engineering, premature abstractions, deep nesting, long functions 2. **Principle #3 (Surgical):** `skills/karpathy-coder/scripts/diff_surgeon.py` on the diff — detects comment-only changes, whitespace noise, style drift, drive-by refactors 3. **Principles #1 + #4 (Think + Goals):** The `karpathy-reviewer` agent reads the diff and applies ...
Review your staged changes (or last commit) against Karpathy's 4 coding principles.
/karpathy-check # review staged changes
/karpathy-check --last-commit # review the most recent commit
skills/karpathy-coder/scripts/complexity_checker.py on all changed files — detects over-engineering, premature abstractions, deep nesting, long functionsskills/karpathy-coder/scripts/diff_surgeon.py on the diff — detects comment-only changes, whitespace noise, style drift, drive-by refactorskarpathy-reviewer agent reads the diff and applies human-judgment checks — hidden assumptions, missing verificationA structured report with per-principle verdicts and specific line-level fix recommendations.
Dispatches the karpathy-reviewer agent. See agents/karpathy-reviewer.md.
engineering/karpathy-coder/skills/karpathy-coder/scripts/complexity_checker.pyengineering/karpathy-coder/skills/karpathy-coder/scripts/diff_surgeon.pyengineering/karpathy-coder/skills/karpathy-coder/scripts/assumption_linter.pyengineering/karpathy-coder/skills/karpathy-coder/scripts/goal_verifier.py→ engineering/karpathy-coder/skills/karpathy-coder/SKILL.md
npx claudepluginhub richyboy170/agentic-sdlc-internship --plugin karpathy-coder