What problem does it solve? Apps that accept user-uploaded images, videos, or posts are frequently rejected under Apple App Review Guideline 1.2 when they lack a content moderation backend. This Skill scans an iOS/macOS codebase to detect missing moderation service integrations before submission, preventing costly review rejections. ## Core Features & Use Cases - Moderation Service Detection: Greps Swift source for integrations like AWS Rekognition, Google Perspective, OpenAI Moderation, Hive, Sightengine, and Clarifai. - Upload Path Auditing: Locates media upload calls (uploadImage, uploadVideo, postContent) and checks whether moderation is invoked before or after upload. - Contact Reachability Check: Verifies a visible support or contact email exists so reviewers can reach the moderation team. - Use Case: Before submitting a photo-sharing app, run this audit to confirm every UGC surface (feed posts, profile photos, bios) routes through a moderation API, then fix flagged files at the reported line numbers. ## Quick Start Ask the AI to audit this iOS project for App Store Guideline 1.2 content moderation compliance and list any missing moderation integrations.