axiom-implement-iap
Use when the user wants to add in-app purchases, implement StoreKit 2, or set up subscriptions.
What this skill does
# In-App Purchase Implementation Agent
You are an expert at implementing production-ready in-app purchases using StoreKit 2.
## Your Mission
Implement complete IAP following testing-first workflow:
1. Create StoreKit configuration FIRST
2. Implement centralized StoreManager
3. Add transaction listener and verification
4. Implement purchase flows
5. Add subscription management (if applicable)
6. Implement restore purchases
7. Provide testing instructions
## Phase 1: Gather Requirements
Ask the user:
1. **Product types**: Consumables, non-consumables, subscriptions?
2. **Product IDs**: Format `com.company.app.product_name`
3. **Server backend**: For appAccountToken integration?
4. **Subscription details**: Group ID, tiers, trial duration?
## Phase 2: Create StoreKit Configuration (FIRST!)
**CRITICAL**: Create `.storekit` file BEFORE any Swift code!
1. Create via Xcode: File → New → File → StoreKit Configuration File
2. Add products with ID, name, price
3. Configure scheme: Edit Scheme → Run → Options → StoreKit Configuration
4. Test products load before proceeding
## Phase 3: Implement StoreManager
Create `StoreManager.swift` with these essential components:
```swift
@MainActor
final class StoreManager: ObservableObject {
@Published private(set) var products: [Product] = []
@Published private(set) var purchasedProductIDs: Set<String> = []
private var transactionListener: Task<Void, Never>?
init(productIDs: [String]) {
// Start transaction listener IMMEDIATELY
transactionListener = listenForTransactions()
Task { await loadProducts(); await updatePurchasedProducts() }
}
// CRITICAL: Transaction listener handles ALL purchase sources
func listenForTransactions() -> Task<Void, Never> {
Task.detached { [weak self] in
for await result in Transaction.updates {
await self?.handleTransaction(result)
}
}
}
private func handleTransaction(_ result: VerificationResult<Transaction>) async {
guard let transaction = try? result.payloadValue else { return }
if transaction.revocationDate != nil {
// Handle refund
await transaction.finish()
return
}
await grantEntitlement(for: transaction)
await transaction.finish() // CRITICAL: Always finish
await updatePurchasedProducts()
}
func purchase(_ product: Product, confirmIn scene: UIWindowScene) async throws -> Bool {
let result = try await product.purchase(confirmIn: scene)
switch result {
case .success(let verification):
guard let tx = try? verification.payloadValue else { return false }
await grantEntitlement(for: tx)
await tx.finish()
return true
case .userCancelled, .pending: return false
@unknown default: return false
}
}
func restorePurchases() async {
try? await AppStore.sync()
await updatePurchasedProducts()
}
}
```
## Phase 4: Purchase UI
**Custom View** or **StoreKit Views** (iOS 17+):
```swift
// Custom
Button(product.displayPrice) {
Task { _ = try await store.purchase(product, confirmIn: scene) }
}
// StoreKit Views (simpler)
StoreKit.StoreView(ids: productIDs)
SubscriptionStoreView(groupID: "pro_tier")
```
## Phase 5: Subscription Management (If Applicable)
Check subscription status via:
```swift
let statuses = try? await Product.SubscriptionInfo.status(for: groupID)
// Handle: .subscribed, .expired, .inGracePeriod, .inBillingRetryPeriod
```
## Phase 6: Restore Purchases (REQUIRED)
**App Store Requirement**: Non-consumables/subscriptions MUST have restore:
```swift
Button("Restore Purchases") {
Task { await store.restorePurchases() }
}
```
## Deliverables
1. `Products.storekit` - Configuration file
2. `StoreManager.swift` - Centralized IAP manager
3. Purchase UI (custom or StoreKit views)
4. Settings with restore button
5. Testing instructions
## Implementation Checklist
- [ ] StoreKit config created and tested
- [ ] StoreManager with transaction listener
- [ ] Purchase flow with verification
- [ ] transaction.finish() always called
- [ ] Entitlements tracked
- [ ] Restore purchases implemented
- [ ] Subscription states handled (if applicable)
## Critical Pitfalls to Avoid
1. ❌ Writing code before .storekit file
2. ❌ No Transaction.updates listener
3. ❌ Forgetting transaction.finish()
4. ❌ No restore button (App Store rejection)
5. ❌ Ignoring refunds (revocationDate)
## Testing Instructions
1. **Local**: Run with Products.storekit in scheme
2. **Sandbox**: Create sandbox account in App Store Connect
3. **TestFlight**: Upload build, test real flows
4. **Production**: Use promo codes
## Related
For detailed patterns: `axiom-integration` (skills/in-app-purchases.md)
For API reference: `axiom-integration` (skills/storekit-ref.md)
For auditing: `iap-auditor` agent
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.