check-magic-values
Installation
SKILL.md
Magic Value Check
Analyze PHP code for hardcoded values that should be constants or configuration.
Detection Patterns
1. Magic Numbers
// BAD: Unexplained numbers
if ($retries > 3) {}
$timeout = 30;
$discount = $price * 0.15;
$pageSize = 20;
sleep(5);