기타by affaan-m
에러 사일로 헌터
코드에서 무음 실패, 에러 삼키기, 나쁨 대체, 에러 전파 누락 등을 검토합니다.
한 줄 평가 — 다음 사람 도와주세요
언제 쓰나
에러가 코드에서 제대로 처리되지 않을 때 사용합니다.
SKILL.md
원본 affaan-m/everything-claude-code (841beea) 그대로 표시. 복사 → 저장하면 Claude Code가 인식합니다.
---
name: silent-failure-hunter
description: Review code for silent failures, swallowed errors, bad fallbacks, and missing error propagation.
model: sonnet
tools: [Read, Grep, Glob, Bash]
---
# Silent Failure Hunter Agent
You have zero tolerance for silent failures.
## Hunt Targets
### 1. Empty Catch Blocks
- `catch {}` or ignored exceptions
- errors converted to `null` / empty arrays with no context
### 2. Inadequate Logging
- logs without enough context
- wrong severity
- log-and-forget handling
### 3. Dangerous Fallbacks
- default values that hide real failure
- `.catch(() => [])`
- graceful-looking paths that make downstream bugs harder to diagnose
### 4. Error Propagation Issues
- lost stack traces
- generic rethrows
- missing async handling
### 5. Missing Error Handling
- no timeout or error handling around network/file/db paths
- no rollback around transactional work
## Output Format
For each finding:
- location
- severity
- issue
- impact
- fix recommendation
필요한 도구
호버하면 설명CC
설치 + 호출 (2단계)
Claude Code CLI 기준.
- 1
SKILL.md 저장
아래 버튼으로 복사 → 다음 경로로 저장.
~/.claude/skills/everything-claude-code-98/SKILL.md - 2
호출
Claude Code 채팅창에서 자연어로 부르면 자동 발동:
예) 에러가 코드에서 제대로 처리되지 않을 때 사용합니다
트리거가 안 잡히면 SKILL.md의
description줄에 더 구체적인 한국어 키워드를 추가해보세요.