en un clic
execute-check
Run quality checks and commit if passing.
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
Run quality checks and commit if passing.
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
Implement tasks in separate atomic commits with checks.
Analyze repo state and suggest pragmatic next steps.
Update planning notes and commit the changes.
Study SDL3, ImGui, and engine architecture patterns.
| name | execute-check |
| description | Run quality checks and commit if passing. |
Run quality checks and commit if everything passes.
Run these commands and include the output:
git branch --show-currentgit status --shortgit diff --cached --stat | tail -10just --summary 2>/dev/null | tr ' ' '\n' | grep -E '^[a-z]' | head -40Standard check (required before commit):
just check
Full verification (use for engine-level changes or CI parity):
just check-full
just check -- fix any failuresjust check-fullgit add -Acommit-type(Component/File[Subcomponent/method]) Concise description
why: Explanation of necessity or impact.
what:
- Specific technical changes made
- Focused on a single topic
Commit types: feat, fix, refactor, docs, chore, test, style, js(deps), js(deps[dev]), ai(rules[LLM type])
Do NOT commit if checks fail. Fix issues first.