Mobile App Analytics

Track mobile app metrics with Firebase, App Store Connect, Play Console, retention, funnels, and cohort analysis.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 323 · 4 current installs · 4 all-time installs
byIván@ivangdavila
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name, description, and all included docs consistently focus on Firebase, App Store Connect, and Play Console analytics. There are no unrelated required binaries, config paths, or env vars; the skill's local memory path and API uses are proportionate to analytics tasks.
Instruction Scope
Runtime instructions are mostly constrained to creating and using ~/mobile-app-analytics/ and querying the declared analytics APIs when the user provides credentials. A few instructions use loose language like 'gather context opportunistically' and 'ask whether to activate proactively' — this grants the agent some discretion about when to save/update local memory and when to act, so users should confirm activation preferences explicitly.
Install Mechanism
This is an instruction-only skill with no install steps or downloads; nothing is written to disk by an installer beyond the agent-created memory files described in the docs.
Credentials
The skill requests no environment variables or credentials up-front. It will use platform-specific credentials (App Store JWT, Google OAuth/BigQuery credentials) only when the user provides them, which is appropriate for the integrations described.
Persistence & Privilege
The skill persists state under ~/mobile-app-analytics/ (memory.md and per-app files) and asks to save an 'integration' preference that can enable proactive behavior. This is reasonable for an analytics assistant, but users should review and control the saved settings to avoid unwanted automatic activation.
Assessment
This skill appears coherent for analytics work, but before installing: (1) confirm you're comfortable with the skill creating and updating files under ~/mobile-app-analytics/ and review those files after first use; (2) never paste private keys or long-lived credentials into chat — prefer platform credential stores or short-lived tokens; (3) explicitly choose whether the agent may activate proactively (integration setting) so it doesn't act without your consent; and (4) if you plan to grant access to Firebase/BigQuery/App Store/Play Console, use scoped, least-privilege credentials and monitor access.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk973nnkht1pj22wjrk7emt3zqh81vw1m

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

📱 Clawdis
OSLinux · macOS · Windows

SKILL.md

Setup

On first use, read setup.md for integration guidelines. Create ~/mobile-app-analytics/ if it doesn't exist.

When to Use

User needs to track, analyze, or optimize mobile app performance metrics. Agent handles Firebase Analytics queries, App Store Connect data, Play Console reports, retention analysis, funnel debugging, and cohort comparisons.

Architecture

Memory lives in ~/mobile-app-analytics/. See memory-template.md for setup.

~/mobile-app-analytics/
├── memory.md          # Apps tracked, goals, alerts
├── apps/              # Per-app analytics configs
│   └── {app-name}.md  # Events, funnels, KPIs per app
└── benchmarks.md      # Industry benchmarks reference

Quick Reference

TopicFile
Setup processsetup.md
Memory templatememory-template.md
Firebase Analyticsfirebase.md
App Store Connectapp-store.md
Play Consoleplay-console.md
Core metricsmetrics.md

Core Rules

1. Platform Detection

Detect from context which platform(s) the app targets:

  • iOS only → focus on App Store Connect + Firebase
  • Android only → focus on Play Console + Firebase
  • Cross-platform → cover both stores + unified Firebase

2. Metric Hierarchy

Always prioritize metrics in this order:

  1. Revenue metrics (LTV, ARPU, conversion) — what pays the bills
  2. Retention metrics (D1, D7, D30) — determines long-term success
  3. Engagement metrics (DAU/MAU, session length) — leading indicators
  4. Acquisition metrics (installs, sources) — growth levers

3. Cohort-First Analysis

Never report aggregate numbers alone. Always segment by:

  • Install cohort (when users joined)
  • Acquisition source (organic, paid, referral)
  • User tier (free, trial, paid)
  • Platform (iOS vs Android)

4. Alert Thresholds

Proactively flag anomalies:

MetricAlert if
D1 retention< 25% (below industry floor)
Crash-free rate< 99%
DAU/MAU ratioDrops > 10% week-over-week
LTV:CAC ratio< 3:1

5. Data Freshness

Know platform data delays:

SourceTypical Delay
Firebase real-timeMinutes
Firebase daily reports24-48h for full data
App Store Connect24-48h
Play Console24-48h

6. Privacy Compliance

  • Never track PII in custom events
  • Respect ATT (iOS) and consent requirements
  • User properties: demographics OK, personal identifiers NOT OK
  • GDPR: support data deletion requests

7. Event Naming Conventions

Enforce consistent naming across platforms:

{verb}_{noun}[_{qualifier}]

Examples:
- view_screen_home
- tap_button_subscribe  
- complete_purchase_annual
- start_onboarding_step1

Common Traps

  • Vanity metrics obsession → Total downloads means nothing; track active users and retention instead
  • Ignoring platform differences → iOS users often have 20-30% higher LTV; don't merge data blindly
  • Wrong attribution window → 7-day attribution misses subscription conversions; use 30-day for subscriptions
  • Survivorship bias → Analyzing only current users ignores why churned users left
  • Timezone mismatches → Firebase uses UTC by default; App Store uses your configured timezone

External Endpoints

EndpointData SentPurpose
Firebase Analytics APIApp ID, date rangeFetch metrics
App Store Connect APIApp ID, credentialsiOS analytics
Play Console APIApp ID, credentialsAndroid analytics

No other data is sent externally.

Security & Privacy

Data that leaves your machine:

  • Analytics queries to Firebase/Apple/Google APIs when you provide credentials

Data that stays local:

  • Your tracked apps and goals in ~/mobile-app-analytics/
  • Benchmark comparisons and notes

This skill does NOT:

  • Store credentials (use your platform's standard credential methods)
  • Access files outside ~/mobile-app-analytics/
  • Make requests to undeclared endpoints

Scope

This skill ONLY:

  • Provides guidance on mobile app analytics platforms
  • Stores your app configurations in ~/mobile-app-analytics/
  • Queries Firebase, App Store Connect, and Play Console when you provide credentials

This skill NEVER:

  • Stores credentials in files (use environment variables)
  • Accesses files outside ~/mobile-app-analytics/
  • Makes requests to undeclared endpoints
  • Modifies global agent memory or other skills

Related Skills

Install with clawhub install <slug> if user confirms:

  • app-store-connect — iOS App Store management
  • flutter — Cross-platform app development
  • saas — SaaS business metrics and growth

Feedback

  • If useful: clawhub star mobile-app-analytics
  • Stay updated: clawhub sync

Files

7 total
Select a file
Select a file to preview.

Comments

Loading comments…