vault/Operations/Claude/skills/coding/commit/SKILL.md
Batch changes into logical commits with proper messages and safe concurrent handling.
npx skillsauth add eddowding/cortex commitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Batch changes into logical commits following best practices.
Review git diff, batch changes into logical commits, and commit them safely one at a time.
May be run alongside other agents changing code. Prioritizes data safety and atomic operations.
git status and git diff to understand all changesgit reset HEAD unwanted-file && git add "wanted-file" && git commit -m "type: subject"
<type>: <subject> (50 chars max)
<body> (optional, wrap at 72 chars)
- Planning doc: yyMMddx_feature_name.md (if applicable)
- Bullet points for multiple changes
Types: feat, fix, docs, style, refactor, test, chore
git add "path/with/[brackets]/file.ts"If codebase is in partial/broken state, prioritize commits that leave it working.
When in doubt, ask user before proceeding.
tools
Dispatch to the right problem-solving technique based on how you're stuck.
testing
Interactive brainstorming and advisory mode that helps think through questions, critique approaches, propose alternatives, and reach optimal decisions.
tools
Find one insight that eliminates multiple components - 'if this is true, we don't need X, Y, or Z'
testing
Test at extremes (1000x bigger/smaller) to expose fundamental truths hidden at normal scales.