From project-starter
Creates a conventional git commit with an auto-generated message based on staged changes. Analyzes the diff, suggests a type-scope-description format, and executes the commit.
How this command is triggered — by the user, by Claude, or both
Slash command
/project-starter:commit optional scope or message hintThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
## Context - Current branch: !`git branch --show-current` - Git status: !`git status --short` - Staged changes: !`git diff --cached --stat` - Staged diff: !`git diff --cached` - Recent commits (for style reference): !`git log --oneline -5` ## Task Based on the staged changes above, create a single git commit: 1. Analyze the staged diff to understand what changed 2. Generate a conventional commit message following the format: - `type(scope): description` - Types: feat, fix, docs, style, refactor, perf, test, chore 3. If no changes are staged, inform the user and suggest staging fil...
git branch --show-currentgit status --shortgit diff --cached --statgit diff --cachedgit log --oneline -5Based on the staged changes above, create a single git commit:
type(scope): description$ARGUMENTS
11plugins reuse this command
First indexed Jan 2, 2026
Showing the 6 earliest of 11 plugins
npx claudepluginhub guo-astro/claude-workflow/commitCreates a conventional git commit with an auto-generated message based on staged changes. Analyzes the diff, suggests a type-scope-description format, and executes the commit.
/commitStages unstaged changes if needed and creates a git commit with conventional commit format (feat, fix, docs, etc.). Uses arguments as optional message hint.
/commit-msgGenerates a Conventional Commits-compliant commit message from staged changes. Accepts an optional scope argument.
/commit-smartGenerates a conventional commit message from staged changes using AI, then commits with your approval.
/commitAnalyzes all staged git changes and generates an intelligent conventional commit message with type, scope, subject, body, and footers. Presents the message for review before committing.
/commitAnalyzes staged git changes and generates a conventional commit message with type, scope, and optional body.