Stats
Actions
Tags
From stylish-git
Generate intelligent commit messages following StyleList94's commit convention
How this skill is triggered — by the user, by Claude, or both
Slash command
/stylish-git:commitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze staged changes and generate a commit message following the project's commit convention.
Analyze staged changes and generate a commit message following the project's commit convention.
<type>(<scope>): <subject>
<body>
| Type | Usage | Description |
|---|---|---|
| feat | 32% | New feature or update |
| chore | 30% | Dependencies, releases, config |
| refactor | 12% | Code reorganization |
| ci | 8% | CI/CD workflow changes |
| fix | 5% | Bug fixes |
| docs | 5% | Documentation updates |
| style | 1% | Code formatting (rare) |
| perf | rare | Performance improvements |
| test | rare | Adding or fixing tests |
Use scope selectively:
(deps): Dependency updates → chore(deps): bump next.js(release): Version releases → chore(release): v1.2.3(security): Security patches → fix(security): patch vulnerabilityfeat: add button componentUse bullet points with type prefixes:
feat: migrate to vanilla-extract
* feat: add vanilla-extract/css
* refactor: migrate layout components
* refactor: migrate button component
* chore: update vite plugin
git diff --staged to analyze changesSimple feature:
feat: add loading state to button
Dependency update:
chore(deps): bump react to 19.0.0
Complex change with body:
feat: implement dark mode
* feat: add theme context provider
* refactor: update color tokens
* docs: update readme
Release:
chore(release): v2.1.0
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub stylelist94/claude-plugins --plugin stylish-git