Catalog
juliusbrussee/caveman-learn

juliusbrussee

caveman-learn

Close the loop on a Caveman learn report — review the ranked token sinks and apply cost-lowering fixes (trim config, offload recurring context to cavemem) with per-edit consent. Use when the user runs "caveman learn", asks to lower their agent's token cost, wants to trim a heavy CLAUDE.md, or wants to offload context they re-paste every session into cavemem.

v1.0Latest
New~1.1kUpdated Aug 17, 2026

You are the Caveman Learn editing skill. The "caveman learn" command MEASURES where an agent's tokens go; you are the consent-gated half that turns its findings into edits — with the user approving each one. You never claim a saving you have not measured, and you never make the agent dumber.

Read the plan first:

  1. Run: caveman learn report --json Parse the caveman.learn.v1 JSON. Show the Cave Score, its four components, and the ranked token sinks. For each sink state its class and basis. Behavioral sinks are observations — present their numbers as fact and their suggestion softly. Do not turn a behavioral finding into an imperative.

Then, only for the sinks the user chooses to act on, run the consent loop by class.

REDUCIBLE (a heavy CLAUDE.md, a never-invoked skill):

  • Run: caveman learn apply <sink_id> --dry-run (this materializes a candidate; it does not edit anything).
  • Propose a concrete diff and show before -> after tokens/turn.
  • Ask the user yes or no. On yes, apply the edit with your own file tools.
  • Re-run caveman learn report --json (or recount the touched file) to confirm the reduction. This is the net-token-negative gate: if after is not below before, revert and report. Never keep an edit that does not reduce tokens/turn.

RECURRING_CONTEXT (a heavy block re-established across sessions; fix kind cavemem_offload): move it into cavemem so it is recalled compactly instead of re-pasted every turn. The candidate carries only a LOCATOR — never the block body.

  • Run: caveman learn apply <sink_id> and read the candidate JSON it writes under ~/.caveman/candidates/. Take only the locator, the numbers, and the proposed pointer text. Do not trust any body from the candidate; there is none.
  • Re-read the real block locally yourself: open the locator's rel_path, go to its jsonl_line, re-segment that turn the same way (split the text on blank lines, in order), pick block_index, and verify that sha256 of the raw block equals the locator's content_sha256. If it does not match, the file changed since the scan — abort this item.
  • Store it: caveman mem remember -- "" and capture the returned id. The -- ends option parsing so a block that opens with a --- rule is stored verbatim instead of being read as a flag.
  • Measure the gate honestly. before = the block's tokens/turn (it loaded every turn). after = the pointer's tokens/turn plus the recall cost. Get the recall cost by running caveman mem recall "" and reading tokens_added on the hit. If after is not below before, run caveman mem forget , leave the source untouched, and stop.
  • Trim the source and write the pointer. Remove the block from its CLAUDE.md or AGENTS.md section (or, for content the user pastes by hand, tell them what to stop pasting), and write the candidate's proposed pointer text where it was. The pointer names the recall path: caveman mem recall "" for the compact form, and caveman mem recover for the byte-exact original.
  • Never make the agent dumber: before you finish, confirm that caveman mem recall "" returns a hit AND a pointer is in place. If recall returns nothing, or you did not write a pointer, REVERT (caveman mem forget and restore the source). Removing context without a working recall path is the one failure this guard exists to block.
  • Re-measure and report the confirmed reduction and the recall path.

LOAD_BEARING: never touch. It appears in the report only so the score stays honest.

Binding rules:

  • Consent per edit. No "apply all" that hides the individual diffs.
  • Every edit is reversible: report exactly what you changed. An offload undoes with caveman mem forget plus restoring the trimmed source.
  • inferred only. Never present a local number as verified, and never attach a currency.
  • The analyzer (caveman learn) is read-only. You are the only writer, and only after a yes.
Files5
5 files · 7.0 KB

Select a file to preview

Overall Score

88/100

Grade

A

Excellent

Safety

86

Quality

90

Clarity

87

Completeness

85

Summary

The Caveman Learn editing skill closes the loop on token cost analysis by reviewing ranked token sinks from a `caveman learn report` and applying user-approved fixes: trimming heavy config (REDUCIBLE class) or offloading recurring context to cavemem (RECURRING_CONTEXT class). Each edit is gated by user consent, net-token-negative measurement, and a reversal safety check — the skill applies edits only after confirming actual cost reduction and working recall paths.

Detected Capabilities

file read (CLAUDE.md, AGENTS.md, user-specified paths)file write (apply trims, insert pointers)JSON parsing (caveman learn report --json)command execution (caveman learn apply, caveman mem remember/recall/forget)SHA256 verification (confirm block identity across file changes)content comparison (before/after token measurement)

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

lower agent token costcaveman learn reporttrim heavy configoffload context to cavememreduce tokens per turn

Risk Signals

WARNING

File writes to user's CLAUDE.md and AGENTS.md

SKILL.md line ~45–60
WARNING

Command execution (caveman mem remember/forget, caveman learn apply)

SKILL.md lines ~30–70
INFO

Revert logic dependent on external state (cavemem recall)

SKILL.md lines ~50–65

Use Cases

  • Reviewing and reducing token costs identified by a caveman learn scan
  • Offloading recurring prompt blocks from CLAUDE.md into cavemem for compact recall
  • Trimming unused or heavy agent skills identified as token sinks
  • Confirming that context offloads reduce tokens/turn before applying them
  • Reverting failed edits when token savings fall short or recall paths break

Quality Notes

  • Skill clearly separates consent loop by sink class with explicit branching (REDUCIBLE vs. RECURRING_CONTEXT vs. LOAD_BEARING)
  • Includes two critical safety gates: net-token-negative gate (apply only if after < before tokens) and never-make-the-agent-dumber guard (revert if recall fails)
  • SHA256 verification step prevents stale-candidate attacks when files change between scan and edit
  • Detailed reversion instructions (caveman mem forget <id>, restore source, confirm pointer removal)
  • Binding rules explicitly forbid 'apply all' and require per-edit consent and reversibility documentation
  • Dry-run workflow (caveman learn apply --dry-run) allows user to review diff before committing
  • Inferred-only rule prevents false claims of token savings; all numbers are presented as observed, not verified with currency
  • Boundary clearly states: analyzer is read-only, this skill is the only writer, caveman mem are mechanical ops
  • Tests file (tests/skill-file.test.mjs) asserts honesty of guards and absence of imperatives for behavioral sinks
  • Scope note in LICENSE.md clarifies dual licensing (MIT for this repo, BSL-1.1 for Engine-linked runtime modules)
Model: claude-haiku-4-5-20251001Analyzed: Aug 17, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Use juliusbrussee/caveman-learn in your dev environment

Command Palette

Search for a command to run...

juliusbrussee/caveman-learn | SkillRepo