Update repo documentation and agent-facing guidance such as AGENTS.md, README.md, docs/, specs, plans, and runbooks. Use when code, skill, or infrastructure changes risk doc drift or when documentation needs cleanup or restructuring. Do not use for code review, runtime verification, or `agent-readiness` setup.
98
100%
Does it follow best practices?
Impact
94%
1.00xAverage score across 3 eval scenarios
Passed
No known issues
Keep the repo legible to humans and agents.
docs/agent-readinessreviewverifyCheck the files humans and agents actually rely on:
AGENTS.mdREADME.mdCONTRIBUTING.mdSECURITY.mddocs/Flag stale commands, dead paths, duplicated guidance, and routing failures.
Keep top-level docs terse and navigational.
AGENTS.md should be a table of contents, not a wikiREADME.md should lead with value and the fastest path to use the projectCONTRIBUTING.md should hold contributor setup, validation, and workflowSECURITY.md should hold private-first vulnerability reporting guidanceREADME.md should link to deeper docs instead of re-explaining them inlineRefresh the detailed documents that actually carry the knowledge.
Example — fixing a stale path after a rename:
# AGENTS.md
-- Run `scripts/bootstrap.sh` to set up the dev environment.
+- Run `scripts/setup.sh` to set up the dev environment.Do not trust prose. Check that commands, file paths, and entry points still match the repo.
Concrete checks:
rg -n "old/path|stale-command" AGENTS.md README.md docs/ when paths or commands movedtest -e <path-from-docs> before keeping a file referenceAfter docs work, report:
agent-readiness, review, or verify