# Send Mobile App Analytics to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mobile-app-analytics",
    "name": "Mobile App Analytics",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/ivangdavila/mobile-app-analytics",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/mobile-app-analytics",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mobile-app-analytics",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mobile-app-analytics",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "app-store.md",
      "firebase.md",
      "memory-template.md",
      "metrics.md",
      "play-console.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mobile-app-analytics",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T20:10:39.964Z",
      "expiresAt": "2026-05-06T20:10:39.964Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mobile-app-analytics",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mobile-app-analytics",
        "contentDisposition": "attachment; filename=\"mobile-app-analytics-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mobile-app-analytics"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mobile-app-analytics"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mobile-app-analytics",
    "downloadUrl": "https://openagent3.xyz/downloads/mobile-app-analytics",
    "agentUrl": "https://openagent3.xyz/skills/mobile-app-analytics/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mobile-app-analytics/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mobile-app-analytics/agent.md"
  }
}
```
## Documentation

### 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

TopicFileSetup processsetup.mdMemory templatememory-template.mdFirebase Analyticsfirebase.mdApp Store Connectapp-store.mdPlay Consoleplay-console.mdCore metricsmetrics.md

### 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:

Revenue metrics (LTV, ARPU, conversion) — what pays the bills
Retention metrics (D1, D7, D30) — determines long-term success
Engagement metrics (DAU/MAU, session length) — leading indicators
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 ifD1 retention< 25% (below industry floor)Crash-free rate< 99%DAU/MAU ratioDrops > 10% week-over-weekLTV:CAC ratio< 3:1

### 5. Data Freshness

Know platform data delays:

SourceTypical DelayFirebase real-timeMinutesFirebase daily reports24-48h for full dataApp Store Connect24-48hPlay 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 SentPurposeFirebase Analytics APIApp ID, date rangeFetch metricsApp Store Connect APIApp ID, credentialsiOS analyticsPlay 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T20:10:39.964Z
- Expires at: 2026-05-06T20:10:39.964Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mobile-app-analytics)
- [Send to Agent page](https://openagent3.xyz/skills/mobile-app-analytics/agent)
- [JSON manifest](https://openagent3.xyz/skills/mobile-app-analytics/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mobile-app-analytics/agent.md)
- [Download page](https://openagent3.xyz/downloads/mobile-app-analytics)