What problem does it solve? iOS apps that integrate analytics or advertising SDKs without implementing the App Tracking Transparency prompt are rejected under App Store Guideline 5.1.2(i). This Skill audits your project before submission to catch missing ATT consent flows that would otherwise cause a rejection. ## Core Features & Use Cases - Tracking SDK Detection: Scans Swift sources and dependency manifests (Podfile, Package.swift) for Firebase, Amplitude, Mixpanel, Segment, Branch, AppsFlyer, Adjust, and similar SDKs. - ATT Compliance Checks: Verifies ATTrackingManager import, requestTrackingAuthorization calls, and the NSUserTrackingUsageDescription key in Info.plist. - Prioritized Findings: Outputs findings ranked from CRITICAL (guaranteed rejection) to LOW (best practice) with file paths and line numbers. - Use Case: Before submitting an app update that added Firebase Analytics, run this audit to confirm the ATT prompt is implemented and the purpose string is descriptive enough to pass review. ## Quick Start Audit my iOS project for App Tracking Transparency compliance and list any missing consent flow pieces.