multiAI Summary Pending
commit
Helps write conventional commit messages, create atomic commits, and follow git best practices. Use when the agent needs to help with git commits, commit message writing, or git workflow guidance.
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/commit/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/0xmsc/commit/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/commit/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How commit Compares
| Feature / Agent | commit | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Helps write conventional commit messages, create atomic commits, and follow git best practices. Use when the agent needs to help with git commits, commit message writing, or git workflow guidance.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Commit Skill ## Workflow 1. **Analyze Results**: Review `git status` and `git diff --staged`. 2. **Draft Message**: Follow [Conventional Commits](references/conventional-commits.md). - `feat`, `fix`, `docs`, `style`, `refactor`, `test`, `chore`. - Max 50 chars for subject. - Explain "why" in body if needed (wrap at 72). 3. **Atomic Commits**: Ensure one logical change per commit. 4. **Templates**: Use `assets/commit-template.txt` for consistency. ## Safe Git Commands - `git add <files>` - `git commit -m "message"` - `git diff --staged` - `git status`, `git show`, `git log --oneline` ## Limitations - No interactive commands (`git add -p`, `git rebase -i`). - No force pushing or amending without explicit user guidance. - Always confirm before final commit/push.