From workflow-skills
Generate and validate conventional commit messages following the Conventional Commits specification. Analyzes staged changes to determine type, scope, and subject. Use when creating git commits or validating commit message format.
npx claudepluginhub arosenkranz/claude-code-config --plugin workflow-skillsThis skill uses the workspace's default tool permissions.
Generate and validate conventional commit messages following the Conventional Commits specification.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
Generate and validate conventional commit messages following the Conventional Commits specification.
/conventional-commit [action] [options]
generate - Create commit message from changesvalidate - Check if message follows conventionamend - Fix the last commit messagetemplate - Generate commit templatehook - Install git commit-msg hookfeat - New featurefix - Bug fixdocs - Documentation changesstyle - Code style changes (formatting, semicolons, etc.)refactor - Code refactoring without feature changesperf - Performance improvementstest - Adding or updating testsbuild - Build system or dependency changesci - CI/CD configuration changeschore - Maintenance tasksrevert - Reverting previous commits<type>(<scope>): <subject>
[optional body]
[optional footer(s)]
Change Analysis
Message Generation
Validation
api - REST API changesui - User interface changesdb - Database modificationsauth - Authentication/authorizationdocker - Container-related changesk8s - Kubernetes configurationsinstruqt - Instruqt lab changesdatadog - Datadog monitoring changesheader - Header componentfooter - Footer componentnavbar - Navigation barmodal - Modal windowsform - Form componentsconfig - Configuration filesdeps - Dependenciesscripts - Script filestests - Test filesSee references/examples.md for full commit message examples (feature, bugfix, breaking change, etc.).
See references/hooks-and-aliases.md for the commit-msg hook script, gitconfig aliases, and automated generation script.
--type - Specify commit type--scope - Define commit scope--breaking - Mark as breaking change--issues - Reference issue numbers--no-verify - Skip validation--amend - Amend previous commit/conventional-commit generate --type feat --scope api
/conventional-commit validate "feat(ui): add dark mode toggle"
/conventional-commit amend --fix-format
/conventional-commit hook --install
/conventional-commit template --breaking