Audit and build the infrastructure a repo needs so agents can work autonomously — boot scripts, smoke tests, CI/CD gates, dev environment setup, observability, and isolation. Use when a repo can't boot, tests are broken or missing, there's no dev environment, agents can't verify their work, or agents need human help to get anything done. Do not use for reviewing an existing diff or for documentation-only cleanup.
97
100%
Does it follow best practices?
Impact
87%
1.03xAverage score across 3 eval scenarios
Passed
No known issues
Grade a project's readiness for autonomous agent work from F to A. Mechanical criteria — no subjective judgment.
jest.mock, vi.mock, unittest.mock) — zero tests hit a running process--version)Grade: C → B (after adding e2e tests + CI gate)
Layers: 1-4 present, 5 partial, 6-7 missing
Bootable: pass — `npm run dev` starts app, health check at :3000/health
Testable: pass — 3 Playwright e2e tests hit real UI, 1 API round-trip test
Observable: partial — structured logs exist but no queryable health endpoint
Verifiable: pass — screenshots captured, response logs saved
Gaps (ranked):
1. No git hooks (layer 5) — lint/smoke not enforced pre-push
2. No structured health endpoint (layer 6) — logs only
3. No worktree isolation (layer 7) — parallel agents would collide
Next step: add pre-push hook with lint + smoke
Confidence: needs review (observable gaps)