voice-review

voice-review is a command for Claude Code from zircote/human-voice. It costs 9 tokens per session (1,419 once invoked), scanned A, original, MIT.

A command for reviewing content for patterns commonly associated with AI-generated writing and comparing it with a saved voice profile when available.

In plain words
What is it for?
Use it to review documentation, blog posts, and other configured content, while optionally ignoring items such as emojis, dashes, bullets, or arrows.
Why use it?
It gives a repeatable way to check writing across selected files and focus on the pattern categories that matter.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: positional $N argument.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the human-voice plugin — 2 skills, 12 commands, 3 agents, 1 hook shipped together

Good fit Use it to review documentation, blog posts, and other configured content, while optionally ignoring items such as emojis, dashes, bullets, or arrows.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add zircote/human-voice
Claude Code
/plugin install human-voice

Made for: Claude Code.

Or install human-voice, the plugin that ships this one along with the rest of its 2 skills, 12 commands, 3 agents, 1 hook.

Wrote 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.

agentmods badge for voice-review

README.md
[![agentmods](https://agentmods.dev/badge/commands/zircote/human-voice/voice-review.svg)](https://agentmods.dev/commands/zircote/human-voice/voice-review)
Your own site
<a href="https://agentmods.dev/commands/zircote/human-voice/voice-review"><img src="https://agentmods.dev/badge/commands/zircote/human-voice/voice-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 9 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,419 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00009 $0.01419
Opus 5 $0.00005 $0.00709
Sonnet 5 $0.00002 $0.00284
Haiku 4.5 $0.00001 $0.00142

Measured 8d ago against content hash dcb56432e1ea, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

voice-review 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 8d 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.

commands/voice-review.md · 102 lines

How it starts

The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Human Voice Review

Analyze content for AI-generated writing patterns using a multi-tier approach.

Options

  • --ignore=emojis,em-dash - Skip specific pattern categories during character detection
    • Valid categories: emojis, em-dash, en-dash, smart-quotes, ellipsis, bullet, arrow
    • Example: /human-voice:voice-review --ignore=emojis,arrow docs/

Step 0: Load Configuration and Voice Profile

ALWAYS run this before any analysis. Not optional.

!cat "$HOME/.human-voice/config.json" 2>/dev/null || echo "NO_CONFIG" !cat "$HOME/.human-voice/profile.json" 2>/dev/null || echo "NO_PROFILE"

Use detection.content_directories to resolve targets when no path is given. Use detection.extensions to filter file types. Use detection.ignore to skip directories. If a voice profile loaded, use it to calibrate Tier 3/4 against the user's actual voice.

Step 1: Resolve Target

$IF($1, Review 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" )

Step 2: Character-Level Detection

Run automated character validation:

$IF($1, !node "${CLAUDE_PLUGIN_ROOT}/skills/human-voice/scripts/validate-character-restrictions.js" $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/validate-character-restrictions.js" $dirs $ARGS 2>&1 || echo "No content directories found to validate" )

Read the full file on GitHub · 102 lines

Changes

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.

  1. 8d ago First seen · 102 lines · 9 tokens per session scan A dcb56432e1ea

Subscribe to this mod's changes

voice-review is a command published in the GitHub repository zircote/human-voice (10 stars, last pushed 1mo ago), licensed MIT. It adds 9 tokens to every session and 1,419 once invoked, about $0.0000 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.