This tool reviews Rust code in the RTK project. It finds parts that are too complex or verbose. It then suggests simpler ways to write the same code. These changes follow common Rust patterns called idioms. The behavior of the code stays the same. The tool knows which parts of the RTK project must not be changed, like lazy_static! regex and .context() calls. It can turn manual loops into iterator chains and replace nested matches with chained methods. It also removes unnecessary clones and uses early returns. This helps keep the code clean and easy to read.
Anyone who writes Rust code for the RTK project can benefit. The tool catches patterns that make code harder to maintain. It suggests replacements that are shorter and more standard. After simplifying, the tool reminds you to run cargo fmt, clippy, and tests to make sure nothing breaks. It also checks that no new unwrap calls appear outside of tests. This keeps the code safe and reliable.
Global
mkdir -p ~/.claude/skills/code-simplifierProject
mkdir -p .claude/skills/code-simplifierSource Repository
Typescript Advanced Typeswshobson/agents
Master advanced TypeScript types for safer and more flexible code
Python Executorqu-skills/skills
Execute Python code safely with 100+ libraries for data, scraping, and media
Golang Error Handlingsamber/cc-skills-golang
Learn to create, wrap, inspect, and log Go errors like a professional engineer
Golang Performancesamber/cc-skills-golang
Speed up your Go code using proven patterns for allocation reduction and CPU efficiency
Golang Design Patternssamber/cc-skills-golang
Idiomatic Go patterns for clean constructors error handling and graceful shutdown
Golang Concurrencysamber/cc-skills-golang
Write safe Go concurrency with goroutines, channels, and sync primitives
Golang Data Structuressamber/cc-skills-golang
Optimize Go data structures for speed and memory efficiency with internals knowledge
Golang Contextsamber/cc-skills-golang
Master Go context for cancellations, timeouts, and request values