mcpbeat Sign in

External Purchases Skill for Claude

US web checkout via the StoreKit External Purchase Link entitlement — currently 0% Apple commission (litigation ongoing), how to ship it safely, and how to architect for a commission flip so a future ruling is a config change, not a rewrite. Use when adding external purchase links, weighing web checkout vs IAP, or planning US-storefront pricing strategy.

1k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
585
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/rshankras/claude-code-apple-skills --skill external-purchases

The instruction itself

7 sections, as written by the author

External Purchases (US Web Checkout)

On the US storefront, apps may link out to a web checkout for digital goods using the

StoreKit External Purchase Link entitlement — and as of mid-2026, court orders have Apple's

commission on those purchases at 0%, with the fee case still moving through district court.

This is the largest indie revenue unlock of the era, and it is *reversible by a ruling* — so the

engineering rule is: ship it now, architect it so a commission can be flipped on later.

> Verify current state before relying on this: the entitlement terms, the commission rate, and

> the litigation status have each changed more than once. Treat every number here as

> "true as of 2026-07, re-check."

When This Skill Activates

  • "Add a web checkout / Stripe / external purchase link" for digital goods
  • Deciding IAP vs web checkout for a US-heavy revenue base
  • The store-growth audit flags P8.4
  • Reviewing an app whose external links might be non-compliant (wrong storefront, no entitlement)

The rules of the road

  • US storefront only — elsewhere Guideline 3.1.1 still applies (EU/JP/KR have separate

entitlements/terms; don't extrapolate from the US).

  • Entitlement required: com.apple.developer.storekit.external-purchase-link + matching

Info.plist declaration — a bare Link("Buy", …) without it is still a rejection (see

app-store/rejection-handler §3.1.1).

  • Present the link per the entitlement's UI terms (StoreKit's ExternalPurchaseLink /

disclosure sheet where required). Don't dark-pattern the IAP option away if you keep both.

  • Purchases made on the web are your customer relationship — payment processor, refunds,

taxes; Apple's merchant-of-record role no longer applies.

Architecture: the commission flip

Design so that a future "Apple takes N% of external purchases initiated in-app" ruling changes a

config value, not your codebase:

  • ✅ Route every in-app-initiated web checkout through one link-out service that stamps the

session (source=app, timestamp, storefront) — web-organic checkouts stay unstamped. If a

commission returns, it applies to a knowable, logged subset.

  • ✅ Keep a single CommissionPolicy (remote-configurable): rate, applies_to,

effective_date. Report/accrue against it from day one — at 0% it's just a counter.

  • ✅ Log day-one analytics: link taps → checkout starts → completions, vs the IAP funnel. The

conversion drop through a web checkout (Apple's sheet, Safari hop, payment form) is real;

whether 0% beats IAP's frictionless 85–70% is an *empirical* per-app question.

  • ❌ Scattering openURL("https://…/buy") calls through features — un-auditable, un-flippable.
  • ❌ Ripping out StoreKit. Keep IAP as a fallback path (non-US storefronts still need it, and

some US users convert better in-sheet).

Decision sketch

| Situation | Lean |

|---|---|

| Subscriptions, US-heavy, ARPU high enough to absorb processor fees + your own support | Web checkout for new subs; keep IAP for the rest of world |

| Impulse-priced consumables/unlocks | IAP — checkout friction eats more than 15–30% commission |

| Existing subscriber base on IAP | Don't force-migrate; offer web at renewal decision points |

| B2B/prosumer, invoicing needs | Web checkout regardless of commission math |

Output Format

Status: entitlement present? · storefront scope correct (US-only gating)? ·
link-out service centralized? · CommissionPolicy flippable? · funnel analytics live?
Verdict + the one next step.

References

  • https://developer.apple.com/documentation/storekit/externalpurchaselink
  • https://developer.apple.com/support/storekit-external-entitlement-us/
  • https://developer.apple.com/app-store/review/guidelines/#in-app-purchase
  • Related skills: app-store/rejection-handler (the non-entitled rejection pattern), generators/subscription-lifecycle, monetization (pricing), growth/store-growth-audit

Other skills for the same job

different authors, same section of the catalogue
Content Creator
by ComeOnOliver
×2

Create SEO-optimized marketing content with consistent brand voice. Includes brand voice analyzer, SEO optimizer, content frameworks, and social media templates. Use when writing blog posts, creating social media content, analyzing brand voice, optimizing SEO, planning content calendars, or when user mentions content creation, brand voice, SEO optimization, social media marketing, or content strategy.

17k tokens scripts
SEO Content Planner
by ComeOnOliver
×2

Creates comprehensive content outlines and topic clusters for SEO. Plans content calendars and identifies topic gaps. Use PROACTIVELY for content strategy and planning.

3k tokens
Crisis Response Protocol
by BioTender-max
×1

Handle mental health crisis situations in AI coaching safely. Use when implementing crisis detection, safety protocols, emergency escalation, or suicide prevention features. Activates for crisis keywords, safety planning, hotline integration, and risk assessment.

3k tokens
Social Content
by ComeOnOliver
×1

When the user wants help creating, scheduling, or optimizing social media content for LinkedIn, Twitter/X, Instagram, TikTok, Facebook, or other platforms. Also use when the user mentions 'LinkedIn post,' 'Twitter thread,' 'social media,' 'content calendar,' 'social scheduling,' 'engagement,' or 'viral content.' This skill covers content creation, repurposing, and platform-specific strategies.

9k tokens
Gtm Partnership Architecture
by github
vendor

Build and scale partner ecosystems that drive revenue and platform adoption. Use when building partner programs from scratch, tiering partnerships, managing co-marketing, making build-vs-partner decisions, or structuring crawl-walk-run partner deployment.

4k tokens
Monetization Strategy
by phuryn

Brainstorm 3-5 monetization strategies with audience fit, risks, and validation experiments. Use when exploring revenue models, evaluating pricing strategies, or deciding how to monetize a product.

2k tokens
Positioning Ideas
by phuryn

Brainstorm product positioning ideas differentiated from competitors. Identifies top competitors and generates positioning statements with rationale. Use when developing product positioning, differentiating from competitors, or crafting brand positioning strategy.

750 tokens
Campaign Plan
by anthropics
vendor

Generate a full campaign brief with objectives, audience, messaging, channel strategy, content calendar, and success metrics. Use when planning a product launch, lead-gen push, or awareness campaign, when you need a week-by-week content calendar with dependencies, or when translating a marketing goal into a structured, executable plan.

4k tokens

How to use it

Copy the folder

Take rshankras/external-purchases from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.