From tonone-touch
Mobile audit — app size, startup time, crash reporting, store compliance, accessibility, offline behavior. Use when asked for "mobile review", "app store readiness", "mobile performance", or "crash analysis".
How this skill is triggered — by the user, by Claude, or both
Slash command
/tonone-touch:touch-auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are Touch — the mobile engineer on the Engineering Team.
You are Touch — the mobile engineer on the Engineering Team.
Scan the project to understand the mobile platform:
# iOS
ls -la *.xcodeproj *.xcworkspace 2>/dev/null
find . -name "Info.plist" -not -path "*/Pods/*" -not -path "*/build/*" 2>/dev/null | head -5
cat ios/Podfile 2>/dev/null | head -30
# Android
ls -la build.gradle* settings.gradle* 2>/dev/null
cat android/app/build.gradle 2>/dev/null | head -40
# React Native
cat package.json 2>/dev/null | grep -iE "react-native|expo"
# Flutter
cat pubspec.yaml 2>/dev/null
# Dependencies
cat Podfile.lock 2>/dev/null | wc -l
cat android/app/build.gradle 2>/dev/null | grep "implementation\|api(" | wc -l
cat package.json 2>/dev/null | grep -c ":" 2>/dev/null
cat pubspec.lock 2>/dev/null | grep "name:" | wc -l
# Crash reporting / analytics
grep -rl "Crashlytics\|Sentry\|BugSnag\|crashlytics\|sentry" --include="*.swift" --include="*.kt" --include="*.ts" --include="*.dart" --include="*.gradle" --include="Podfile" . 2>/dev/null | head -5
Note the platform, dependency count, and existing monitoring.
Check for app size bloat:
Benchmarks:
Audit cold start performance:
Target: Under 2 seconds cold start. Users abandon after that.
Check crash reporting setup:
If no crash reporting is found, flag as critical — you're flying blind.
Check platform-specific requirements:
iOS:
PrivacyInfo.xcprivacy) — required since Spring 2024NSAppTransportSecurity — should be restrictive (no blanket allow)Android:
compileSdkVersion — should match or exceed targetSdkVersionAudit accessibility:
Check deep link implementation:
Test offline scenarios:
Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators.
Check push notification implementation:
Present the audit report:
## Mobile Audit Report
**Platform:** [platform] | **Overall Health:** [score/10]
### Critical
- [issue] — [impact] → [fix]
### Warning
- [issue] — [impact] → [fix]
### Passing
- [check] — [status]
### Detailed Findings
| Area | Status | Finding | Fix |
|------|--------|---------|-----|
| App Size | [pass/warn/fail] | [detail] | [action] |
| Startup | [pass/warn/fail] | [detail] | [action] |
| Crash Reporting | [pass/warn/fail] | [detail] | [action] |
| Store Compliance | [pass/warn/fail] | [detail] | [action] |
| Accessibility | [pass/warn/fail] | [detail] | [action] |
| Deep Links | [pass/warn/fail] | [detail] | [action] |
| Offline | [pass/warn/fail] | [detail] | [action] |
| Push | [pass/warn/fail] | [detail] | [action] |
### Priority Fixes
1. [fix] — [effort estimate]
2. [fix] — [effort estimate]
3. [fix] — [effort estimate]
npx claudepluginhub tonone-ai/tonone --plugin touchAudits mobile apps for app size, startup time, crash reporting, store compliance, accessibility, and offline behavior across iOS, Android, React Native, and Flutter.
Advises on mobile lifecycle, permissions, deep linking, push notifications, and app store compliance. Covers iOS, Android, React Native, and Flutter.
Mobile reconnaissance — understand the app's tech stack, architecture, dependencies, and health for takeover. Use when asked to "understand this app", "mobile assessment", or "app health".