commit
Create a git commit with an impact-focused conventional commit message
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create a git commit with an impact-focused conventional commit message
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Run the local fast CI loop (`make ci`) and automatically fix discovered issues using concurrent agents
One-time contributor setup — run `make setup` and verify governed reads work end-to-end so `/init` can report lifecycle and structural counts.
Run dead code and duplicate detection, get categorized cleanup recommendations
Staged adversarial review — triage, decorrelated finders (warm + cold), per-finding refuters, evidence-ready report
Post-create PR lifecycle automation — rerun infra failures, triage review comments adversarially, enqueue when green, verify merged main. Designed for /loop.
Glue workflow — coupling gate, local review, conventional commit, and PR creation with waiver discipline in one governed sequence
| name | commit |
| description | Create a git commit with an impact-focused conventional commit message |
Create a git commit following these steps:
Run these commands to understand the current state:
git status
git diff --cached
git diff
git log --oneline -5
Review the output carefully. Identify:
Follow these rules strictly:
Type prefix (required): feat:, fix:, refactor:, docs:, test:, chore:
feat(desktop):, fix(ci):, chore(spec-spine):Subject line:
Good vs bad examples:
feat: add pre-edit tagging for non-agentic AI providersfix: OpenAI/LMStudio diffs now persist across app restartsrefactor: extract helper function for validationfix: prevent crash when user input is emptyfeat(desktop): implement checkpoint restore UI componentsfeat(desktop): checkpoint/restore UI panel (Feature 041, Slice G)Body (optional):
Issue linking (when applicable):
Fixes #XXX or Closes #XXX on its own line after the bodyUse git add with specific file paths. Do not use git add -A or git add . unless every changed file belongs in this commit. Never stage files that appear to contain secrets (.env, credentials, tokens).
Use a HEREDOC to pass the message:
git commit -m "$(cat <<'EOF'
type(scope): subject line here
Optional body with details.
EOF
)"
Run git status to confirm the commit succeeded and the working tree is in the expected state.
Co-Authored-By or any attribution lines$ARGUMENTS