refactor-functional-patterns
Installation
SKILL.md
Refactor: Functional Programming Patterns
Overview
FP patterns produce code that is predictable, testable, and composable by eliminating shared mutable state and side effects.
When to use: State mutation bugs, hidden dependencies, untestable functions, complex data pipelines, repeated null-check boilerplate, functions mixing computation and I/O.