원클릭으로
sanity
Quick sanity check — clippy, test, audit. Lightweight alternative to /preflight.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Quick sanity check — clippy, test, audit. Lightweight alternative to /preflight.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Ultimate pre-push gate — rust-polish, then parallel specialist subagents across async safety, API surface, refactoring signals, and test strategy, then rust-audit
Audit Rust code against the Microsoft Pragmatic Rust Guidelines checklist and report violations with file:line references
Full ordered Rust code quality pipeline — clippy all → clippy pedantic+nursery → simplify agents → test + audit → verify
SOC 직업 분류 기준
| name | sanity |
| description | Quick sanity check — clippy, test, audit. Lightweight alternative to /preflight. |
Run in order. Stop and report on the first failure — don't continue past errors.
cargo clippy -- -D warnings — report each lint with file:line and fix suggestioncargo test -- --nocapture — show all output; any failure is a hard stopcargo audit — scan for CVEs; if not installed, note cargo install cargo-audit and skipIf the user passes an argument (e.g. /cargo build), run that specific subcommand instead of the suite.
Cross-compile note: if the user asks to build for musl, use cargo build --target x86_64-unknown-linux-musl --features vendored.
-D warnings turns all warnings into errors — do not suggest suppressing them here.
Sanity is a quick pass, not a polish pass. If clippy fails, report the lint and a fix suggestion. Don't add #![allow(...)] suppressions; that belongs in /rust-polish Phase 2 where suppressions are deliberate and documented.