
commit-message
✓ Official★ 2,700by github · part of github/copilot-cli-for-beginners
Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help
🔥🔥🔥✓ VerifiedFreeQuick setup
🧩 One of 4 skills in the github/copilot-cli-for-beginners package — works on its own, and pairs well with its siblings.
Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help
Inspect the full instructions your agent will receiveExpandCollapse
This is the exact playbook injected into your agent when the skill activates — shown here so you can audit it before installing. You don't need to read it to use the skill.
name: commit-message description: Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help
Commit Message Skill
Generate commit messages following the Conventional Commits specification.
Format
Copy & paste — that's it
<type>(<scope>): <description>
[optional body]
[optional footer]Types
| Type | When to Use |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation only |
style | Formatting (no code change) |
refactor | Code change that neither fixes nor adds |
perf | Performance improvement |
test | Adding or updating tests |
chore | Maintenance tasks |
Rules
- Subject line maximum 72 characters
- Use imperative mood ("add" not "added" or "adds")
- No period at the end of subject line
- Separate subject from body with blank line
- Body explains what and why, not how
Examples
Simple:
Copy & paste — that's it
fix(auth): prevent redirect loop on expired sessionsWith body:
Copy & paste — that's it
feat(api): add rate limiting to public endpoints
- Limits requests to 100/minute per IP
- Returns 429 status with retry-after header
- Configurable via RATE_LIMIT_MAX env variable
Closes #234Copy & paste — that's it
npx skills add https://github.com/github/copilot-cli-for-beginners --skill commit-messageRun this in your project — your agent picks the skill up automatically.
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.