Commit msg gen
Generate conventional commit messages without scope from staged changes. Use when: preparing commits with #git_diff_staged to create concise commit messages following conventional commits format.From its SKILL.md
npx -y skills add asimtahir-karakus-kd/skills --skill commit-msg-genAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.7 KB, 318 tokens by cl100k_base, as published. Nobody here has run it
Conventional Commit Message Generator
Generate conventional commit messages following the Conventional Commits specification, without scope prefix.
When to Use
- You have staged changes and need a properly formatted commit message
- You want commit messages that follow conventional commits format
- You need concise messages without scope (e.g.,
fix: descriptioninstead offix(scope): description)
Procedure
- Stage your changes using git add
- Invoke this skill in chat
- The skill will:
- Fetch staged changes using
#git_diff_staged - Analyze the changes to determine commit type (fix, feat, refactor, etc.)
- Extract the primary file name from changes
- Generate a conventional commit message in format:
type: description in \FileName``
- Fetch staged changes using
Commit Message Format
type: description in `FileName`
Supported Types
fix- Bug fixesfeat- New featuresrefactor- Code refactoringdocs- Documentation changesstyle- Code style changes (formatting, etc.)test- Test additions or updateschore- Build, dependencies, tooling
Examples
fix: improve form initialization and modal state handling based on fetch completion in `QualityCheckResultsModal`
feat: add authentication guard to protected routes in `AuthGuard`
refactor: simplify data validation logic in `FormValidator`
What ships with it: 1 file
3.0 KB alongside SKILL.md
- README.md3.0 KB