Skip to content
Automation Squad

Skill review · by Julius Brussee (JuliusBrussee)

Caveman Claude Skill

The caveman skill for Claude makes the agent answer like a terse caveman — articles, filler, pleasantries, and hedging deleted; code, commands, and error strings kept exact — to cut output tokens. It ships from JuliusBrussee/caveman, a repo by Julius Brussee that grew from a one-file joke into a 102,000-star product suite: the MIT-licensed skill plus a BSL-licensed proxy that compresses what the agent reads. The one thing to know before installing: the skill compresses only what Claude says, and in real coding sessions input tokens dominate the bill, so the advertised 65–75% savings describes prose output, not your invoice. The repo's own pinned 54-run benchmark — which measures the proxy, not the skill — found 33.2% fewer input tokens. The skill installs in one command, offers six intensity levels from lite to classical-Chinese wenyan, and carves out security warnings and destructive operations, where it drops the act and writes plainly. It works as described, and it is smaller than its star count suggests.

View the sourceMIT licensed · 102,194★ · facts checked September 1, 2026
Robert MacKelfresh

By Robert MacKelfresh

Founder, Automation Squad ·

Install

  1. 1Claude Code, skill only (MIT part, no hooks): run `npx skills add JuliusBrussee/caveman` in your terminal.
  2. 2Or install it as a Claude Code plugin: `claude plugin marketplace add JuliusBrussee/caveman` then `claude plugin install caveman@caveman`.
  3. 3Or run the full installer, which also wires Claude Code hooks and a statusline and detects other agents (Node 18+): `curl -fsSL https://raw.githubusercontent.com/JuliusBrussee/caveman/v2.4.0/install.sh | bash` (PowerShell variant in INSTALL.md).
  4. 4In a session, type `/caveman` to activate if it doesn't trigger on "be brief" or "caveman mode"; switch levels with `/caveman lite|full|ultra|wenyan-full`, disable with `/caveman off`.
  5. 5Claude.ai (no Claude Code): the skill uses the standard SKILL.md format — download the repo's `skills/caveman/` folder, zip it, and upload it under Settings → Capabilities → Skills.

What it does

Output compression
Rewrites Claude's prose replies in compressed caveman-speak: drops articles, filler (just/really/basically), pleasantries, and hedging; allows fragments; prefers short synonyms. Its own target pattern: "[thing] [action] [reason]. [next step]."
Six intensity levels
lite (no filler, full sentences), full (classic caveman, the default), ultra (one word when one word enough), plus three wenyan modes that answer in classical Chinese. Switch with /caveman lite|full|ultra|wenyan-full; off with /caveman off or "normal mode".
Technical exactness rules
Code blocks, commands, API names, error strings, numbers, and units are never altered, and negations (not/never/no/only) are never dropped. It also bans invented abbreviations (cfg/impl/fn) and arrow glyphs because tokenizers split them anyway — zero tokens saved.
Auto-Clarity failsafe
Automatically suspends caveman-speak for security warnings, irreversible-action confirmations, and multi-step sequences where compressed grammar could be misread, then resumes after the clear part is done.
Boundaries
Anything persisted outside the chat — code comments, commit messages, docs, issue and PR text — is written in normal prose. The mode persists per session until you turn it off.

Common questions

Does the caveman skill really cut Claude token usage by 65–75%?
Those figures describe compression of prose replies, and they vary by source — the repo says 65%, blog posts say 75%. The repo's own controlled benchmark measured 33.2% fewer input tokens, and that tested the separate proxy product. The skill saves real output tokens, but output is usually the smaller share of a coding session's bill.
Is the caveman skill an official Anthropic skill?
No. It's a community project by Julius Brussee, unaffiliated with Anthropic. Its popularity is real — 102,000+ GitHub stars and a v2.4.0 release in late August 2026 — but nothing about it is official.
Will caveman mode mangle code or error messages?
By its own rules, no. Code blocks, commands, API names, numbers, and error strings stay verbatim, and anything written for other humans — commits, docs, PR text — reverts to normal prose. Compression applies only to Claude's conversational replies.
Is the caveman skill free to use?
The skill itself is MIT-licensed, free for any use. The Caveman Proxy and compression engine in the same repo are BSL-1.1: free to self-host for yourself, but a commercial license is required to offer them as a hosted or embedded service.