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 commands/zircote/human-voice/voice-fixgit clone --depth 1 https://github.com/zircote/human-voiceWrote 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/zircote/human-voice/voice-fix)<a href="https://agentmods.dev/commands/zircote/human-voice/voice-fix"><img src="https://agentmods.dev/badge/commands/zircote/human-voice/voice-fix.svg" alt="Measured on agentmods" 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 | $0.00012 | $0.01048 |
| Opus 5 | $0.00006 | $0.00524 |
| Sonnet 5 | $0.00002 | $0.00210 |
| Haiku 4.5 | $0.00001 | $0.00105 |
Grade A, and why
voice-fix 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 5d 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.
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 — 81 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Human Voice Fix
Auto-fix AI-telltale characters (em dashes, smart quotes, emojis, etc.) in content files.
Options
--dry-run- Preview changes without modifying files--ignore=emojis,em-dash- Skip specific pattern categories- Valid categories:
emojis,em-dash,en-dash,smart-quotes,ellipsis,bullet,arrow - Example:
/human-voice:voice-fix --dry-run --ignore=emojis docs/
- Valid categories:
Step 0: Load Configuration
!cat "$HOME/.human-voice/config.json" 2>/dev/null || echo "NO_CONFIG"
Use detection.content_directories to resolve targets when no path is given. Respect detection.fix.dry_run_by_default.
Target
$IF($1,
Target: $1
Verify the path exists:
!test -e "$1" && echo "Path exists: $1" || echo "ERROR: Path '$1' does not exist"
,
No target specified. Resolving from config...
!python3 -c "import json,os,sys; p=os.path.expanduser('~/.human-voice'+'/config.json'); c=json.load(open(p)); dirs=[d for d in c.get('detection',{}).get('content_directories',[]) if os.path.isdir(d)]; print(' '.join(dirs)) if dirs else sys.exit(1)" 2>/dev/null && echo "(from config.json)" || ls -d _posts content _docs docs 2>/dev/null || echo "No content directories found"
)
Dry Run First
When --dry-run is specified or when unsure, show what would change without modifying files:
$IF($1,
!node "${CLAUDE_PLUGIN_ROOT}/skills/human-voice/scripts/fix-character-restrictions.js" --dry-run $ARGS 2>&1 || true
,
!dirs=$(python3 -c "import json,os,sys; p=os.path.expanduser('~/.human-voice'+'/config.json'); c=json.load(open(p)); dirs=[d for d in c.get('detection',{}).get('content_directories',[]) if os.path.isdir(d)]; print(' '.join(dirs)) if dirs else sys.exit(1)" 2>/dev/null || { for d in _posts content _docs docs; do test -d "$d" && printf '%s ' "$d"; done; }); test -n "$dirs" && node "${CLAUDE_PLUGIN_ROOT}/skills/human-voice/scripts/fix-character-restrictions.js" --dry-run $dirs $ARGS 2>&1 || echo "No content directories found"
)
Apply Fixes
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.
- 5d ago First seen · 81 lines · 12 tokens per session scan A 12caab6641d0
voice-fix is a command published in the GitHub repository zircote/human-voice (10 stars, last pushed 1mo ago), licensed MIT. It adds 12 tokens to every session and 1,048 once invoked, about $0.0001 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 commands, from other repositories
graph
Extract prerequisite concept graph from converted course materials and write course-index/concept-graph.md.
reindex
Idempotent reindex of an existing course — rewrite retired coverage.md tier markers to canonical vocabulary and materialize errors/log.md nature/phase into the on-disk schema (header keys == data keys), in place and atomically, WITHOUT running analyze.
alt
Import an Exam Radar (OPTIMETA Alt plugin) export and fold its lecture-emphasis exam signal into the course index — radar.md, a lecture-emphasis column on coverage.md, and a gold-zone weakmap.
blind
Strategy-level blind drill on a known HW or example problem. User describes approach in prose (no math typing); Claude verifies against solution then saves clean reference to derivations/.
doctor
Diagnose the paideia install + course workspace (Python, poppler, tesseract, Ollama/Qwen3-VL, course folders, .course-meta, writable paths, statusline wiring) and optionally auto-repair the permission-free issues. Run when a command won't work or right after cloning.
quiz
Generate N practice problems on a topic. Saves problem MD + hidden answer MD. User solves on paper, uploads answer PDF, then runs /grade. First arg weakmap → auto-load latest weakmap report and target its top weaknesses.