From github-dev
Guides git commit workflow: analyzes staged files, generates conventional messages (feat/fix/etc.), updates README for features/setup changes, ignores unstaged.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github-dev:commit-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Complete workflow for creating commits following project standards.
Complete workflow for creating commits following project standards.
Use commit-creator agent
/commit-staged [context] for automated commit handlingAnalyze staged files only
git diff --cached --name-onlygit diff --cachedCommit message format
{type}: brief description (max 50 chars)feat, fix, refactor, docs, style, test, buildMessage examples
feat: implement user authentication systemfix: resolve memory leak in data processing pipelinerefactor: restructure API handlers to align with project architectureDocumentation update
Execution
npx claudepluginhub fcakyon/claude-codex-settings --plugin github-devGenerates Conventional Commits messages for staged git changes and commits them. Follows v1.0.0 spec with types like feat, fix, refactor. Use for standardized commits or /commit invocation.
Generates conventional commit messages from staged changes by analyzing git diff and status. Helps users write structured, meaningful commits.
Generates Conventional Commits from staged git changes: classifies feat/fix/docs types, detects scopes/breaking changes, matches project style from history.