CLI tooling for AI agent project hygiene.
npx @justinmoon/agent-tools <command>List docs in ./docs/ with frontmatter summaries and "read when" hints.
npx @justinmoon/agent-tools list-docsValidate all docs have proper frontmatter. Use in CI.
npx @justinmoon/agent-tools check-docs---
summary: Brief description of what this doc covers
read_when:
- when working on feature X
- when debugging Y
---Verify all justfile recipes have a # summary comment. Use in CI.
npx @justinmoon/agent-tools check-justfile
npx @justinmoon/agent-tools check-justfile path/to/justfileAdd to your pre-merge justfile recipe:
pre-merge: lint test
npx -y @justinmoon/agent-tools check-docs
npx -y @justinmoon/agent-tools check-justfile