Help us improve
Share bugs, ideas, or general feedback.
From cce-core
Generates clear, conventional commit messages from git diffs. Useful when writing commit messages, reviewing staged changes, or preparing commits.
npx claudepluginhub nodnarbnitram/claude-code-extensions --plugin cce-coreHow this skill is triggered — by the user, by Claude, or both
Slash command
/cce-core:commit-helperThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate well-structured commit messages following conventional commit format.
Generates descriptive commit messages following conventional commits format by analyzing git diffs. Useful when writing commit messages or reviewing staged changes.
Generates conventional git commit messages by analyzing staged changes, categorizing types like feat/fix, adding scopes, and matching project history style.
Generates Conventional Commits messages from staged git changes by analyzing git diff --cached. Determines type/scope, writes imperative subjects ≤50 chars, adds body only if why not obvious. Use for commit generation or /cavemanov-commit.
Share bugs, ideas, or general feedback.
Generate well-structured commit messages following conventional commit format.
git diff --staged to see staged changesfeat: New featurefix: Bug fixdocs: Documentation changesrefactor: Code restructuring without behavior changetest: Adding or updating testschore: Maintenance tasksfeat(auth): add OAuth2 support for GitHub login
- Implement OAuth2 flow with PKCE
- Add token refresh mechanism
- Store tokens securely in encrypted storage
Closes #123