with one click
commit
Stage and commit current changes with an auto-generated message
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Stage and commit current changes with an auto-generated message
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | commit |
| description | Stage and commit current changes with an auto-generated message |
| argument-hint | [optional commit message override] |
Commit current changes following the project's git commit conventions. Analyzes staged and unstaged changes, generates a descriptive commit message, and creates the commit.
Usage:
/commit — auto-generate commit message from changes/commit fix typo in SharpyCompilerBridge — use the provided messageRun these in parallel:
git status — see all staged, unstaged, and untracked filesgit diff --cached — see staged changesgit diff — see unstaged changesgit log --oneline -5 — see recent commit message styleIf there are unstaged or untracked changes:
git add -A or git add ..env, credentials.json, etc.) — warn the user if such files are presentIf $ARGUMENTS is non-empty, use it as the commit message body.
If $ARGUMENTS is empty, analyze the staged diff and generate a message:
git log output (this repo uses conventional commits: feat:, fix:, refactor:, test:, chore:, docs:)git commit -m "$(cat <<'EOF'
<generated or provided message>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
EOF
)"
Run git status after the commit to confirm success. Report the commit hash.
--amend)Implement a plan with coordinated agents
Verify completed plan implementation, fix gaps, and commit fixes
Validate C# scripts compile by running a standalone syntax check
Clean temporary files and build artifacts
Close GitHub issues that have been implemented, with verification
Create an implementation plan from GitHub issues or a description