gps-purchases

gps-purchases is a skill for Claude Code, Codex from appeeky/google-play-console-cli. It costs 45 tokens per session (302 once invoked), scanned A, original, MIT.

A tool for inspecting and managing Google Play purchases and subscriptions using purchase tokens. It can also look up voided purchases, orders, and refunds.

In plain words
What is it for?
Looking up product purchases and subscriptions, acknowledging or consuming purchases, checking voided purchases, and inspecting or refunding orders.
Why use it?
It gives developers a way to check purchase status and handle subscription or order operations while requiring confirmation for actions that change billing state.

Skill for Claude CodeCodex

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

Good fit Looking up product purchases and subscriptions, acknowledging or consuming purchases, checking voided…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/appeeky/google-play-console-cli/gps-purchases
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 appeeky/google-play-console-cli --skill gps-purchases
Clone the repo
git clone --depth 1 https://github.com/appeeky/google-play-console-cli

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 gps-purchases

README.md
[![agentmods](https://agentmods.dev/badge/skills/appeeky/google-play-console-cli/gps-purchases.svg)](https://agentmods.dev/skills/appeeky/google-play-console-cli/gps-purchases)
Your own site
<a href="https://agentmods.dev/skills/appeeky/google-play-console-cli/gps-purchases"><img src="https://agentmods.dev/badge/skills/appeeky/google-play-console-cli/gps-purchases.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 302 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 original No closer match found 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.00045 $0.00302
Opus 5 $0.00023 $0.00151
Sonnet 5 $0.00009 $0.00060
Haiku 4.5 $0.00005 $0.00030

Measured 6d ago against content hash 4c6a80b65496, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

gps-purchases 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 6d 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.

skills/gps-purchases/SKILL.md · 43 lines

What it actually says

Purchases and orders

Product purchases

gps --package $PKG purchases product PRODUCT_ID TOKEN
gps --package $PKG purchases product-v2 PRODUCT_ID TOKEN
gps --package $PKG purchases ack-product PRODUCT_ID TOKEN --confirm
gps --package $PKG purchases consume PRODUCT_ID TOKEN --confirm

Subscriptions

gps --package $PKG purchases subscription TOKEN
gps --package $PKG purchases cancel-subscription SUBSCRIPTION_ID TOKEN --confirm
gps --package $PKG purchases revoke-subscription SUBSCRIPTION_ID TOKEN --confirm

Defer / acknowledge via ops: gps_defer_subscription, gps_acknowledge_subscription.

Voided + orders

gps --package $PKG purchases voided --json
gps --package $PKG orders get ORDER_ID
gps --package $PKG orders refund ORDER_ID --confirm

Safety

  • Never refund/revoke/cancel without explicit user confirmation.
  • Prefer inspect (get / subscription / voided) first.
  • MCP: gps_get_product_purchase, gps_get_subscription_purchase, gps_refund_order, …
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. 6d ago First seen · 43 lines · 45 tokens per session scan A 4c6a80b65496

Subscribe to this mod's changes

gps-purchases is a skill published in the GitHub repository appeeky/google-play-console-cli (13 stars, last pushed 1mo ago), licensed MIT. It adds 45 tokens to every session and 302 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

android-expert

Expert in Android development with Jetpack Compose, Material Design, ViewModel, and modern Android architecture. Use when the user mentions mobile, Kotlin, Jetpack Compose, Material Design, or Google, or when the task involves Android Architecture, Android Components, Jetpack Libraries, or Activity/Fragment Lifecycle.

personamanagmentlayer/pcl · 64 tokens

user-journey-tracking

Track user journeys with intent context and friction signals. Use when instrumenting onboarding, checkout, or any multi-step flow where you need to understand WHY users fail.

nexus-labs-automation/mobile-observability · 39 tokens

onesub

Use this skill when the user wants to add in-app purchases (subscriptions, consumables, or non-consumables) to a React Native / Expo mobile app. onesub is the open-source server side of react-native-iap — one line of Express middleware validates Apple StoreKit 2 and Google Play Billing receipts. Pair it with the…

jeonghwanko/onesub · 0 tokens

passkit

Apple Pay and Wallet passes on iOS with PassKit — build a PKPaymentRequest (merchantIdentifier, supportedNetworks, merchantCapabilities .threeDSecure/.credit/.debit, PKPaymentSummaryItem, PKContactField shipping/billing), present PKPaymentAuthorizationController with its delegate (async didAuthorizePayment →…

TalissonVitorino/kmp-ios-skills · 228 tokens

storekit

In-app purchases and subscriptions on iOS/iPadOS/macOS with StoreKit 2 (iOS 26 era) — fetch products with Product.products(for:), buy with Product.purchase and switch on PurchaseResult (.success/.pending/.userCancelled), always unwrap VerificationResult (.verified/.unverified), gate access from…

TalissonVitorino/kmp-ios-skills · 242 tokens

app-paywall-pilot

Design, audit, debug, and implement App Store-compliant mobile paywalls, subscription flows, pricing screens, trials, offers, feature gates, and subscription lifecycle UX. Use when the user asks to audit my paywall, fix App Store 3.1.2 rejection, improve trial-to-paid, choose plans/prices/trials, review…

Nikolai-Iakubovskii/app-paywall-pilot · 101 tokens