en un clic
commit
Create a standardized git commit.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Create a standardized git commit.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Query/store cross-project knowledge in Shared Brain.
Save session snapshot — handoff + CLAUDE.md update.
Debug a bug — reproduce, isolate root cause, fix.
End session — handoff + decisions + CLAUDE.md.
Time-boxed SENAR investigation before a task.
Socratic Q&A — ≤3 questions before a complex task.
| name | commit |
| description | Create a standardized git commit. |
| effort | fast |
| context | inline |
Create well-structured commits with conventional commit messages.
<type>(<scope>): <description>
<body>
Co-Authored-By: Claude <noreply@anthropic.com>
git status
git diff --stat
git diff --cached --stat
git log --oneline -5
git diff --cached --stat shows files) — use thosegit diff --stat.env, credentials, secrets, large binariesgit add -Agit add file1.py file2.py
git diff --cached --stat # verify what's staged
From the diff, determine:
python scripts/gate_runner.py commit --files file1.py file2.py
git diff --cached --name-only--filesgit add, re-run gates. Repeat until pass.Show proposed message + file list + gate results. Ask user to confirm.
git commit -m "$(cat <<'EOF'
<type>(<scope>): <description>
<body>
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"
git log --oneline -1
git status
After a successful commit, ask the user: "Push to remote? (y/n)"
git rev-parse --abbrev-ref HEAD.git rev-parse --abbrev-ref @{u} 2>/dev/null.tausik push-ok && git push
or if no upstream:
tausik push-ok && git push -u origin <branch>
tausik push-ok writes a 60-second TTL ticket bound to the current
HEAD SHA; git_push_gate consumes it on the next push and re-blocks
any subsequent push until you authorize again.tausik push-ok && git push (the ticket is single-use, expires in 60s, and is bound to HEAD SHA)/task list or /end to wrap up."--amend (amend would modify the previous, unrelated commit).$(cat <<'EOF' ... EOF) to avoid shell escaping issues with quotes and special characters in the body.git add -A in projects with .env, credentials, or large binaries — always stage specific files.