Marketplace 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.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/0xmsc/commit" ~/.claude/skills/aiskillstore-marketplace-commit && rm -rf "$T"
manifest:
skills/0xmsc/commit/SKILL.mdsource content
Commit Skill
Workflow
- Analyze Results: Review
andgit status
.git diff --staged - Draft Message: Follow Conventional Commits.
,feat
,fix
,docs
,style
,refactor
,test
.chore- Max 50 chars for subject.
- Explain "why" in body if needed (wrap at 72).
- Atomic Commits: Ensure one logical change per commit.
- Templates: Use
for consistency.assets/commit-template.txt
Safe Git Commands
git add <files>git commit -m "message"git diff --staged
,git status
,git showgit 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.