원클릭으로
mobiai-crashlytics
Use when the user shares a Firebase Crashlytics crash link, crash ID, or asks to investigate a Crashlytics issue in depth.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when the user shares a Firebase Crashlytics crash link, crash ID, or asks to investigate a Crashlytics issue in depth.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
first community fixture skill
second community fixture skill
third community fixture skill
Actualiza el binario `mobiai` a la última versión publicada en GitHub Releases. Usá esta skill cuando el banner de SessionStart muestre "MobiAI update available" o cuando el usuario pida explícitamente actualizar MobiAI.
Use when starting any conversation — establishes how to find and invoke MobiAI skills, requiring `Skill` tool invocation before ANY response including clarifying questions, git/file reads, or code exploration
test fixture
| name | mobiai-crashlytics |
| description | Use when the user shares a Firebase Crashlytics crash link, crash ID, or asks to investigate a Crashlytics issue in depth. |
| license | MIT |
| compatibility | ["claude-code","cursor","copilot","codex"] |
| platforms | ["android","ios","flutter","react-native"] |
Deep investigation of a crash reported through Firebase Crashlytics. Goes beyond a raw stack trace — uses Crashlytics data to understand the full context: user journey, breadcrumbs, affected versions, device info, and event frequency.
This skill requires access to Firebase Crashlytics data. Check what tools are available:
firebase_update_environment — set the active Firebase project before queryingfirebase_list_apps — get the app IDs for the projectcrashlytics_get_issue — fetch issue metadata: event count, user count, error type. Parameters: appId, issueIdcrashlytics_list_events — fetch crash events with full stack traces. Parameters: appId, issueId, pageSizefirebase crashlytics:list and related commandsIf none of these are available, fall back to the mobiai-analyze-crash skill with whatever information the user can provide manually.
Get the full crash information from Crashlytics:
Crashlytics provides breadcrumbs — the sequence of events before the crash:
This context is what makes Crashlytics investigation more powerful than a raw stack trace. Use it to understand the conditions that trigger the crash.
Look across multiple crash events for patterns:
git log for changes introduced in the first affected versionWith the full context from Crashlytics, trace the crash in the codebase:
git log --oneline -10 -- <crashing-file>
Based on what you found:
In all cases, include: