Naetive vs a CLAUDE.md file
4 September 2026
If you work with AI agents you have probably written a CLAUDE.md or an AGENTS.md. It is the first, most sensible thing to do. A file at the root of the repo that tells the agent how the project works. Naetive is not a replacement for it, but it fills the gap that file leaves open.
Where a CLAUDE.md is great
For stable, hand-written instructions, it is exactly right. Coding conventions, how to run the tests, the deploy command, always do this and never do that. Things that are true today and next month, that you are happy to maintain by hand. Keep your CLAUDE.md. It earns its place.
Where it breaks
A CLAUDE.md struggles with three things.
Live state. It does not capture what got decided this week, what is in flight, what just changed. It is instructions, not a current picture of the project.
Grounding. Its claims are not tied to the code. When the code moves, the file does not know, and nobody flags it. It drifts, quietly, until an agent follows a line that is no longer true.
Scale. Everything competes for one file. Put in enough and it becomes a wall of text that is expensive to maintain and easy to let rot. The line that matters gets lost among the stale ones.
What Naetive adds
Naetive is not a bigger instructions file. It is the living understanding around the code. The decisions and the why, captured as you work, each claim tied to the file and line it came from, kept aligned as the code changes and flagged for review when it drifts.
So the division of labour is clean. Your CLAUDE.md holds the stable rules you write on purpose. Naetive holds the changing understanding that would otherwise be lost in a chat. What this is, why it is this way, what is contested, what an agent should read before touching an area.
One is a hand-maintained set of instructions. The other is a current, grounded model of the project that every agent inherits. You want both, doing the jobs they are each good at.