一键导入
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: