在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用execute-check
星标0
分支0
更新时间2026年1月31日 16:40
Run quality checks and commit if passing.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run quality checks and commit if passing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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.
基于 SOC 职业分类
| 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.