Generate commit message for staged changes, pause for approval, then commit. Stage files first with `git add`, then run this skill.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add qte77/claude-code-plugins --skill committing-staged-with-message --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Committing Staged With Message?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qte77-committing-staged-with-message-claude-code-plugins)More formats (shields.io, HTML) on the badges page.
---
name: committing-staged-with-message
description: Generate commit message for staged changes, pause for approval, then commit. Stage files first with `git add`, then run this skill.
compatibility: Designed for Claude Code
metadata:
model: haiku
argument-hint: (no arguments needed)
disable-model-invocation: true
allowed-tools: Bash, Read, Glob, Grep
---
# Commit Staged with Generated Message
## Step 1: Analyze Staged Changes
Run using the Bash tool:
- `git diff --staged --name-only` — list staged files
- `git diff --staged --stat` — diff stats summary
- `git log --oneline -5` — recent commit style
**Size guard**: If `--stat` shows >10 files or >500 lines changed, skip full
diff and rely on `--stat` + `--name-only`. Otherwise also run `git diff --staged`
for detailed review.
## Step 2: Generate Commit Message
Read `.gitmessage` for format (conventional commits: `type[(scope)][!]: description`).
**Body guidelines (keep concise — no padding):**
1. **What changed**: bullet points per logical group
2. For large changes, include diff stats summary as last line
Keep the message laser-focused. Don't repeat the subject line in the body.
Small changes (1-2 files, <50 lines) need only a subject line, no body.
## Step 3: Pause for Approval
**Please review the commit message.**
- **Approve**: "yes", "y", "commit", "go ahead"
- **Edit**: Provide your preferred message
- **Cancel**: "no", "cancel", "stop"
## Step 4: Commit
Once approved:
- `git commit --gpg-sign -m "[message]"` — GPG signature mandatory
- `git status` — verify success
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!