Updated: - projman: 4 commands + 4 skills + integration snippet - git-flow: 4 commands + 3 skills + integration snippet - pr-review: 1 command cross-reference - cmdb-assistant: 1 command + 1 skill - data-platform: 8 commands + integration snippet - viz-platform: 11 commands + integration snippet - contract-validator: 1 command + 1 skill + 1 agent Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1.2 KiB
1.2 KiB
name, description, agent
| name | description | agent |
|---|---|---|
| git-commit | Create a git commit with auto-generated conventional commit message | git-assistant |
/git-commit - Smart Commit
Skills
- skills/visual-header.md
- skills/git-safety.md
- skills/commit-conventions.md
- skills/environment-variables.md
Purpose
Create a git commit with an auto-generated conventional commit message based on staged changes.
Parameters
| Parameter | Description |
|---|---|
--message, -m |
Override auto-generated message |
--all, -a |
Stage all changes before commit |
Workflow
- Display header - Show GIT-FLOW Smart Commit header
- Check protected branch - Warn if on protected branch (per git-safety.md)
- Analyze changes - Run
git statusandgit diff --staged - Handle unstaged - Prompt to stage if nothing staged
- Generate message - Create conventional commit message (per commit-conventions.md)
- Confirm or edit - Present message with options to use, edit, regenerate, or cancel
- Execute commit - Run
git commitwith message and co-author footer
Output
Committed: abc1234
feat(auth): add password reset functionality
Files: 3 changed, 45 insertions(+), 12 deletions(-)