The Code Simplifier skill for Claude Code is designed to eliminate over-engineering and improve code readability. It automatically detects anti-patterns like deep nesting, bloated functions, and high cyclomatic complexity, providing actionable refactoring plans or direct code transformations. By applying the KISS (Keep It Simple, Stupid) principle, it helps developers flatten conditional logic with early returns, replace complex switches with lookup tables, and inline redundant abstractions, ensuring your codebase remains accessible and maintainable for the entire team.
主な機能
01Transformation of complex conditional logic into lookup tables
023 GitHub stars
03Automated cyclomatic complexity analysis and reduction
04Smart extraction of long functions into manageable modules
05Deep nesting flattening using early return patterns
06Detailed quality reports with specific complexity metrics