What you get

Diffs that contain only what you asked for, and clarifying questions that arrive before the code instead of after the rework.

Four Karpathy Rules for Coding Agents

Added 2026-08-06

One 65-line CLAUDE.md that turns four coding-agent habits Karpathy called out into checkable rules: no guessing on your behalf, no over-building, no drive-by edits, and success criteria defined before any code.

EngineeringProduct & Project
Four Karpathy Rules for Coding Agents preview

Every rule ships with a test you can apply on the spot. State your assumptions before coding, and when a request reads two ways, put both on the table instead of picking one silently. One question cuts abstractions: would a senior engineer call this overcomplicated? Another stops drive-by refactors: does every changed line trace back to what you asked for? Imperatives become verifiable goals — add validation turns into write tests for invalid inputs, then make them pass. It favours caution over speed by design.