voice-gate

by assafkipVerified

Deterministic Claude Code hook that catches AI-sounding writing before you publish. Banned words, cadence tells, em dashes, stats. Runs locally, no tokens.

0
Stars
0
Forks
Python
Language
8/24/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/assafkip/voice-gate

Getting Started

Guides for using skills like voice-gate.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

voice-gate: a deterministic hook that catches AI-sounding writing before you publish

voice-gate is a Claude Code hook and Python CLI that scans your drafts for the patterns that make writing read as machine-generated, then blocks the write until you fix them. It runs locally, needs nothing beyond python3, and drops into any repo with no path edits.

This free repo ships the core voice-lint detector and a starter ruleset you can edit. The paid kit, Writing Voice Gate, adds the substance detector, the headline and LinkedIn and email format checks, a one-command installer, and a test suite. Link in the footer.

Version 1.0.0. Updated 2026-05-28.

How do I install voice-gate

Copy two files and one config line.

mkdir -p .claude/hooks/voice-gate
cp hooks/voice-lint.py hooks/voice_gate_config.py .claude/hooks/voice-gate/
cp -r config .claude/hooks/voice-gate/config

Then add the hook to .claude/settings.json (see config/settings.example.json):

{
  "hooks": {
    "PostToolUse": [
      {
        "matcher": "Edit|Write|MultiEdit",
        "hooks": [
          { "type": "command", "command": "python3 .claude/hooks/voice-gate/voice-lint.py" }
        ]
      }
    ]
  }
}

Restart Claude Code. On every save to a content file, the gate runs. If a draft trips a rule, the write is blocked with a line-by-line report.

How do I stop Claude from writing like a robot

Run your draft through the gate before you publish, not after.

python3 hooks/voice-lint.py examples/bad-draft.md

voice-lint flags the deterministic fingerprints of machine prose:

  • Overused filler words from a list you control (the starter list ships in config/banned-words.txt).
  • Filler phrases like "in today's world" or "it is important to note", from config/banned-phrases.txt.
  • Em dashes.
  • Unverifiable stat claims (87%, "the study found", "according to research").
  • The cadence tells: three sentences in a row that open the same way, three short clauses of the same length, parallel comma triplets, and bold titles restated in the next line.

No model is in the loop. It never hallucinates a verdict and never spends a token to run.

How is voice-gate different from Grammarly or an AI detector

Grammarly checks grammar for correctness. AI detectors hand you a probability score after the fact, and they are easy to game. voice-gate is neither. It is a gate wired into your editor's save event. Instead of scoring, it blocks, and it points at the exact line and the exact rule. You fix the line and move on. Everything runs before you publish, on your own machine.

Banned-word linterAI detectorvoice-gate
Catches overused wordsYesNoYes
Catches filler phrasesSomeNoYes
Catches cadence tellsNoNoYes
Runs deterministically, no tokensVariesNoYes
Blocks the write in Claude CodeRarelyNoYes
Editable word lists, no code changeSometimesNoYes

Does voice-gate work outside Claude Code

Yes. Every check is a plain Python CLI. Run python3 hooks/voice-lint.py draft.md in any pipeline, any CI job, any pre-commit hook. The Claude Code wiring is convenience, not a requirement.

How do I change the rules

The word and phrase lists are plain text files. Open config/banned-words.txt and config/banned-phrases.txt and edit them. For everything else, including which file paths the gate fires on, copy config/voice-gate.config.example.json to voice-gate.config.json and point the VOICE_GATE_CONFIG env var at it.

Some rules ship off by default because they are house style, not universal tells. You opt into those in the config.

How do I bypass the gate on one file

Add <!-- voice-lint-skip --> anywhere in the file. Skips are per-file and explicit, so an exception is a decision, not a default.

Frequently asked questions

Will it flag my code? No. It strips code fences, inline code, and frontmatter before checking prose.

Does it phone home? No. There are no network calls and no telemetry.

What does it cost? This repo is free and MIT-licensed. The full Writing Voice Gate is a one-time 29 dollars on Gumroad.


Get the full kit

This free repo is the seed. The paid Writing Voice Gate adds the substance detector that catches drafts with no witness, no named thing, and no number, the four format checks for headlines and LinkedIn and email, the one-command installer, and the test suite.

I build these gates for teams. If you want the same discipline wired into your own writing pipeline, grab a slot: https://calendar.app.google/cMFvhvDsfi9iyWYy9

Frequently Asked Questions

What is voice-gate?

voice-gate is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by assafkip. Deterministic Claude Code hook that catches AI-sounding writing before you publish. Banned words, cadence tells, em dashes, stats. Runs locally, no tokens. It has 0 GitHub stars.

Is voice-gate safe to use?

Yes. voice-gate passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install voice-gate?

Clone the repository with "git clone https://github.com/assafkip/voice-gate" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is voice-gate written in?

voice-gate is primarily written in Python. It is open-source under assafkip on GitHub, so you can review or fork the full source.

Are there alternatives to voice-gate?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh voice-gate against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details