What problem does it solve? Rust contributors in Nix monorepos like ix and index face inconsistent formatting rules, hard-to-find per-crate Clippy check attributes, and unclear guidance on validating unsafe code, concurrency, and untrusted input surfaces. This Skill consolidates the house style so code passes CI and review on the first attempt. ## Core Features & Use Cases - Repo-aware formatting and linting: Distinguishes ix (enforced rustfmt via nix fmt) from index (no rustfmt; Clippy and review only), and gives the exact Nix attribute paths for per-crate Clippy checks in each repo. - Unsafe and concurrency validation: Directs Miri, cargo-careful, loom, and shuttle usage based on what each tool can and cannot model. - Testing depth guidance: Covers cargo-mutants for mutation testing and cargo-fuzz scaffolding for parsers, codecs, and FFI-adjacent input edges. - Use Case: While writing a new NBT parser crate, you follow the skill to scaffold cargo fuzz init, commit minimized crash seeds, and run the correct nix build .#ciChecks...clippy attribute so CI passes without diff noise. ## Quick Start Review my new Rust crate against the house style and tell me which Clippy check command and unsafe-code validation steps to run before opening the PR.