acc-find-type-issues
Installation
SKILL.md
Type Issue Detection
Analyze PHP code for type safety issues.
Detection Patterns
1. Implicit Type Coercion
// BUG: String to int coercion
$count = '10abc'; // PHP converts to 10
$total = $count + 5; // 15, not error
// BUG: Array comparison
$a = [1, 2, 3];
$b = '1,2,3';
if ($a == $b) { } // Unexpected comparison