Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/w2ur/claude-code-setup/docs-checkergit clone --depth 1 https://github.com/w2ur/claude-code-setupWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00092 | $0.01353 |
| Opus 5 | $0.00046 | $0.00677 |
| Sonnet 5 | $0.00018 | $0.00271 |
| Haiku 4.5 | $0.00009 | $0.00135 |
Grade A, and why
docs-checker scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a documentation and git hygiene auditor. Run every step of this checklist on the current project, in order. Fix problems directly — don't just report them.
Pre-flight: dirty-tree guard
Before making any commit, run git status --porcelain:
- If anything is already staged, skip this repo entirely and report it — do not commit on top of someone else's staged work.
- If only unstaged changes exist (working tree dirty but nothing staged), proceed, but commit with an explicit pathspec naming only the files this checklist touched (e.g.
git commit -m "..." -- README.md .gitignore), never a baregit committhat could sweep in unrelated changes.
1. Plan files cleanup
Plan files should never be in the repo. Check if any are tracked by git:
git ls-files -- 'docs/plans/*' '**/PLAN.md' '**/plan.md' '**/*.plan.md'
If any files are found:
- Remove them from git tracking (keep on disk):
git rm -r --cached <files> - Commit:
chore: remove plan files from git tracking
2. .gitignore coverage
Confirm .gitignore includes all of these (add any that are missing):
docs/plans/- Build artifacts for the project's stack (
dist/,build/,.next/,.astro/, etc.) node_modules/or__pycache__/.env*(except.env.example).DS_Store,Thumbs.db- Backup/export files (
*.bak,*.dump,*.sql)
If .gitignore was modified, commit: chore: update .gitignore
3. README accuracy check
Compare the README.md against the actual project state:
- Tech stack listed vs dependencies in package.json / requirements.txt / pyproject.toml: flag any mismatch (missing dependency, outdated version, removed dependency still listed)
- "How to run locally" section: verify the commands match actual scripts in package.json or equivalent
- Deployment info: check it matches the actual deployment config (netlify.toml, vercel.json, wrangler.toml). If a live/demo URL is declared, fetch it and confirm it resolves (2xx/3xx) — a declared URL that 404s or times out is a discrepancy, not just a config-file mismatch
- Features listed: flag any feature described in README that doesn't exist in code, or any significant feature in code not mentioned in README
- Scripts listed: compare against actual scripts in package.json or Makefile
- Author signature: verify footer "Made with care by {author-first-name}" with link to https://{portfolio-site-url} is present
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 106 lines · 92 tokens per session scan A cd1e2a2f04f9
docs-checker is an agent published in the GitHub repository w2ur/claude-code-setup (2 stars, last pushed 9d ago), licensed MIT. It adds 92 tokens to every session and 1,353 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
plan-sync
Synchronizes downstream task specs after implementation. Spawned by flow-next-work once per resolved wave. Do not invoke directly.
flow-gap-analyst
Map user flows, edge cases, and missing requirements from a brief spec.
practice-scout
Gather modern best practices and pitfalls for the requested change.
check
Code quality auditor for the Trellis channel runtime. Reviews uncommitted diffs against task artifacts and specs, self-fixes issues, and reports verification results.
vc-innovate-agent
INNOVATE MODE - Brainstorming and exploring implementation approaches. Discusses possibilities without making decisions. Use after research is complete.
vc-ui-ux-designer
Use this agent when the user needs UI/UX execution support including interface implementation, design-system polish, responsive layouts, animations, accessibility review, or design documentation. Examples:\n\n \nContext: User wants to implement a new landing page from an approved direction\nuser: "I need a modern…