Skip to content
All Skills

Git Commit Message Writer

Generates conventional commit messages from staged changes. Prerequisites: git.

Code Generation|v1|Updated 5/18/2026
MCP get_skill({ skillId: "git-commit-message-writer-9885dedd" })

Use this skill with your agent

Create a free account and connect via MCP

Get Started Free
# Git Commit Message Writer

## Description
Analyze staged git changes and generate a conventional commit message.

## Instructions
1. Run `git diff --staged` to see changes
2. Analyze the nature of changes (feat, fix, refactor, docs, test, chore)
3. Write a commit message following Conventional Commits spec

## Output Format
```
<type>(<scope>): <short description>

<body - what and why, not how>
```

## Rules
- Keep subject line under 72 characters
- Use imperative mood ("add" not "added")
- Reference issue numbers when available
- Separate subject from body with blank line
#git#commit#automationgit