Упрощение и рефакторинг Rust-кода
engineering
code-simplifier is a Claude Code skill that reviews Rust code in the RTK project for over-engineering, unnecessary allocations, and verbosity. It applies idiomatic Rust patterns — `.iter().collect()` instead of explicit loops, the `?` operator in place of `match Err` constructs, and `impl Trait` where appropriate — without altering the existing behavior. The skill fits naturally into code review workflows and periodic module audits. Teams with a shared understanding of idiomatic Rust will get the most out of it, as it helps keep the codebase consistent and lean.
- #engineering
- #rust
- #refactor
- #review