بنقرة واحدة
commit
Standardized git commit workflow with author verification, diff review, and conventional commit messages.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Standardized git commit workflow with author verification, diff review, and conventional commit messages.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Session closing checklist for Git state, documentation, handoff files, and Munin memory. Use when the user invokes /close or asks to wrap up a session, including work that touched multiple repositories.
Resolve a batch of GitHub tickets via parallel headless Claude Code sessions — one isolated git worktree per ticket, gated permissions, triple review (Codex + local-model first-pass + orchestrator comment), interrupt-resume, and merge orchestration. Use when the user wants many well-scoped tickets solved autonomously across one or more repos.
Run an adversarial debate with Claude to stress-test a draft, plan, research claim, or design decision. Use when Codex needs structured cross-model critique before finalizing a consequential decision, architecture, protocol, research claim, security assessment, or product priority.
Run an adversarial debate with a cross-model reviewer (Codex or Antigravity/agy) to stress-test a draft, plan, research claim, or design decision. Use this whenever you need structured critique before finalizing decisions.
Run a cross-model PR review using Codex CLI. Invokes Codex headless to review the current branch diff, then reads findings and fixes issues or reports to user.
Sweep the Munin signals/friction corpus (report_friction self-reports), group recurring failures, and file consolidated GitHub issues routed to their owning repos + the Grimnir Roadmap board. Use when the user wants to triage accumulated friction, turn friction signals into tickets, or asks "what friction have we collected / let's file tickets for it".
| name | commit |
| description | Standardized git commit workflow with author verification, diff review, and conventional commit messages. |
Create clean, well-documented git commits with safety checks.
/commit - Stage, review, commit, and optionally push/commit <message> - Commit with a specific message (still runs safety checks)/commit amend - Amend the last commit (with confirmation)git config user.name
git config user.email
user.name and user.email should be configured in their global ~/.gitconfig or in the repo's .git/config. If git config user.email returns an unexpected value (e.g. a CI/bot email, or empty), warn the user before proceeding.Run in parallel:
git status
git diff --stat
git diff --staged --stat
Present a summary:
Ask the user which files to stage if there are unstaged changes. Prefer staging specific files over git add -A.
Before committing, verify:
.env, credentials.json, token.json, or client_secret_*.json files are stagedsecrets/ are stagedkey, secret, or token in the name are staged (unless they're clearly code files)If any are found, warn and stop. Do not commit.
If no message was provided, draft one:
type: descriptionfeat, fix, docs, refactor, test, chore, styleCo-Authored-By: Claude <assistant> <noreply@anthropic.com> (use the current model name)Show the proposed message and ask for confirmation.
git add <files>
git commit -m "<message>"
Use a heredoc for multi-line messages.
After committing:
--no-verify — respect pre-commit hooksgit add -A — stage specific files