smithery/go-go-golems

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.

Installation

$ npx skills add smithery/go-go-golems --skill cursor-git-commit

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/go-go-golems.

npx skills add smithery/go-go-golems

Browse all from smithery/go-go-golems

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents cursor

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,164 B
  • docs SUMMARY.md 305 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Cursor Git Commit

Overview

Use a consistent commit workflow: inspect changes, stage intentionally, and avoid committing noise.

Checklist (run before committing)

  1. Inspect status: git status --porcelain
  2. Review diffs:

- unstaged: git diff --stat - staged: git diff --cached --stat

  1. Stage intentionally: git add path/to/file ...
  2. Verify staged set: git diff --cached --name-only
  3. Commit and record hash:

- git commit -m "..." then git 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/noise then add to .gitignore and git commit --amend --no-edit

Reference

  • Full checklist + ignore guidance: references/git-commit-instructions.md.