- ▸Listing the files
- ▸Reading the instructions
- ▸Checking the build tools
- ▸Finding the tests
- ▸Reading the folder layout
- ▸Adding up the score
drizzle-team/drizzle-orm
Needs work
The overall score is the average of these six
Open a category to see every check
Can an agent quickly find the code that matters?
Biggest wins first
No AGENTS.md was found. An agent starting work in this repository has to infer the package manager, the test command, and the layout of 223 directories from the file tree alone.
Create AGENTS.md at the repository root covering:
258 test files exist but nothing documents how to run just one. Agents run the whole suite for every iteration, which is slow and expensive.
Add the single-test command to AGENTS.md, for example:
Not available yet
An AI reads the code to settle the 3 checks a quick scan cannot. Takes about a minute and is free with a GitHub sign-in.
Are agent-facing instructions present and complete?
Can an agent verify its own changes?
Does the codebase repeat the same patterns?
Is setup, build, lint and test behavior obvious?
How much must an agent read to make one change?
No template lists the environment variables this project needs, so an agent cannot tell which ones a feature depends on.
Commit a .env.example that lists every variable with a comment describing it.
Tests are stored away from the code they cover, so an agent must search to find the test for a file it just changed.
Move tests next to their source file, or document the mapping in AGENTS.md.