revenuecat-vs-raw-billing

revenuecat-vs-raw-billing is a skill for Claude Code, Codex from RevenueCat/play-billing-skills. It costs 51 tokens per session (1,400 once invoked), scanned A, a copy of rc-revenuecat-vs-raw-billing, Apache-2.0.

A comparison guide for choosing between RevenueCat and direct Google Play Billing on Android. RevenueCat is a service that manages purchase and subscription logic, while direct billing means your app and backend handle Google's billing systems themselves.

In plain words
What is it for?
Use it to compare client purchase code, receipt or token verification, subscription state tracking, real-time notifications, authentication, and other billing concerns.
Why use it?
It shows which responsibilities RevenueCat replaces, which ones remain yours, and what direct billing requires. This makes the choice clearer for both the Android app and its server.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to compare client purchase code, receipt or token verification, subscription state tracking, real-time notifications, authentication, and other billing concerns.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/revenuecat/play-billing-skills/revenuecat-vs-raw-billing
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add RevenueCat/play-billing-skills --skill revenuecat-vs-raw-billing
Clone the repo
git clone --depth 1 https://github.com/RevenueCat/play-billing-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for revenuecat-vs-raw-billing

README.md
[![agentmods](https://agentmods.dev/badge/skills/revenuecat/play-billing-skills/revenuecat-vs-raw-billing/github.svg)](https://agentmods.dev/skills/revenuecat/play-billing-skills/revenuecat-vs-raw-billing)
Your own site
<a href="https://agentmods.dev/skills/revenuecat/play-billing-skills/revenuecat-vs-raw-billing"><img src="https://agentmods.dev/badge/skills/revenuecat/play-billing-skills/revenuecat-vs-raw-billing/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for revenuecat-vs-raw-billing

Your own site · 80×15
<a href="https://agentmods.dev/skills/revenuecat/play-billing-skills/revenuecat-vs-raw-billing"><img src="https://agentmods.dev/badge/skills/revenuecat/play-billing-skills/revenuecat-vs-raw-billing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,400 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 98% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.01400
Opus 5 $0.00026 $0.00700
Sonnet 5 $0.00010 $0.00280
Haiku 4.5 $0.00005 $0.00140

Measured 13d ago against content hash 18a9540e9c0c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

revenuecat-vs-raw-billing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

98% identical to rc-revenuecat-vs-raw-billing — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

revenuecat/revenuecat-vs-raw-billing/SKILL.md · 114 lines

How it starts

The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.

RevenueCat vs Raw Google Play Billing

Phase 0: Intent

Use this skill when you are choosing between integrating RevenueCat or wiring Google Play Billing Library (PBL) directly, and you need to see which concerns disappear, which shift, and which still land on your team. The decision covers both the Android client and any server side infrastructure that supports subscriptions or one time purchases.

Typical questions this skill answers:

  • If I adopt RevenueCat, what client code no longer exists in my app?
  • What backend pieces (receipt verification, RTDN, state machine) does RevenueCat replace?
  • What do I still own regardless of which path I pick?
  • Is there a concern where raw PBL is the only option today?

Phase 1: Locate the Concern

Before reading the tables, identify what you are actually evaluating. Sort your requirement into one of these buckets and jump to the matching section:

Bucket Examples Go to
Client purchase plumbing BillingClient, listeners, acknowledgement, consumption Client side table
Server purchase truth Token validation, RTDN, entitlement state machine Server side table
Out of scope for either Auth, your user DB, paywall UI, push Your responsibility table

If the concern is split (for example, RevenueCat verifies the token but you still need to gate premium content on your API), you own the integration glue even though the verification itself is handled.

Phase 2: Side by Side Reference

Client side

Concern Raw PBL RevenueCat
BillingClient setup and configuration You write Handled internally
Connection lifecycle and reconnection You write Handled internally
PurchasesUpdatedListener You write Replaced by purchase callbacks
queryProductDetailsAsync() You write Replaced by awaitOfferings() / awaitGetProducts()
launchBillingFlow() You write Called internally by awaitPurchase()
Acknowledgement after purchase You write Handled automatically
Consumption of consumables You write Handled automatically (mark product as consumable in dashboard)
queryPurchasesAsync() on launch You write Handled internally on connection
Retry logic for transient errors You write Handled internally by SDK
BillingResponseCode handling You write Abstracted to PurchasesErrorCode
In-app payment recovery messages You write Automatic (showInAppMessagesAutomatically = true)
Subscription option selection for offers You write defaultOption selected automatically

Read the full file on GitHub · 114 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 114 lines · 51 tokens per session scan A 18a9540e9c0c

Subscribe to this mod's changes

revenuecat-vs-raw-billing is a skill published in the GitHub repository RevenueCat/play-billing-skills (53 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 51 tokens to every session and 1,400 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 98% identical to rc-revenuecat-vs-raw-billing, differing in 2 lines, and is treated as a copy.

Related

Other skills, from other repositories

play-billing-library-version-upgrade

Use this skill when upgrading or migrating an Android project from any legacy Google Play Billing Library (PBL) version to the latest stable version of PBL.

android/skills · 39 tokens

asc-revenuecat-catalog-sync

Reconcile App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, offerings, and packages using asc and RevenueCat MCP. Use when setting up or syncing subscription catalogs across ASC and RevenueCat.

rorkai/app-store-connect-cli-skills · 51 tokens

axiom-implement-iap

Use when the user wants to add in-app purchases, implement StoreKit 2, or set up subscriptions.

CharlesWiltgen/Axiom · 29 tokens

google-play

Google Play Developer API (Android Publisher) integration with managed OAuth. Manage apps, subscriptions, in-app purchases, and reviews. Use this skill when users want to interact with Google Play Console programmatically. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).

CraftOS-dev/CraftBot · 70 tokens

subscription-lifecycle

Generates StoreKit 2 subscription lifecycle management — grace periods, billing retry, offer codes, win-back offers, upgrade/downgrade paths, and subscription status monitoring. Use when user needs post-purchase subscription state handling beyond the initial paywall.

rshankras/claude-code-apple-skills · 55 tokens

subscription-offers

Generates StoreKit 2 code for all subscription offer types — introductory, promotional, offer codes, and win-back. Includes eligibility checks, offer presentation, and the preferredSubscriptionOffer modifier. Use when adding subscription offers, free trials, or promotional pricing.

rshankras/claude-code-apple-skills · 55 tokens