check-pure-functions
Installation
SKILL.md
Pure Function Check
Analyze PHP code for pure function patterns that improve testability.
Pure Function Characteristics
A pure function:
- Returns the same output for the same input (deterministic)
- Has no side effects
- Doesn't depend on external state