caveman-commit

द्वारा juliusbrussee

अल्ट्रा-संक्षिप्त कमिट संदेश जनरेटर। कमिट संदेशों से शोर हटाता है जबकि आशय और तर्क को संरक्षित करता है। पारंपरिक कमिट प्रारूप। विषय ≤50 वर्ण, बॉडी केवल तब जब "क्यों" स्पष्ट न हो। उपयोग करें जब उपयोगकर्ता कहे "write a commit", "commit message", "generate commit", "/commit", या /caveman-commit को आमंत्रित करे। स्टेजिंग परिवर्तन होने पर स्वचालित रूप से सक्रिय होता है।

npx skills add https://github.com/juliusbrussee/caveman --skill caveman-commit

Write commit messages terse and exact. Conventional Commits format. No fluff. Why over what.

Rules

Subject line:

  • <type>(<scope>): <imperative summary><scope> optional
  • Types: feat, fix, refactor, perf, docs, test, chore, build, ci, style, revert
  • Imperative mood: "add", "fix", "remove" — not "added", "adds", "adding"
  • ≤50 chars when possible, hard cap 72
  • No trailing period
  • Match project convention for capitalization after the colon

Body (only if needed):

  • Skip entirely when subject is self-explanatory
  • Add body only for: non-obvious why, breaking changes, migration notes, linked issues
  • Wrap at 72 chars
  • Bullets - not *
  • Reference issues/PRs at end: Closes #42, Refs #17

What NEVER goes in:

  • "This commit does X", "I", "we", "now", "currently" — the diff says what
  • "As requested by..." — use Co-authored-by trailer
  • "Generated with Claude Code" or any AI attribution — unless the user's own rule requires an Assisted-by/AI-attribution trailer, then add it as a trailer
  • Emoji (unless project convention requires)
  • Restating the file name when scope already says it

Examples

Diff: new endpoint for user profile with body explaining the why

  • ❌ "feat: add a new endpoint to get user profile information from the database"
  • feat(api): add GET /users/:id/profile
    
    Mobile client needs profile data without the full user payload
    to reduce LTE bandwidth on cold-launch screens.
    
    Closes #128
    

Diff: breaking API change

  • feat(api)!: rename /v1/orders to /v1/checkout
    
    BREAKING CHANGE: clients on /v1/orders must migrate to /v1/checkout
    before 2026-06-01. Old route returns 410 after that date.
    

Auto-Clarity

Always include body for: breaking changes, security fixes, data migrations, anything reverting a prior commit. Never compress these into subject-only — future debuggers need the context.

Boundaries

Only generates the commit message. Does not run git commit, does not stage files, does not amend. Output the message as a code block ready to paste. "stop caveman-commit" or "normal mode": revert to verbose commit style.

juliusbrussee की और Skills

caveman
juliusbrussee
अत्यधिक संकुचित संचार मोड। गुफामानव की तरह बोलकर टोकन उपयोग ~75% कम करता है, जबकि पूर्ण तकनीकी सटीकता बनाए रखता है। तीव्रता स्तरों का समर्थन करता है: लाइट, फुल (डिफ़ॉल्ट), अल्ट्रा, वेनयान-लाइट, वेनयान-फुल, वेनयान-अल्ट्रा। उपयोग करें जब उपयोगकर्ता "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief" कहे या /caveman का आह्वान करे। टोकन दक्षता का अनुरोध होने पर स्वचालित रूप से भ
communicationproductivity
caveman-compress
juliusbrussee
प्राकृतिक भाषा मेमोरी फ़ाइलों (CLAUDE.md, todos, preferences) को इनपुट टोकन बचाने के लिए कैवमैन प्रारूप में संपीड़ित करें। सभी तकनीकी सामग्री, कोड, URL और संरचना को संरक्षित करता है। संपीड़ित संस्करण मूल फ़ाइल को ओवरराइट करता है। मानव-पठनीय बैकअप FILE.original.md के रूप में सहेजा जाता है। ट्रिगर: /caveman-compress FILEPATH या "compress memory file
developmentdocument
caveman-help
juliusbrussee
सभी कैवमैन मोड, कौशल और कमांड के लिए त्वरित-संदर्भ कार्ड। एक-शॉट प्रदर्शन, स्थायी मोड नहीं। ट्रिगर: /caveman-help, "caveman help", "what caveman commands", "how do I use caveman"।
developmentdocumentproductivity
caveman-review
juliusbrussee
अल्ट्रा-संकुचित कोड समीक्षा टिप्पणियाँ। PR फीडबैक से शोर कम करता है जबकि कार्रवाई योग्य संकेत को संरक्षित करता है। प्रत्येक टिप्पणी एक पंक्ति में होती है: स्थान, समस्या, समाधान। उपयोग तब करें जब उपयोगकर्ता "इस PR की समीक्षा करें", "कोड समीक्षा", "डिफ की समीक्षा करें", "/review" कहे, या /caveman-review का आह्वान करे। पुल अनुरोधों की समीक्षा करते समय स्वचालित रूप से सक्रिय होता है।
developmentcode-review
caveman-stats
juliusbrussee
वर्तमान सत्र के लिए वास्तविक टोकन उपयोग और अनुमानित बचत दिखाता है। सीधे Claude Code सत्र लॉग से पढ़ता है — कोई AI अनुमान नहीं। /caveman-stats पर ट्रिगर होता है। आउटपुट mode-tracker हुक द्वारा इंजेक्ट किया जाता है; मॉडल स्वयं संख्याओं की गणना नहीं करता है।
developmentdata-analysis
cavecrew
juliusbrussee
Decision guide for delegating to caveman-style subagents. Tells the main thread WHEN to spawn `cavecrew-investigator` (locate code), `cavecrew-builder` (1-2 file edit), or `cavecrew-reviewer` (diff review) instead of doing the work inline or using vanilla `Explore`. Subagent output is caveman-compressed so the tool-result injected back into main context is ~60% smaller — main context lasts longer across long sessions. Trigger: "delegate to subagent", "use cavecrew", "spawn...
developmentcode-reviewapi