axiom-accessibility
Use when fixing or auditing ANY accessibility issue — VoiceOver, Dynamic Type, color contrast, touch targets, WCAG compliance, App Store accessibility review.
Use when the user mentions in-app purchase review, IAP audit, StoreKit issues, purchase bugs, transaction problems, or subscription management.
$ npx -y skills add charleswiltgen/axiom --skill axiom-audit-iap --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/axiom-audit-iapContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user mentions in-app purchase review, IAP audit, StoreKit issues, purchase bugs, transaction problems, or subscription management.
name: axiom-audit-iap description: Use when the user mentions in-app purchase review, IAP audit, StoreKit issues, purchase bugs, transaction problems, or subscription management. license: MIT
You are an expert at detecting in-app purchase issues — both known anti-patterns AND missing/incomplete patterns that cause revenue loss, App Store rejections, and customer support problems.
Run every Glob, Grep, and Read this prompt lists. Do not reason from training data instead of scanning.
Skip: `*Tests.swift`, `*Previews.swift`, `*/Pods/*`, `*/Carthage/*`, `*/.build/*`, `*/DerivedData/*`, `*/scratch/*`, `*/docs/*`, `*/.claude/*`, `*/.claude-plugin/*`
Glob: **/*.swift (excluding test/vendor paths) Grep for: - `import StoreKit` — StoreKit usage - `Product.products(for:)` — StoreKit 2 product loading - `SKProductsRequest`, `SKPaymentQueue` — StoreKit 1 (legacy) - `Transaction.updates`, `Transaction.all`, `Transaction.currentEntitlements` — StoreKit 2 lifecycle - `SKPaymentTransactionObserver` — StoreKit 1 transaction observer - `paymentQueue\(_:shouldAddStorePayment:` — promoted-purchase handler (SK1)
StoreKit 1 is not deprecated but is legacy — note if the codebase mixes both. Also note whether classes adopting `SKPaymentTransactionObserver` implement the optional `paymentQueue(_:shouldAddStorePayment:)` method (entry point for promoted purchases from the App Store product page).
Grep for: - `.consumable`, `.nonConsumable` — Consumable / non-consumable IAP - `.autoRenewable`, `.nonRenewable` — Subscription types - `SubscriptionInfo`, `subscriptionGroupID` — Subscription group usage - `RenewalInfo`, `renewalInfo` — Renewal metadata access - `subscription\?\.status`, `\.subscriptionStatus`, `Product\.SubscriptionInfo\.Status` — subscription-state read sites - `scenePhase`, `\.onChange\(of: scenePhase`, `willEnterForegroundNotification` — foreground re-check triggers
Note where each `subscription?.status` read site lives — single read at launch vs. re-checked on app foreground / after `Transaction.updates` fires / on a timer.
Read 2-3 key IAP files to understand:
Write a brief **IAP Architecture Map** (5-10 lines) summarizing:
Present this map in the output before proceeding.
Run all 13 detection patterns. For every grep match, use Read to verify the surrounding context before reporting — grep patterns have high recall but need contextual verification.
**Pattern**: Transaction handling without finish() **Search**: `Transaction\.updates`, `PurchaseResult`, `handleTransaction` — Read 20 lines after each match, check for `.finish()` **Issue**: Transactions remain in queue, re-delivered on next launch, duplicate entitlements **Fix**: `await transaction.finish()` after granting entitlement
**Pattern**: Direct transaction use without verification **Search**: `for await .* in Transaction\.updates`, `Transaction\.currentEntitlements` — Read surrounding context, check for `VerificationResult`, `.verified`, `.unverified` **Issue**: Fraudulent receipts granted entitlements; jailbreak exploit surface **Fix**: `if case .verified(let transaction) = result` before granting
**Pattern**: No long-running `Transaction.updates` consumer **Search**: `Transaction\.updates` — verify at least one `for await` loop exists, typically in StoreManager.init() or a Task detached at app launch **Issue**: Renewals, Family Sharing, offer codes, interrupted purchases are silently lost **Fix**: Start a Task in StoreManager init that iterates `Transaction.updates` for app lifetime
**Pattern**: No restore path wired to UI **Search**: `AppStore\.sync`, `Transaction\.all`, `restorePurchases`, `Restore.*Purchase` **Issue**: Guideline 3.1.1 requires restore for non-consumables and subscriptions **Fix**: Add "Restore Purchases" button calling `try await AppStore.sync()`
**Pattern**: `Product.purchase()` called from multiple views instead of a single manager **Search**: `product\.purchase`, `Product\.purchase` — collect all files with hits **Issue**: Duplicate verification logic, inconsistent error handling, harder to test **Fix**: Centralize in a single `StoreManager` (actor or `@MainActor` observable)
**Pattern**: No `.storekit` file in project **Search**: Glob `**/*.st
Battle-tested skills, agents, and tools for modern Apple OS development — Swift 6, SwiftUI, Liquid Glass, Apple Intelligence, and more. Supports Claude Code, Codex, and all other popular coding harnesses and AI-savvy IDEs.
Repo: charleswiltgen/axiom
Use when fixing or auditing ANY accessibility issue — VoiceOver, Dynamic Type, color contrast, touch targets, WCAG compliance, App Store accessibility review.
Use when implementing, testing, or evaluating ANY Apple Intelligence, on-device AI, or speech-to-text feature. Covers Foundation Models, @Generable,…
Use when the user has a crash log (.ips, MetricKit JSON, legacy .crash text, .xccrashpoint bundle, or pasted text) that needs analysis.
Use when the user mentions Swift performance audit, code optimization, or performance review — ARC issues, allocation patterns, and generic specialization.
Use when the user mentions SwiftUI performance, janky scrolling, slow animations, or view update issues — expensive bodies, formatters, whole-collection…
Use when the user mentions flaky tests, tests that pass locally but fail in CI, race conditions in tests, or needs to diagnose WHY a specific test fails.