スキル一覧に戻る
thkt

reviewing-silent-failures

by thkt

3🍴 0📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: reviewing-silent-failures description: > Silent failure detection patterns for frontend code. Use when reviewing error handling, detecting swallowed errors, or when user mentions silent failure, empty catch, エラーハンドリング, 握りつぶし, swallowed error. allowed-tools: [Read, Grep, Glob, Task] agent: silent-failure-reviewer context: fork user-invocable: false

Silent Failure Review

Detection

IDPatternFix
SF1catch (e) {}catch (e) { logger.error(e); throw }
SF1catch (e) { console.log(e) }Show user feedback + log context
SF2.then(fn) without .catch()Add .catch() or use try/catch
SF2async () => { await fn() }Wrap in try/catch, handle error
SF3No error UI statesAdd error boundary, feedback component
SF4value ?? defaultValue silentlyLog when using fallback
SF4data?.nested?.valueCheck and report if unexpected null

References

TopicFile
Detectionreferences/detection-patterns.md

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です