app-store
App Store optimization and marketing skills for descriptions, screenshots, keywords, review responses, and comprehensive promotional strategy. Use when user…
Privacy manifest (PrivacyInfo.xcprivacy) implementation including required reason APIs, tracking domains, third-party SDK declarations, and App Tracking Transparency. Use when preparing apps for App Store privacy requirements.
$ npx -y skills add rshankras/claude-code-apple-skills --skill privacy-manifests --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/privacy-manifestsContext preview
The summary Claude sees to decide when to auto-load this skill.
Privacy manifest (PrivacyInfo.xcprivacy) implementation including required reason APIs, tracking domains, third-party SDK declarations, and App Tracking Transparency. Use when preparing apps for App Store privacy requirements.
name: privacy-manifests description: Privacy manifest (PrivacyInfo.xcprivacy) implementation including required reason APIs, tracking domains, third-party SDK declarations, and App Tracking Transparency. Use when preparing apps for App Store privacy requirements. allowed-tools: [Read, Glob, Grep] last_verified: 2026-07-16 review_by: 2027-06-22
Advisory skill for implementing Apple's privacy manifest (PrivacyInfo.xcprivacy) requirements: manifest file format, required reason APIs, tracking declarations, third-party SDK privacy, and App Tracking Transparency.
Use this skill when the user:
| Problem | Section | |---------|---------| | Creating PrivacyInfo.xcprivacy from scratch | Privacy Manifest File Format + Required Reason APIs | | App Store rejection about required reason APIs | Required Reason APIs (match APIs in your code) | | Declaring tracking domains | Tracking Domains and NSPrivacyTracking | | Third-party SDK privacy | Third-Party SDK Declarations | | Implementing ATT | App Tracking Transparency | | Filling out App Store privacy labels | Privacy Nutrition Labels | | Generating Xcode report | Xcode Privacy Report |
Glob: **/PrivacyInfo.xcprivacy Grep: "NSPrivacyAccessedAPITypes|NSPrivacyTracking|NSPrivacyTrackingDomains" Grep: "NSFileCreationDate|NSFileModificationDate|NSURLCreationDateKey" Grep: "systemUptime|ProcessInfo.*processInfo" Grep: "volumeAvailableCapacity|URLResourceKey.*volume" Grep: "UserDefaults" Grep: "activeInputModes|UITextInputMode" Grep: "ATTrackingManager|requestTrackingAuthorization"
Check: Does PrivacyInfo.xcprivacy exist? Are all required reason APIs declared? Is NSPrivacyTracking correct? Are tracking domains listed? Do third-party SDKs have their own manifests? Use the sections below to generate correct entries.
---
The privacy manifest is a property list named `PrivacyInfo.xcprivacy`. Add it via File > New > File > App Privacy in Xcode. Four required top-level keys:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
</dict>
</plist>// Package.swift
.target(
name: "MyLibrary",
resources: [
.copy("PrivacyInfo.xcprivacy")
]
)---
Apple requires you to declare why your app uses certain system APIs. You must include at least one valid reason code for each API category your app uses.
APIs that access file creation or modification dates.
| Reason Code | Description | |-------------|-------------| | DDA9.1 | Display file timestamps to the user | | C617.1 | Access timestamps inside the app container, app group container, or CloudKit container | | 3B52.1 | Access timestamps of files or directories the user specifically granted access to (document picker, drag and drop) | | 0A2A.1 | Access timestamps for files managed by the app itself (third-party SDK only) |
Common triggers: `NSFileCreationDate`, `NSFileModificationDate`, `NSURLContentModificationDateKey`, `NSURLCreationDateKey`, `getattrlist`, `stat`, `fstat`.
APIs that read how long the system has been running.
| Reason Code | Description | |-------------|-------------| | 35F9.1 | Measure elapsed time between events within the app | | 8FFB.1 | Calculate absolute timestamps for events (e.g., events that occurred before app launch) | | 3D61.1 | Access system boot time for the purposes of user-facing functionality |
Common triggers: `systemUptime`, `ProcessInfo.processInfo.systemUptime`, `mach_absolute_time`, `clock_gettime(CLOCK_MONOTONIC)`.
APIs that query available or total disk space.
| Reason Code | Description | |-------------|-------------| | E174.1 | Display disk space to the user | | 85F4.1 | Check whether there is sufficient disk space to write files | | AB6B.1 | Query disk space for the app's own functionality, do not send off device | | 7D9E.1 | Query disk space for the app's own functionality, results sent off device (e.g., analytics) |
Common triggers: `volumeAvailableCapacityKey`, `volumeAvailableCapacityForImportantUsageKey`, `volumeAvailableCapacityForOpportunisticUsageKey`, `volumeTotalCapacityKey`, `statfs`, `statvfs`.
APIs that read or write to UserDefaults.
| Reason Code | Description | |-------------|-------------| | CA92.1 | Read/write data accessible only to the app itself | | 1C8F.1 | Read/write data accessible to app groups (shared
A collection of Claude Code skills for iOS, macOS, watchOS, visionOS, and Apple platform development. These skills help you plan and build apps, maintain code quality, ensure HIG compliance, and guide you from idea to App Store.
Repo: rshankras/claude-code-apple-skills
App Store optimization and marketing skills for descriptions, screenshots, keywords, review responses, and comprehensive promotional strategy. Use when user…
Privacy-preserving ad measurement with AdAttributionKit (SKAdNetwork's successor) — install and re-engagement attribution, conversion-value strategy under…
Generate compelling App Store descriptions that convert browsers into users. Use when writing initial descriptions, improving existing copy, or drafting…
Apple Search Ads campaign strategy for indie developers — paid acquisition, keyword bidding, budget planning, and ROAS optimization. Use when user asks about…
Take a one-time in-app purchase from MISSING_METADATA to READY_TO_SUBMIT in App Store Connect — set its price schedule and localized display name/description…
Optimize app title, subtitle, and keywords for maximum App Store discoverability. Use when launching a new app, improving search rankings, entering new…