acc-find-exception-issues

Installation
SKILL.md

Exception Issue Detection

Analyze PHP code for exception handling problems.

Detection Patterns

1. Swallowed Exceptions (Empty Catch)

// BUG: Exception completely ignored
try {
    $this->riskyOperation();
} catch (Exception $e) {
    // Empty catch block - bug hidden
}
Installs
1
GitHub Stars
96
First Seen
Feb 11, 2026
acc-find-exception-issues — dykyi-roman/awesome-claude-code