Caveman Cn banner
bbylw bbylw

Caveman Cn

AI community

Description

一个 Claude Code 技能/插件和 Codex 插件,让智能体像原始人一样说话——在保持完全技术准确性的同时,减少 约 75% 的输出 token。现在支持 文言文模式、简洁提交、单行代码审查,以及一个每会话可减少 约 46% 输入 token 的压缩工具。 基于一个广为流传的观察:原始人语言能显著减少 LLM 的 token 使用量,且不丢失技术内容。所以我们将其改为一行安装。

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

caveman

why use many token when few do trick

Stars Last Commit License

使用前后对比安装强度级别技能基准测试评估


**汉化说明**:本文档汉化自 [JuliusBrussee/caveman](https://github.com/JuliusBrussee/caveman) 原始英文 README。

一个 [Claude Code](https://docs.anthropic.com/en/docs/claude-code) 技能/插件和 Codex 插件,让智能体像原始人一样说话——在保持完全技术准确性的同时,减少 **约 75% 的输出 token**。现在支持 [文言文模式](#文言文-wenyan-mode)、[简洁提交](#caveman-commit)、[单行代码审查](#caveman-review),以及一个每会话可减少 **约 46% 输入 token** 的[压缩工具](#caveman-compress)。

基于一个广为流传的观察:原始人语言能显著减少 LLM 的 token 使用量,且不丢失技术内容。所以我们将其改为一行安装。

使用前后对比

🗣️ 普通 Claude (69 tokens)

"The reason your React component is re-rendering is likely because you're creating a new object reference on each render cycle. When you pass an inline object as a prop, React's shallow comparison sees it as a different object every time, which triggers a re-render. I'd recommend using useMemo to memoize the object."

🪨 原始人 Claude (19 tokens)

"New object ref each render. Inline object prop = new ref = re-render. Wrap in `useMemo`."

🗣️ 普通 Claude

"Sure! I'd be happ