Claude Code usage governor: compact professional output, context slimming, tool-output filtering, telemetry, and drift guardrails.
> /plugin marketplace add 0xhimanshu/governor> /plugin install governor@governor
Repo: 0xhimanshu/governor
What's inside
Governor started as a Claude Code plugin for context hygiene, tool-output filtering, memory compression, telemetry, and drift guardrails.
As of v0.2.4, Governor's core behavior โ content-aware tool-output filtering and context hygiene โ works with any AI coding agent via prompt-based skills. No hooks or MCP required.
Keep long coding sessions efficient without making the model dumber.
The Claude Code command namespace is /governor:*.
bash install.sh --force
Restart Claude Code. Filtering, compact mode, and telemetry are already running โ there is nothing to turn on. When you want to look under the hood:
/governor:status
/governor:audit
/governor:compress CLAUDE.md
bash install.sh --project /path/to/project --agents all
This copies a Governor rules file into your project for each agent. The rules teach the agent to self-filter noisy tool output, preserve unique data, and maintain context hygiene โ automatically, every session.
Governor works at two levels:
| Agent | Integration | What You Get |
|---|---|---|
| Claude Code | Plugin with hooks | Full: auto-filtering, telemetry, compression, drift guard, /governor:* commands |
| Cursor | .cursor/rules/governor.mdc | Self-filtering, compact mode, context hygiene |
| Windsurf | .windsurf/rules/governor.md | Self-filtering, compact mode, context hygiene |
| Cline | .clinerules/governor.md | Self-filtering, compact mode, context hygiene |
| Codex CLI | AGENTS.md | Self-filtering, compact mode, context hygiene |
| Gemini CLI | GEMINI.md | Self-filtering, compact mode, context hygiene |
| Hermes ๐ | .hermes.md | Self-filtering, compact mode, context hygiene |
| DeepSeek ๐ | .dsh/rules/governor.md | Self-filtering, compact mode, context hygiene |
How it works for non-Claude agents: Governor's rules file teaches the agent to apply content-aware filtering itself. When tool output has >40% duplicate lines (test failures, log spam, build warnings), the agent compresses it โ keeping the first error, file:line, and exit code. When output is unique (API responses, JSON, code), it passes through intact. No external dependencies.
Claude Code gets the deepest integration because it supports plugin hooks. Other agents get the core behavior via prompt engineering.
Long coding sessions usually do not fail because the AI writes one extra paragraph.
They fail because context gets polluted:
CLAUDE.md, notes, and rules tax every sessionGovernor is designed for that failure mode โ in Claude Code and beyond.
| Capability | What it does | Where it works |
|---|---|---|
| Tool-output filtering | Compacts noisy output when content is repetitive; preserves unique data | All 8 agents |
| Compact mode | Keeps responses concise and professional | All 8 agents |
| Context hygiene | Avoids re-reads, broad scans, and context waste | All 8 agents |
| Memory compression | Rewrites bloated prompt files into denser, safer forms | Claude Code |
| Telemetry | Reports measured savings, failures, compactions, and waste heat | Claude Code |
| Drift guardrails | Adds planning and scope checks for broad tasks | Claude Code |
Most token-saving tools optimize one layer:
Governor is built for the broader session problem:
That is why Governor's benchmark story starts with valid-context loss and decision preservation, not only token counts.
Recent measured Sonnet run with Claude decision grading:
| Condition | Avg token savings | Avg VCLR | Decision preserved | Wrong decision |
|---|---|---|---|---|
| Caveman | 69.1% | 0.14 | 87.5% | 12.5% |
| Governor | 45.5% | 0.00 | 100.0% | 0.0% |
What this means:
Artifacts:
benchmarks/v2-fixture-results.mdbenchmarks/v2-fixture-results.jsonbenchmarks/sonnet-v2-report.mdSame machine, fresh Claude CLI Sonnet sessions, same multi-turn task, same starting repo snapshot.
| Condition | Output Tokens | Cost | Turns | Intent Preserved | Obvious Regression Found |
|---|---|---|---|---|---|
| Control | 10,997 | $0.5169 | 21 | Yes | No |
| Governor | 10,113 | $0.4933 | 22 | Yes | No |
| Delta | -8.0% | -4.6% | +4.8% | Tie | Tie |
This was a narrow pilot, not a universal claim. It matters because Governor kept the implementation contract intact while shaving cost on a real multi-turn coding task.
Structured/local cases focused on the criticism that compaction can miss the real clue.
| Case | Filtered? | Blocked | Signal Preserved |
|---|---|---|---|
| Noisy pytest failure buried in long log | Yes | 64.0% | Yes |
| Burp-style MCP payload with large history + one critical finding | Yes | 90.9% | Yes |
Large Read output containing source code | No | 0.0% | Yes |
Governor sits in a different layer from the other token-savers, so it stacks with them rather than replacing them.
| Tool | Shrinks | Overlap with Governor |
|---|---|---|
| Ponytail | The code the agent writes | None |
| Caveman | The prose the agent speaks | None |
| RTK | The shell output you pipe through it | Partial |
| Governor | The context the session consumes | โ |
Ponytail is a YAGNI enforcer: before writing code it walks a ladder โ does this need to exist, is it already in the codebase, does the stdlib or platform do it โ and stops at the first rung that holds. Their published benchmark reports ~54% less code written against a no-skill baseline. Those are their numbers on their fixtures, not something Governor has independently reproduced.
Ponytail does not read tool output. Governor does not touch code generation. Run both: Ponytail keeps the agent from over-building, Governor keeps the test logs and MCP payloads from that build out of your context window.
RTK is excellent at shrinking shell output.
Governor is aimed at the wider coding session:
Caveman is excellent when the main goal is making Claude talk in fewer tokens.
Governor is built for the broader session problem:
Short version:
Ponytail shrinks what gets built. Caveman shrinks what gets said. RTK shrinks what a command prints. Governor protects the session that holds all three.
Governor is best for:
Governor is less useful for:
/governor:compress CLAUDE.md rewrites
verbose memory files into dense prose. (Claude Code)GOVERNOR_FULL=1 as an env var in the
same Bash call to skip compaction without a separate command. Immune to
parallel-call cancellation./governor:status reports blocked tokens, failures,
compactions, and statusline snapshots when available. (Claude Code)/governor:plan again. (Claude Code)Governor is designed to work without commands. Everything below is optional.
| Behavior | When it runs |
|---|---|
| Tool-output filtering | Every tool call, once output is noisy and large |
| Compact response mode | Every session, from the moment the plugin loads |
| Telemetry + statusline | Continuously in the background |
| Prompt-risk suggestions | When a prompt would trigger a broad scan or retry loop |
| Mode switching by plain language | "turn off governor" / "enable governor" |
| Full output for one command | Prefix it: GOVERNOR_FULL=1 pytest -vv |
| Command | Purpose |
|---|---|
/governor:status | Usage dashboard, waste heat map, current mode |
/governor:mode [on|off|full|strict] | Control Governor; no argument reports current mode |
/governor:audit [paths] | Find bloated memory/rule files and context waste |
/governor:compress [level] [file] | Compress memory files with protected-span validation |
/governor:plan "task" | Write an implementation contract; run again later to check drift |
/governor:plan picks its phase automatically: no saved contract for this
project means it writes one, an existing contract means it reports drift against
FAQ
governor is a Claude Code plugin with 1 hand-picked skill for development work, indexed on Flowy. Install it with the command on its page. It includes usage-governor. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Is this plugin yours?
Claim it with GitHubSubmit a pluginPromote it