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);
Installs
5
GitHub Stars
96
First Seen
Mar 17, 2026
check-magic-values — dykyi-roman/awesome-claude-code