agentreadme

Report · marked 25 Aug 2026

colbymchenry/codegraph

Solid foundations, held back in a few specific places.

C · 68,075 stars · 827 files · branch main

Fix these first

01
File sizes fit in context
A single file that fills the context window forces an agent to work from fragments, and it will confidently edit code it never saw. Splitting the worst offenders pays for itself immediately.
02
Agent instruction file
Rename or symlink to AGENTS.md so tools other than one vendor's can read it. Keeping CLAUDE.md alongside it costs nothing.
03
Lint and format rules
A formatter config is the cheapest way to stop reviewing whitespace in agent diffs. It moves style from opinion to a command.

The full marking

Every deduction below names the file or setting it came from.

Instructions 22/27 A-

Whether the repo tells an agent how to behave before it starts guessing.

Agent instruction file 9/12
CLAUDE.md is present, but not the vendor-neutral AGENTS.md.
Rename or symlink to AGENTS.md so tools other than one vendor's can read it. Keeping CLAUDE.md alongside it costs nothing.
Instruction quality 10/12
Specific enough that an agent can act on it.
Worth fixing: it's 35k characters, which burns context on every single turn.
names the actual commands to run
uses headings, so an agent can skim it
includes copyable code blocks
README as an entry point 3/3
README has a clear getting-started section.
Setup 16/18 A

Whether an agent can install the project and get it running without a human.

Deterministic install 6/6
package-lock.json pins the dependency tree.
Found package-lock.json
Discoverable commands 6/6
Commands are declared where an agent will look for them.
package.json scripts (build, preuninstall, copy-assets, dev, build:kernel, cli…)
scripts/ directory
Environment config 2/4
Env vars are mentioned in the README but there's no example file to copy.
Add a .env.example listing every variable with a safe placeholder value. It's the cheapest possible fix and it unblocks the whole first run.
Pinned runtime version 2/2
The language runtime version is pinned.
package.json engines.node >=20.0.0 <25.0.0
Reproducible environment n/a
Not applicable — a library doesn't need a container to be worked on.
Verification loop 22/25 A

Whether an agent can check its own work. This is the category that most decides whether agent output is trustworthy.

Tests exist 8/8
318 test files against 620 source files.
e.g. __tests__/adaptive-explore-sizing.test.ts, __tests__/android-res-exclusion.test.ts, __tests__/arkts-resolution.test.ts
Test command is discoverable 7/7
An agent can find and run `npm run test`.
Continuous integration 4/4
2 GitHub Actions workflows define what "passing" means.
Lint and format rules 0/3
No linter or formatter config. Style is tribal knowledge, so agent output will drift from yours.
A formatter config is the cheapest way to stop reviewing whitespace in agent diffs. It moves style from opinion to a command.
Static type checking 3/3
Strict type checking is on, which catches a whole class of agent mistakes before they run.
Context economy 11/20 B-

Whether the repo fits in a context window, or fights it.

No committed build output 3/6
Generated output is committed: __pycache__/.
Add these to .gitignore and `git rm -r --cached` them. Generated files pollute search results, so an agent grepping for a function finds the compiled copy and edits the wrong file.
.gitignore hygiene 3/3
.gitignore covers 40 patterns.
File sizes fit in context 0/6
15 source files are over 100KB.
A single file that fills the context window forces an agent to work from fragments, and it will confidently edit code it never saw. Splitting the worst offenders pays for itself immediately.
codegraph-kernel/grammars/scala/parser.c — 34151KB
codegraph-kernel/grammars/kotlin/parser.c — 23096KB
codegraph-kernel/grammars/dart/parser.c — 6016KB
Repository weight 5/5
About 18.1MB checked out, which is comfortable.

Here is your AGENTS.md

Drafted from what is actually in this repository: the install command from your lockfile, the commands you already declare, your real directory layout. Anything marked TODO needs a person. Save it at the root as AGENTS.md.

AGENTS.md — drafted for colbymchenry/codegraph
undefined

Open the raw markdown  or  curl -o AGENTS.md agentreadme.com/draft/colbymchenry/codegraph.md

Show the mark

The badge re-checks daily, so it keeps up as the repository changes. Use mark again to force it now.

agent ready 80 out of 100

[![agent ready](https://agentreadme.com/badge/colbymchenry/codegraph.svg)](https://agentreadme.com/colbymchenry/codegraph)

Other C repositories, marked

torvalds/linux 31 D Genymobile/scrcpy 43 C microsoft/PowerToys 56 B- ventoy/Ventoy 32 D redis/redis 46 C obsproject/obs-studio 36 D

All C repositories

Think this mark is wrong?

Every deduction above names the file it came from, so this can be settled by looking. If a check missed something, that is a rule worth fixing.

Open an issue, already filled in