con un clic
execute-check
Run quality checks and commit if passing.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Run quality checks and commit if passing.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación 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.