com um clique
execute-check
Run quality checks and commit if passing.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Run quality checks and commit if passing.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional 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.