| name | commit |
| description | Create commits following repo conventions. Use when committing changes, creating commit messages. |
| allowed-tools | Bash, Read, Glob, Grep |
Git Commit Skill
Quick Start
/commit
Commit Message Format
<type>(<scope>): <description>
Core Patterns
Type
| Type | Purpose |
|---|
| feat | New feature |
| fix | Bug fix |
| chore | Build, config |
| refactor | Refactoring |
| docs | Documentation |
| test | Tests |
Scope
| Category | Example |
|---|
| Package | core, mobile |
| None | Omit scope |
Examples
feat(core): add useDebounce hook
feat(mobile): add useKeyboardHeight hook
fix: correct SSR rendering logic
docs: update useToggle documentation
chore: add claude skills
Execution Steps
git status - Check changed files
git diff - Analyze changes
- Determine type, scope, and description
git add . + git commit
References