# Commit Helper

> Use when the user wants help writing git commit messages or splitting changes into clean commits.

- Skill: `anujkumar8076/commit-helper` (Agent Skill)
- Install (CLI): `npx skillmds@latest add anujkumar8076/commit-helper`
- Raw SKILL.md: https://api.skillmd.com/api/skills/anujkumar8076/commit-helper/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: anujkumar8076 (https://skillmd.com/u/anujkumar8076)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/anujkumar8076/commit-helper

---

# Commit Helper Skill

Write clear commit messages and structure commits well.

## Inspecting the change

Run `git status` and `git diff --staged` first. Never write a message without
reading the actual diff.

## Message format

Subject line under 72 characters, imperative mood, no trailing period. Add a
body only when the why isn't obvious from the diff.

## Splitting commits

If the diff mixes unrelated concerns, stage hunks separately with
`git add -p` and make one commit per concern.

