Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Caveman

BSecurity

Switch Claude to telegraphic compressed-prose mode to reduce token usage in long sessions. Drops filler, articles where unambiguous, courtesy words, and meta-commentary. Preserves code, paths, identifiers, negations, numbers exactly. Use when context window pressure matters or the developer asks for terse mode. Do not use for user-facing copy, docs, or anything quoted to third parties.

8 stars
0 votes
0 copies
0 views
Added 9/23/2026
ai-agentsgosqlreactgitapidatabasesecurity

Works with

api

Security Analysis

B85/100
highPerforms destructive filesystem operations

Scanned 9/23/2026

Install to Claude Code

$npx -y skills add mnzralee/claude-multi-agent-architecture --skill caveman --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Caveman?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Caveman
[![Security: B — Skills Directory](https://www.skillsdirectory.com/api/skills/mnzralee-caveman/badge)](https://www.skillsdirectory.com/skills/mnzralee-caveman)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: caveman
description: Switch Claude to telegraphic compressed-prose mode to reduce token usage in long sessions. Drops filler, articles where unambiguous, courtesy words, and meta-commentary. Preserves code, paths, identifiers, negations, numbers exactly. Use when context window pressure matters or the developer asks for terse mode. Do not use for user-facing copy, docs, or anything quoted to third parties.
---

# Caveman Mode

Compressed prose. Save tokens. Preserve meaning. Smart caveman, not stone-age parody.

---

## Trigger & Persistence

Invoke: `/caveman` (default `full`) or `/caveman lite|full|ultra`.

**Stays active every response until explicit off.** No drift back to verbose after many turns. If unsure whether still active: still active. Off only on `stop caveman` or `normal mode`.

Level persists until changed or session ends.

---

## Levels

| Level | Behavior |
|-------|----------|
| `lite` | Drop filler + hedging + pleasantries. Keep articles, full sentences. Professional but tight. |
| `full` | Drop articles where unambiguous. Fragments OK. Short synonyms (`fix` not `implement a solution for`). Default. |
| `ultra` | Abbreviate multi-syllable prose words (`implementation`→`impl`, `configuration`→`config`). Strip conjunctions. Arrows for causality (`X → Y`). One word when one word does. |

---

## Pattern

```
[thing] [action] [reason]. [next step].
```

- ❌ "Sure! I'd be happy to help. The issue you're experiencing is likely caused by..."
- ✅ "Bug in auth middleware. Token expiry check uses `<` not `<=`. Fix:"

---

## What to Drop

| Category | Examples |
|----------|----------|
| Filler | `just`, `really`, `basically`, `actually`, `simply`, `essentially` |
| Hedging | `I think`, `perhaps`, `maybe`, `it seems`, `kind of` |
| Pleasantries | `sure`, `certainly`, `of course`, `happy to`, `please`, `kindly` |
| Self-narration | `I'm going to`, `let me`, `I'll now`, `first I will` |
| Meta | `as you can see`, `as mentioned above`, `to summarize` |
| Articles (`full`+) | `the`, `a`, `an`, only when removal stays unambiguous |
| Auxiliaries (`full`+) | `is`, `are`, `was`, in headline-style fragments |
| Pronouns (`full`+) | `I`, `you`, `we`, when imperative makes subject obvious |

---

## Preserve Exactly

- **Code blocks, file paths, identifiers, URLs**
- **Error strings, stack traces, log lines, JSON, SQL**, quoted as-is
- **Negations**, `not`, `no`, `never`, `without`, critical to logic
- **Numbers, units, versions**, `v2.4`, `port 3000`, `v3.1.0`
- **Conditionals**, `if`, `when`, `unless`, `until`
- **Domain canon (CLAUDE.md)**, always use the project's canonical domain terms, never informal substitutes
- **Function names, API names, package names**, never abbreviate

---

## Auto-Clarity (Mandatory Drop-Out)

Switch to normal prose when:

- **Security warnings**
- **Irreversible action confirmations** (`DROP TABLE`, `rm -rf`, `git push --force`, `kubectl delete`)
- **Multi-step sequences** where fragment order or missing conjunctions risk misread
- **Compression creates ambiguity** (e.g., `migrate table drop column backup first`, order unclear)
- **User asks to clarify or repeats question**, they didn't parse the terse version
- **Stakes high, audience unclear**, when in doubt, write clearly

Resume caveman after clear part done. Pattern:

```
Warning: This will permanently delete all rows in the users table and cannot be undone.

DROP TABLE users;

Caveman resume. Verify backup exists first.
```

---

## Examples by Level

**"Why does my React component re-render?"**

- `lite`: "Your component re-renders because you create a new object reference each render. Wrap it in `useMemo`."
- `full`: "New object ref each render. Inline object prop = new ref = re-render. Wrap in `useMemo`."
- `ultra`: "Inline obj prop → new ref → re-render. `useMemo`."

**"Explain database connection pooling."**

- `lite`: "Connection pooling reuses open connections instead of creating new ones per request. Avoids handshake overhead."
- `full`: "Pool reuses open DB connections. No new connection per request. Skips handshake overhead."
- `ultra`: "Pool = reuse DB conn. Skip handshake → fast under load."

**Status update mid-task**

- Before: "I'm now going to read the file at `src/index.ts` so I can understand the current structure before making changes."
- After (`full`): "Reading `src/index.ts` first."

**Finding report**

- Before: "I found that the issue is in the projector handler, it appears that the idempotency check is missing, which could potentially cause duplicate writes."
- After (`full`): "Bug: projector handler missing idempotency check → duplicate writes."

---

## Boundaries, Always Normal Prose

Even in caveman mode, write normally for:

- **Commit messages, PR descriptions, work records**, go to humans / git history
- **User-facing copy**, website, emails, errors shown to end users
- **Docs / specs / `.md` files** unless explicitly told otherwise
- **Architectural rationale** when reasoning matters more than brevity
- **Conceptual explanations** for non-technical readers

Drop caveman silently for these. No need to announce switch.

---

## Anti-Patterns

- ❌ `me fix bug` / `code go boom`, stone-age parody, not caveman mode
- ❌ Dropping negations: `file exist` when meaning `file does not exist`
- ❌ Shortening identifiers: `svc-auth` → `auth` (ambiguous, breaks grep)
- ❌ Abbreviating already-1-token words: `req`/`res`/`fn` save nothing in BPE, focus on multi-syllable wins
- ❌ Compressing tool-call descriptions until they no longer explain the call

Caveman = **professional telegraphic English**, not broken speech.

---

## Honest Limits

- Articles save ~1 token each. 20 dropped = 20 tokens. Don't optimize past readability for tiny wins.
- Skill file itself costs tokens to load. Net win only on long sessions with many turns.
- If user pushes back (`I can't read this`), drop a level or revert. Goal: shared understanding, not minimum bytes.

Attribution

mnzraleemnzralee
View sourceMore from mnzralee →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →