Published Agent Skill package. Follow the instructions in SKILL.md to complete the user's task.
write-commit
Create a conventional git commit from staged changes. Use when the user wants to commit, /commit, or write a commit message.
This page contains 1 files from the original skill zip. Supporting markdown and scripts are included below so you do not need extra downloads.
Files in this package
- SKILL.md
SKILL.md
Write Commit
Create one clear conventional commit from the current staged diff.
Steps
- Run
git statusandgit diff --staged. If nothing is staged, stop and say so. - Summarize what changed and why, in one sentence.
- Write a message:
type(scope): summary— types are feat, fix, docs, refactor, test, chore. - Keep the subject under 72 characters. No trailing period.
- Commit with that message. Do not push unless asked.