cursor-git-commit
Provide a pre-commit checklist and staging hygiene (review diffs, stage specific files, avoid common noise like dist/ or .env, and fix mistakes with reset/rm --cached/amend). Use when the user is about to commit, asks for a commit workflow, or needs help cleaning up staged files.
$ インストール
git clone https://github.com/go-go-golems/docmgr /tmp/docmgr && cp -r /tmp/docmgr/.codex/skills/cursor-git-commit ~/.claude/skills/docmgr// tip: Run this command in your terminal to install the skill
SKILL.md
name: cursor-git-commit description: Provide a pre-commit checklist and staging hygiene (review diffs, stage specific files, avoid common noise like dist/ or .env, and fix mistakes with reset/rm --cached/amend). Use when the user is about to commit, asks for a commit workflow, or needs help cleaning up staged files.
Cursor Git Commit
Overview
Use a consistent commit workflow: inspect changes, stage intentionally, and avoid committing noise.
Checklist (run before committing)
- Inspect status:
git status --porcelain - Review diffs:
- unstaged:
git diff --stat - staged:
git diff --cached --stat
- unstaged:
- Stage intentionally:
git add path/to/file ... - Verify staged set:
git diff --cached --name-only - Commit and record hash:
git commit -m "..."thengit rev-parse HEAD
Fix common mistakes
- Unstage one file:
git reset HEAD path/to/file - Unstage everything:
git reset HEAD - Remove noise already committed (keep on disk):
git rm --cached path/to/noisethen add to.gitignoreandgit commit --amend --no-edit
Reference
- Full checklist + ignore guidance:
references/git-commit-instructions.md.
Repository

go-go-golems
Author
go-go-golems/docmgr/.codex/skills/cursor-git-commit
6
Stars
2
Forks
Updated2d ago
Added5d ago