skills/smithery.ai/check-errors

check-errors

Installation
SKILL.md

Check Errors Skill

Identify error handling gaps, anti-patterns, and inconsistencies in exception management across the codebase.

Instructions

1. Find Swallowed Exceptions

Search for empty or inadequate catch blocks:

// BAD: Empty catch block
try {
    riskyOperation();
} catch (Exception e) {
    // silently swallowed!
}
Installs
1
First Seen
Apr 14, 2026
check-errors from smithery.ai