← スキル一覧に戻る

expo-runtime-crash-triage
by paulyd-oi
Open Invite - Social Calendar App (Frontend)
⭐ 0🍴 0📅 2026年1月25日
SKILL.md
name: expo-runtime-crash-triage description: Systematic loop for fixing Expo/React Native runtime crashes without dependency changes.
Expo Runtime Crash Triage Playbook
Goal
Stabilize the app by resolving runtime crashes with minimal diffs and no dependency changes.
Standard workflow
- Identify the crash source file + line from the stack trace.
- Determine whether the crash is:
- undefined component rendered in JSX (common:
type.displayName) - missing import/export mismatch (default vs named)
- undefined object property access
- undefined component rendered in JSX (common:
- Prefer fixing at the lowest, most reusable layer:
- If crash repeats from multiple callers, harden the shared component.
type.displayName specific
This usually means React received undefined where it expected a component:
<Icon />where Icon is undefined<SomeComponent />where import is wrong (named vs default) Fix patterns:- Correct import/export mismatch
- Add runtime guard:
Icon ? <Icon .../> : null - Provide safe fallback component
- Ensure callers don’t pass undefined
Validation
- Ensure TypeScript compiles.
- Restart Metro with cache clear if needed.
Mandatory output
Always end with HANDOFF PACKET (see guardrails skill).
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です