npx claudepluginhub gendosu/ccmp --plugin cccpCommits staged changes with an appropriate commit message using the git-operations-specialist agent. ## Core Guidelines Before starting any task, read and follow `/cccp:key-guidelines` --- ## Agents - use cccp:git-operations-specialist agent ## Agent Instructions **IMPORTANT: Use the cccp:git-operations-specialist agent (via Task tool) for ALL git-related operations in this command.** Analyze the staged changes and safely commit them with an appropriate commit message. ### Required Execution Items 1. **Check Staging Status**: Run `git status` to confirm what changes are staged 2....
/commitStages unstaged changes based on git status and diff analysis, then creates a commit with a generated message. Uses current branch and recent commit history for context.
/commitStages changes and commits locally using Conventional Commits format. Analyzes git status/diffs, drafts typed message with scope, confirms with user before git add and commit.
/commitCreates well-formatted git commits with conventional messages and emojis. Runs pre-commit checks (lint/format/build/docs), auto-stages files if needed, analyzes diffs, and suggests splitting multi-change commits unless --no-verify.
/commitCreates well-formatted git commits with conventional messages and emojis. Runs pre-commit checks (lint/format/build/docs), auto-stages files if needed, analyzes diffs, and suggests splitting multi-change commits unless --no-verify.
/commitRuns pre-commit git checks, quality gates (lint, typecheck, tests), code review for issues; drafts conventional commit message; stages specific files and commits. Supports --no-verify, --amend, --push options.
/commitAnalyzes current git diff, generates 3 conventional commit message options (concise, detailed, comprehensive), presents for user selection, and executes git commit.
Commits staged changes with an appropriate commit message using the git-operations-specialist agent.
Before starting any task, read and follow /cccp:key-guidelines
IMPORTANT: Use the cccp:git-operations-specialist agent (via Task tool) for ALL git-related operations in this command.
Analyze the staged changes and safely commit them with an appropriate commit message.
Check Staging Status: Run git status to confirm what changes are staged
Review Staged Changes: Use git diff --staged to review the content of staged changes
Create Commit: Commit the staged changes with an appropriate commit message
Verify Commit: Run git status after committing to confirm the commit was successful
.gitmessage template formatfeat, fix, refactor, docs, style, test, choregit add commands – Only commit what is already stagedIf you have already staged changes:
# Staged files:
- apps/api/src/routes/timeline.ts
- apps/api/src/types/timeline.ts
This command will create a single commit containing both files with an appropriate message like:
feat: タイムラインAPIのルートと型定義を追加