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.
git clone --depth 1 https://github.com/travisjneuman/.claudeWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/travisjneuman/.claude/audit-docs)<a href="https://agentmods.dev/commands/travisjneuman/.claude/audit-docs"><img src="https://agentmods.dev/badge/commands/travisjneuman/.claude/audit-docs/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/travisjneuman/.claude/audit-docs"><img src="https://agentmods.dev/badge/commands/travisjneuman/.claude/audit-docs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What 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.1 | $0.00020 | $0.01551 |
| Opus 5 | $0.00010 | $0.00776 |
| Sonnet 5 | $0.00004 | $0.00310 |
| Haiku 4.5 | $0.00002 | $0.00155 |
Grade A, and why
audit-docs scanned grade A with 2 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 6d ago.
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.
Reads agent configuration directorieslowAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
head -20 ~/.claude/CHANGELOG.md Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
Enumerates other installed skillslowAgent snooping
Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.
ls ~/.claude/skills/ | grep -v "^_\|README\|MASTER\|EXPERT\|^$" | wc -l Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
How it starts
The opening of the file, as written. The whole thing — 233 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Documentation Audit
Scans all documentation files for staleness, broken references, count mismatches, and version drift.
Usage
/audit-docs [scope]
Execution Protocol
Step 1: Determine Current Truth
Gather ground-truth values by reading the filesystem directly:
# Current version (from CHANGELOG.md first entry or package.json)
head -20 ~/.claude/CHANGELOG.md
# Actual skill count
ls ~/.claude/skills/ | grep -v "^_\|README\|MASTER\|EXPERT\|^$" | wc -l
# Actual agent count
ls ~/.claude/agents/*.md 2>/dev/null | wc -l
# Actual command count
ls ~/.claude/commands/*.md 2>/dev/null | wc -l
# Actual marketplace repo count
ls -d ~/.claude/plugins/marketplaces/*/ 2>/dev/null | wc -l
# Actual template count
ls ~/.claude/templates/ 2>/dev/null | wc -l
# Actual hook count
grep -c '"PreToolUse"\|"PostToolUse"\|"Notification"\|"UserPromptSubmit"\|"Stop"\|"PreCompact"\|"SubagentStop"' ~/.claude/settings.json
Store these as the source of truth for comparison.
Step 2: Scan for Version References
If scope is versions or all:
Search all documentation files for version strings and compare against the current version:
Directories to scan: docs/, commands/, skills/, templates/, README.md, CHANGELOG.md
Patterns to check:
| Pattern | Example Match | Check Against |
|---|---|---|
v\d+\.\d+\.\d+ |
v2.4.0 | Latest version in CHANGELOG |
version \d+\.\d+\.\d+ |
version 2.4.0 | Latest version in CHANGELOG |
Version: \d+\.\d+ |
Version: 2.4 | Latest version in CHANGELOG |
Report any version references that do not match the current version, with file path and line number.
Exceptions: CHANGELOG.md itself contains historical versions -- only flag non-CHANGELOG files with outdated versions.
Step 3: Scan for Count Mismatches
If scope is counts or all:
Search documentation files for count references and compare against ground truth:
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.
- 6d ago First seen · 233 lines · 20 tokens per session scan A 91d1f4691ccf
audit-docs is a command published in the GitHub repository travisjneuman/.claude (97 stars, last pushed 4d ago), licensed MIT. It adds 20 tokens to every session and 1,551 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 2 findings (reads agent configuration directories, enumerates other installed skills). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other commands, from other repositories
api-gen
Generate REST API endpoints with routes, validation, error handling, and tests.
component-gen
Generate React or Vue components with prop types, styling, accessibility, and tests.
performance-audit
Find performance bottlenecks across the stack — queries, rendering, bundle size, memory.
debug
Systematic debugging — reproduce, isolate, fix, verify, and add regression test.
doc-gen
Generate documentation — JSDoc, docstrings, README sections, or API docs.
migrate
Migrate between framework versions or languages with an audited step-by-step plan.