بنقرة واحدة
commit
Stage and commit current changes with an auto-generated message
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Stage and commit current changes with an auto-generated message
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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
| 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)