app-store
App Store optimization and marketing skills for descriptions, screenshots, keywords, review responses, and comprehensive promotional strategy. Use when user…
Generates Promoted In-App Purchase setup with StoreKit 2 product configuration, paywall integration, and App Store product page display. Use when setting up promoted purchases that appear on the App Store product page.
$ npx -y skills add rshankras/claude-code-apple-skills --skill promoted-iap --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/promoted-iapContext preview
The summary Claude sees to decide when to auto-load this skill.
Generates Promoted In-App Purchase setup with StoreKit 2 product configuration, paywall integration, and App Store product page display. Use when setting up promoted purchases that appear on the App Store product page.
name: promoted-iap description: Generates Promoted In-App Purchase setup with StoreKit 2 product configuration, paywall integration, and App Store product page display. Use when setting up promoted purchases that appear on the App Store product page. allowed-tools: [Read, Write, Edit, Glob, Grep, Bash, AskUserQuestion] last_verified: 2026-07-16 review_by: 2027-06-22 os_version: iOS 27 / macOS 27
Set up promoted In-App Purchases so your premium offerings appear directly on your App Store product page, in search results, and in editorial features.
Use this skill when the user:
Glob: **/*Promoted*.swift, **/*StorePayment*.swift Grep: "shouldAddStorePayment" or "PurchaseIntent" or "promotedPurchase"
1. **App Store Connect**: Mark IAP products as "Promoted" with promotional image 2. **Product Page**: Up to 20 promoted IAPs appear on your product page 3. **Search Results**: Promoted IAPs can appear in search 4. **User Action**: User taps "Buy" on App Store → your app opens to complete purchase 5. **Your App**: Must handle the incoming purchase intent
Ask user via AskUserQuestion:
1. **What type of IAP to promote?**
2. **How to handle App Store-initiated purchases?**
3. **Number of promoted products?**
Read `templates.md` for promoted IAP implementation code.
1. **PromotedPurchaseHandler.swift** — Handle purchases initiated from App Store 2. **PromotedProductConfiguration.swift** — Product definitions and promotional images specs 3. **PromotedPurchaseFlowView.swift** — UI for completing promoted purchases in-app
- If Sources/Store/ exists → Sources/Store/Promoted/ - If Store/ exists → Store/Promoted/ - Otherwise → Store/Promoted/
Store/Promoted/ ├── PromotedPurchaseHandler.swift # App Store purchase handling ├── PromotedProductConfiguration.swift # Product setup & image specs └── PromotedPurchaseFlowView.swift # In-app purchase completion UI
**Handle App Store-Initiated Purchases (StoreKit 2):**
@main
struct MyApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.task {
// Listen for purchases initiated from App Store
for await purchaseIntent in PurchaseIntent.intents {
await PromotedPurchaseHandler.shared.handle(purchaseIntent)
}
}
}
}
}**Complete the Purchase:**
// PromotedPurchaseHandler determines the right flow: // 1. Direct purchase (existing user, known product) // 2. Paywall (show options first) // 3. Onboarding (new user from App Store)
1. Go to App Store Connect > Your App > In-App Purchases 2. Select the IAP product 3. Under "App Store Promotion":
4. Repeat for each product you want to promote
1. **StoreKit Configuration**: Add promoted products to your .storekit file 2. **Test purchase flow**: Simulate App Store-initiated purchase 3. **Test user states**: New user, existing free user, existing subscriber 4. **Verify UI**: Purchase completion view looks correct for each product type
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…