with one click
execute-check
Run quality checks and commit if passing.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run quality checks and commit if passing.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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.