agentreadme

Report ยท marked 26 Aug 2026

JuliusBrussee/caveman

Solid foundations, held back in a few specific places.

Go ยท 100,959 stars ยท 1,388 files ยท branch main

Fix these first

01
Instruction quality
Worth fixing: it never states a build, test, or run command; has no headings to structure it; has no code blocks.
02
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.
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 19/27 B+

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

โœ“Agent instruction file 12/12
AGENTS.md is present, which is the format the most tools read.
Also found: CLAUDE.md
โœ—Instruction quality 4/12
Present but too thin to change an agent's behavior.
Worth fixing: it never states a build, test, or run command; has no headings to structure it; has no code blocks.
613 characters, a workable length
โœ“README as an entry point 3/3
README has a clear getting-started section.
Setup 14/14 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 (test, test:windows)
scripts/ directory
โ€“Environment config n/a
Not applicable โ€” this reads as a library, with no environment to configure.
โœ“Pinned runtime version 2/2
The language runtime version is pinned.
package.json engines.node >=18
โ€“Reproducible environment n/a
Not applicable โ€” a library doesn't need a container to be worked on.
Verification loop 19/22 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
499 test files against 883 source files.
e.g. agents/delegate/portable-process.test.mjs, browse/bin/launcher.test.mjs, browse/cdp_integration_test.go
โœ“Test command is discoverable 7/7
An agent can find and run `npm run test`.
โœ“Continuous integration 4/4
7 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 n/a
Not applicable โ€” the Go compiler type checks every build.
Context economy 14/20 B+

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

โœ“No committed build output 6/6
No generated directories committed.
โœ“.gitignore hygiene 3/3
.gitignore covers 29 patterns.
โœ—File sizes fit in context 0/6
5 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.
packages/cli/src/index.ts โ€” 709KB
packages/agent/src/runtime.ts โ€” 211KB
packages/agent/tests/framework.runtime.mjs โ€” 209KB
โœ“Repository weight 5/5
About 9.7MB 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 JuliusBrussee/caveman
# AGENTS.md

๐Ÿชจ why use many token when few token do trick โ€” Claude Code skill that cuts 65% of tokens by talking like caveman

## Setup

```
pnpm install
```

## Commands

```
pnpm test           # run the test suite, must pass before any commit
pnpm test:windows
```

## Layout

- `proxy/`       246 source files
- `packages/`    222 source files
- `engine/`      149 source files
- `shared/`      71 source files
- `tests/`       38 source files
- `cacheengine/` 34 source files

## Conventions

- Tests live alongside the code they cover, following `agents/delegate/portable-process.test.mjs`.
- CI defines what passing means. See `.github/workflows/ci.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- Generated output is committed (`dist/`). Search will return the compiled copy, so edit the source, not that.
- `packages/cli/src/index.ts` is 709KB. It will not fit comfortably in context, so read it in parts.

---

Drafted by agentreadme.com from what is in this repository. Everything marked TODO
needs a human. Check it in as AGENTS.md at the root.

Open the raw markdown  or  curl -o AGENTS.md agentreadme.com/draft/JuliusBrussee/caveman.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 78 out of 100

[![agent ready](https://agentreadme.com/badge/JuliusBrussee/caveman.svg)](https://agentreadme.com/JuliusBrussee/caveman)

Other Go repositories, marked

avelino/awesome-go 78 A- ollama/ollama 85 A golang/go 31 D kubernetes/kubernetes 72 B+ microsoft/TypeScript 82 A- fatedier/frp 96 A+

All Go 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