Karpathy Coder — Active Coding Discipline

Use when writing, reviewing, or committing code to enforce Karpathy's 4 coding principles — surface assumptions before coding, keep it simple, make surgical changes, define verifiable goals.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/karpathy-coder, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/engineering/karpathy-coder/skills/karpathy-coder#main ~/.claude/skills/karpathy-coder

For one project only, change the path to .claude/skills/karpathy-coder. This skill also uses complexity_checker.py, diff_surgeon.py, assumption_linter.py, goal_verifier.py — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Karpathy Coder — Active Coding Discipline

Show the full text132 lines
namedescriptioncontextversionauthorlicensetagscompatible_tools
karpathy-coderUse when writing, reviewing, or committing code to enforce Karpathy's 4 coding principles — surface assumptions before coding, keep it simple, make surgical changes, define verifiable goals. Triggers on "review my diff", "check complexity", "am I overcomplicating this", "karpathy check", "before I commit", or any code quality concern where the LLM might be overcoding.fork2.9.0claude-code-skillsMIT[code-quality, discipline, karpathy, simplicity, surgical-changes, anti-patterns, review][claude-code, codex-cli, cursor, antigravity, opencode, gemini-cli]

Karpathy Coder — Active Coding Discipline

Derived from Andrej Karpathy's observations on LLM coding pitfalls. This is not just guidelines — it ships Python tools that detect violations, a review agent, a slash command, and a pre-commit hook.

"The models make wrong assumptions on your behalf and just run along with them without checking. They don't manage their confusion, don't seek clarifications, don't surface inconsistencies, don't present tradeoffs, don't push back when they should."

"They really like to overcomplicate code and APIs, bloat abstractions, don't clean up dead code... implement a bloated construction over 1000 lines when 100 would do."

"LLMs are exceptionally good at looping until they meet specific goals... Don't tell it what to do, give it success criteria and watch it go."

— Andrej Karpathy

The four principles

1. Think Before Coding

Don't assume. Don't hide confusion. Surface tradeoffs.

  • State assumptions explicitly. If uncertain, ask.
  • If multiple interpretations exist, present them — don't pick silently.
  • If a simpler approach exists, say so. Push back when warranted.
  • If something is unclear, stop. Name what's confusing. Ask.
2. Simplicity First

Minimum code that solves the problem. Nothing speculative.

  • No features beyond what was asked.
  • No abstractions for single-use code.
  • No "flexibility" or "configurability" that wasn't requested.
  • No error handling for impossible scenarios.
  • If you write 200 lines and it could be 50, rewrite it.

The test: Would a senior engineer say this is overcomplicated? If yes, simplify.

3. Surgical Changes

Touch only what you must. Clean up only your own mess.

  • Don't "improve" adjacent code, comments, or formatting.
  • Don't refactor things that aren't broken.
  • Match existing style, even if you'd do it differently.
  • If you notice unrelated dead code, mention it — don't delete it.
  • Remove imports/variables/functions that YOUR changes made unused.
  • Don't remove pre-existing dead code unless asked.

The test: Every changed line should trace directly to the user's request.

4. Goal-Driven Execution

Define success criteria. Loop until verified.

Instead of... Transform to...
"Add validation" "Write tests for invalid inputs, then make them pass"
"Fix the bug" "Write a test that reproduces it, then make it pass"
"Refactor X" "Ensure tests pass before and after"

For multi-step tasks, state a brief plan:

1. [Step] → verify: [check]
2. [Step] → verify: [check]
3. [Step] → verify: [check]

Slash command

/karpathy-check — Run the full 4-principle review on your staged changes.

Python tools (scripts/)

All tools are stdlib-only. Run with --help.

Script What it detects
complexity_checker.py Over-engineering: too many classes, deep nesting, high cyclomatic complexity, unused params, premature abstractions
diff_surgeon.py Diff noise: lines that don't trace to the stated goal — comment changes, style drift, drive-by refactors
assumption_linter.py Hidden assumptions in a plan: unasked features, missing clarifications, silent interpretation choices
goal_verifier.py Weak success criteria: vague plans without verifiable checks, missing test assertions

Sub-agent

karpathy-reviewer — Runs all 4 principles against a diff. Dispatched by /karpathy-check or manually before committing.

Pre-commit hook

hooks/karpathy-gate.sh — runs complexity_checker.py and diff_surgeon.py on staged files. Warns (non-blocking) when violations are found. Wire it via .claude/settings.json or Husky.

References

  • references/karpathy-principles.md — the source quotes, deeper context, when to relax each principle
  • references/anti-patterns.md — 10+ before/after examples across Python, TypeScript, and shell
  • references/enforcement-patterns.md — how to wire hooks, CI integration, team adoption

When to relax

These principles bias toward caution over speed. For trivial tasks (typo fixes, obvious one-liners), use judgment. The principles matter most on:

  • Non-trivial implementations (>20 lines changed)
  • Code you don't fully understand
  • Multi-step tasks with unclear requirements
  • Anything that will be reviewed by humans

Cross-tool compatibility

Installs via plugin for Claude Code. For other tools, copy the principles into your schema file:

Tool Schema file
Claude Code CLAUDE.md (auto-loaded by plugin)
Codex CLI AGENTS.md
Cursor AGENTS.md or .cursorrules
Antigravity / OpenCode / Gemini CLI AGENTS.md
  • self-eval — honest quality scoring after completing work
  • code-reviewer — broader code review; karpathy-coder focuses on the 4 LLM-specific pitfalls
  • llm-wiki — compound knowledge; karpathy-coder ensures you don't overcomplicate while building it
1---
2name: karpathy-coder
3description: Use when writing, reviewing, or committing code to enforce Karpathy's 4 coding principles — surface assumptions before coding, keep it simple, make surgical changes, define verifiable goals. Triggers on "review my diff", "check complexity", "am I overcomplicating this", "karpathy check", "before I commit", or any code quality concern where the LLM might be overcoding.
4context: fork
5version: 2.9.0
6author: claude-code-skills
7license: MIT
8tags: [code-quality, discipline, karpathy, simplicity, surgical-changes, anti-patterns, review]
9compatible_tools: [claude-code, codex-cli, cursor, antigravity, opencode, gemini-cli]
10---
11 
12# Karpathy Coder — Active Coding Discipline
13 
14Derived from [Andrej Karpathy's observations](https://x.com/karpathy/status/2015883857489522876) on LLM coding pitfalls. This is **not just guidelines** — it ships Python tools that detect violations, a review agent, a slash command, and a pre-commit hook.
15 
16> "The models make wrong assumptions on your behalf and just run along with them without checking. They don't manage their confusion, don't seek clarifications, don't surface inconsistencies, don't present tradeoffs, don't push back when they should."
17>
18> "They really like to overcomplicate code and APIs, bloat abstractions, don't clean up dead code... implement a bloated construction over 1000 lines when 100 would do."
19>
20> "LLMs are exceptionally good at looping until they meet specific goals... Don't tell it what to do, give it success criteria and watch it go."
21>
22> — Andrej Karpathy
23 
24## The four principles
25 
26### 1. Think Before Coding
27 
28**Don't assume. Don't hide confusion. Surface tradeoffs.**
29 
30- State assumptions explicitly. If uncertain, ask.
31- If multiple interpretations exist, present them — don't pick silently.
32- If a simpler approach exists, say so. Push back when warranted.
33- If something is unclear, stop. Name what's confusing. Ask.
34 
35### 2. Simplicity First
36 
37**Minimum code that solves the problem. Nothing speculative.**
38 
39- No features beyond what was asked.
40- No abstractions for single-use code.
41- No "flexibility" or "configurability" that wasn't requested.
42- No error handling for impossible scenarios.
43- If you write 200 lines and it could be 50, rewrite it.
44 
45**The test:** Would a senior engineer say this is overcomplicated? If yes, simplify.
46 
47### 3. Surgical Changes
48 
49**Touch only what you must. Clean up only your own mess.**
50 
51- Don't "improve" adjacent code, comments, or formatting.
52- Don't refactor things that aren't broken.
53- Match existing style, even if you'd do it differently.
54- If you notice unrelated dead code, mention it — don't delete it.
55- Remove imports/variables/functions that YOUR changes made unused.
56- Don't remove pre-existing dead code unless asked.
57 
58**The test:** Every changed line should trace directly to the user's request.
59 
60### 4. Goal-Driven Execution
61 
62**Define success criteria. Loop until verified.**
63 
64| Instead of... | Transform to... |
65|---|---|
66| "Add validation" | "Write tests for invalid inputs, then make them pass" |
67| "Fix the bug" | "Write a test that reproduces it, then make it pass" |
68| "Refactor X" | "Ensure tests pass before and after" |
69 
70For multi-step tasks, state a brief plan:
71 
72```
731. [Step] → verify: [check]
742. [Step] → verify: [check]
753. [Step] → verify: [check]
76```
77 
78## Slash command
79 
80`/karpathy-check` — Run the full 4-principle review on your staged changes.
81 
82## Python tools (`scripts/`)
83 
84All tools are stdlib-only. Run with `--help`.
85 
86| Script | What it detects |
87|---|---|
88| `complexity_checker.py` | Over-engineering: too many classes, deep nesting, high cyclomatic complexity, unused params, premature abstractions |
89| `diff_surgeon.py` | Diff noise: lines that don't trace to the stated goal — comment changes, style drift, drive-by refactors |
90| `assumption_linter.py` | Hidden assumptions in a plan: unasked features, missing clarifications, silent interpretation choices |
91| `goal_verifier.py` | Weak success criteria: vague plans without verifiable checks, missing test assertions |
92 
93## Sub-agent
94 
95`karpathy-reviewer` — Runs all 4 principles against a diff. Dispatched by `/karpathy-check` or manually before committing.
96 
97## Pre-commit hook
98 
99`hooks/karpathy-gate.sh` — runs `complexity_checker.py` and `diff_surgeon.py` on staged files. Warns (non-blocking) when violations are found. Wire it via `.claude/settings.json` or Husky.
100 
101## References
102 
103- `references/karpathy-principles.md` — the source quotes, deeper context, when to relax each principle
104- `references/anti-patterns.md` — 10+ before/after examples across Python, TypeScript, and shell
105- `references/enforcement-patterns.md` — how to wire hooks, CI integration, team adoption
106 
107## When to relax
108 
109These principles bias toward **caution over speed**. For trivial tasks (typo fixes, obvious one-liners), use judgment. The principles matter most on:
110 
111- Non-trivial implementations (>20 lines changed)
112- Code you don't fully understand
113- Multi-step tasks with unclear requirements
114- Anything that will be reviewed by humans
115 
116## Cross-tool compatibility
117 
118Installs via plugin for Claude Code. For other tools, copy the principles into your schema file:
119 
120| Tool | Schema file |
121|---|---|
122| Claude Code | `CLAUDE.md` (auto-loaded by plugin) |
123| Codex CLI | `AGENTS.md` |
124| Cursor | `AGENTS.md` or `.cursorrules` |
125| Antigravity / OpenCode / Gemini CLI | `AGENTS.md` |
126 
127## Related skills (chains via `context: fork`)
128 
129- **`self-eval`** — honest quality scoring after completing work
130- **`code-reviewer`** — broader code review; karpathy-coder focuses on the 4 LLM-specific pitfalls
131- **`llm-wiki`** — compound knowledge; karpathy-coder ensures you don't overcomplicate while building it
132 

Discussion