What problem does it solve?
Fix-mode work in Rust often drifts toward cosmetic conformance or band-aids rather than addressing the underlying architecture. This skill enforces disciplined, verifiable fixes that target root causes and require honest reporting, pairing with rust-quality and rust-gpu-discipline.
Core Features & Use Cases
- Enforces a three-category model (root-cause, local correctness, annotation) for every finding.
- Requires explicit category decision, non-deferral, and cross-checks with context, tests, and workspace policy.
- Demands verification steps (cargo build, clippy, tests) and includes coordination when workspace-level changes are needed.
- Use cases include applying fixes from audits, code reviews, lint sweeps, and failing-test triage; triggering a fix flow when user commands like "fix the audit findings" are issued.
Quick Start
Follow the discipline-driven protocol to apply a Rust fix, including category selection and verification.