一键导入
verify
Run the full lint, format check, and test suite. Use before committing or when checking if changes are valid.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run the full lint, format check, and test suite. Use before committing or when checking if changes are valid.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | verify |
| description | Run the full lint, format check, and test suite. Use before committing or when checking if changes are valid. |
Run the full verification suite for git-prism. Execute these commands in order, stopping on first failure:
cargo clippy -- -D warnings
cargo fmt --check
cargo test
cargo build --release
python -m behave bdd/features/ --no-capture --tags="not @crates_io" --tags="not @not_implemented"
Report results clearly: which step passed, which failed (if any), and the relevant error output.
If cargo fmt --check fails, offer to run cargo fmt to fix formatting automatically.
If python -m behave fails with a missing module error, install BDD dependencies first:
pip install behave grpcio opentelemetry-proto protobuf
After all five pass, ask if the user wants to run mutation testing (/mutate) on the changed files. Don't run it automatically — it's slow.