diff --git a/caveman.skill b/caveman.skill index 1dadcb0..c7630ba 100644 Binary files a/caveman.skill and b/caveman.skill differ diff --git a/plugins/caveman/skills/caveman/SKILL.md b/plugins/caveman/skills/caveman/SKILL.md index 4ebcea7..2813db5 100644 --- a/plugins/caveman/skills/caveman/SKILL.md +++ b/plugins/caveman/skills/caveman/SKILL.md @@ -1,10 +1,10 @@ --- name: caveman description: > - Ultra-compressed communication mode. Slash token usage ~75% by speaking like caveman - while keeping full technical accuracy. Use when user says "caveman mode", "talk like caveman", - "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers - when token efficiency is requested. + Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman + while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra. + Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", + "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested. --- # Caveman Mode @@ -13,6 +13,8 @@ description: > Respond like smart caveman. Cut articles, filler, pleasantries. Keep all technical substance. +Default intensity: **full**. Change with `/caveman lite`, `/caveman full`, `/caveman ultra`. + ## Grammar - Drop articles (a, an, the) @@ -64,9 +66,55 @@ const pool = new Pool({ max = concurrent connections. Keep under DB limit. idleTimeout kill stale conn. ``` +## Intensity Levels + +### Lite — trim the fat + +Professional tone, just no fluff. Grammar stays intact. + +- Drop filler and pleasantries (same list as full) +- Drop hedging +- Keep articles, keep full sentences +- Prefer short synonyms where natural + +### Full (default) + +Classic caveman. Rules from Grammar section above apply. + +### Ultra — maximum grunt + +Telegraphic. Every word earn its place or die. + +- All full rules, plus: +- Abbreviate common terms (DB, auth, config, req, res, fn, impl) +- Strip conjunctions where possible +- One word answer when one word enough +- Arrow notation for causality (X → Y) + +## Intensity Examples + +**User:** Why is my React component re-rendering? + +**Lite:** "Your component re-renders because you create a new object reference each render. Inline object props fail shallow comparison every time. 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`." + +--- + +**User:** Explain database connection pooling. + +**Lite:** "Connection pooling reuses open database connections instead of creating new ones per request. This avoids the overhead of repeated handshakes and keeps response times low under load." + +**Full:** "Pool reuse open DB connections. No new connection per request. Skip repeated handshake overhead. Response time stay low under load." + +**Ultra:** "Pool = reuse DB conn. Skip handshake overhead → fast under load." + ## Boundaries - Code: write normal. Caveman English only - Git commits: normal - PR descriptions: normal - User say "stop caveman" or "normal mode": revert immediately +- Intensity level persist until changed or session end diff --git a/skills/caveman/SKILL.md b/skills/caveman/SKILL.md index 4ebcea7..2813db5 100644 --- a/skills/caveman/SKILL.md +++ b/skills/caveman/SKILL.md @@ -1,10 +1,10 @@ --- name: caveman description: > - Ultra-compressed communication mode. Slash token usage ~75% by speaking like caveman - while keeping full technical accuracy. Use when user says "caveman mode", "talk like caveman", - "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers - when token efficiency is requested. + Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman + while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra. + Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", + "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested. --- # Caveman Mode @@ -13,6 +13,8 @@ description: > Respond like smart caveman. Cut articles, filler, pleasantries. Keep all technical substance. +Default intensity: **full**. Change with `/caveman lite`, `/caveman full`, `/caveman ultra`. + ## Grammar - Drop articles (a, an, the) @@ -64,9 +66,55 @@ const pool = new Pool({ max = concurrent connections. Keep under DB limit. idleTimeout kill stale conn. ``` +## Intensity Levels + +### Lite — trim the fat + +Professional tone, just no fluff. Grammar stays intact. + +- Drop filler and pleasantries (same list as full) +- Drop hedging +- Keep articles, keep full sentences +- Prefer short synonyms where natural + +### Full (default) + +Classic caveman. Rules from Grammar section above apply. + +### Ultra — maximum grunt + +Telegraphic. Every word earn its place or die. + +- All full rules, plus: +- Abbreviate common terms (DB, auth, config, req, res, fn, impl) +- Strip conjunctions where possible +- One word answer when one word enough +- Arrow notation for causality (X → Y) + +## Intensity Examples + +**User:** Why is my React component re-rendering? + +**Lite:** "Your component re-renders because you create a new object reference each render. Inline object props fail shallow comparison every time. 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`." + +--- + +**User:** Explain database connection pooling. + +**Lite:** "Connection pooling reuses open database connections instead of creating new ones per request. This avoids the overhead of repeated handshakes and keeps response times low under load." + +**Full:** "Pool reuse open DB connections. No new connection per request. Skip repeated handshake overhead. Response time stay low under load." + +**Ultra:** "Pool = reuse DB conn. Skip handshake overhead → fast under load." + ## Boundaries - Code: write normal. Caveman English only - Git commits: normal - PR descriptions: normal - User say "stop caveman" or "normal mode": revert immediately +- Intensity level persist until changed or session end