acc-analyze-test-coverage
Installation
SKILL.md
Test Coverage Analysis
Analyzes PHP codebase to identify untested code and coverage gaps.
Detection Patterns
1. Classes Without Tests
# Find all PHP classes in src/
Glob: src/**/*.php
# Find all test files
Glob: tests/**/*Test.php
# Compare: class Foo in src/ should have FooTest in tests/