Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/ivanlutsenko/awac-ai-agent-plugins/crash-report-androidgit clone --depth 1 https://github.com/IvanLutsenko/awac-ai-agent-pluginsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/ivanlutsenko/awac-ai-agent-plugins/crash-report-android)<a href="https://agentmods.dev/commands/ivanlutsenko/awac-ai-agent-plugins/crash-report-android"><img src="https://agentmods.dev/badge/commands/ivanlutsenko/awac-ai-agent-plugins/crash-report-android.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00036 | $0.01961 |
| Opus 5 | $0.00018 | $0.00981 |
| Sonnet 5 | $0.00007 | $0.00392 |
| Haiku 4.5 | $0.00004 | $0.00196 |
Grade B, and why
crash-report-android scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
Bash: mkdir -p .claude && cat <<'EOF' > .claude/crashlytics.local.md Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
allowed-tools: Bash(${CLAUDE_PLUGIN_ROOT}/scripts/*), Bash(python3 ${CLAUDE_PLUGIN_ROOT}/scripts/*), Bash(git log:*), Bash(git blame:*), Bash(git diff:*), Bash(git show:*), Bash(git fetch:*), Bash(git ls-tree:*), Bash(gi Copies of this mod
1 near-identical copy found in the catalogue:
- crash-report-ios — 91% identical, 42 lines differ
How it starts
The opening of the file, as written. The whole thing — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Android Crash Analysis - Multi-Agent Edition
Analyze crash errors from Firebase Crashlytics using specialized agents.
Configuration
Before starting, check if a config file exists at .claude/crashlytics.local.md.
If it exists, read and use these settings:
language— output language for body content (default: English). Section headers stay English.default_branch— local branch name; analysis runs onorigin/<default_branch>(default: master)forensics_model— model for forensics agent (default: opus)output_format— both / detailed_only / jira_only (default: both)firebase_project_id— pre-configured project ID (skip auto-detection if set)firebase_app_id_android— pre-configured app ID (skip auto-detection if set)
If config doesn't exist, auto-create it with defaults and continue:
Bash: mkdir -p .claude && cat <<'EOF' > .claude/crashlytics.local.md
---
language: en
default_branch: master # local branch name; plugin uses origin/<this> for git blame
default_platform: android
forensics_model: opus
output_format: both
firebase_project_id: ""
firebase_app_id_android: ""
firebase_app_id_ios: ""
---
# Crashlytics Plugin Config
Auto-created with defaults. Run `/crash-config` to customize.
EOF
Multi-Agent Architecture
classifier(Haiku) → fetcher(Haiku) → forensics(Opus) → validate-report.py → output
Workflow
Prerequisites Check (cached)
Skip if .claude/crashlytics-prereqs-ok exists. Otherwise run and cache on success.
Bash: test -f .claude/crashlytics-prereqs-ok && echo "CACHED_OK"
If not cached:
Bash: ${CLAUDE_PLUGIN_ROOT}/scripts/check-prerequisites.sh
Parse: OK → pass, MISSING → show fix instruction
If ALL OK → Bash: touch .claude/crashlytics-prereqs-ok
If any MISSING → show checklist, degrade gracefully (do NOT cache)
Fix instructions: node → brew install node, firebase → npm install -g firebase-tools, firebase-auth → firebase login in terminal, python3 → brew install python3.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 186 lines · 0 tokens per session scan B 372fe2a2ba9e
crash-report-android is a command published in the GitHub repository IvanLutsenko/awac-ai-agent-plugins (2 stars, last pushed 1mo ago), licensed MIT. It adds 36 tokens to every session and 1,961 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (reads agent configuration directories, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
compose-test
Run Compose UI tests with Espresso. Verify critical user flows.
app-store-audit
Run an enterprise pre submission compliance audit on an iOS or Android app against Apple App Store and Google Play rejection rules. Pass a project path or run from the project root.
ios-privacy
Prepare privacy labels, permissions, policy links, and data-use truth for iOS release.
maestro-selectors-instructions
Guide to using Maestro selectors for targeting UI elements in tests.
initialize-ios
Manual override: initialize ast-index for iOS/Swift/ObjC project.
mobile-performance-check
Analyze mobile app for performance issues using the mobile-best-practices database.