gplay-orders

gplay-orders is a skill for Claude Code, Codex from PollyGlot/google-play-cli-skills. It costs 63 tokens per session (1,015 once invoked), scanned A, original, MIT.

A command-line workflow for looking up and refunding Google Play orders when you already have an order ID, such as one beginning with GPA. It is for administrative work, not for checking purchase tokens from an app’s backend while the app is running.

In plain words
What is it for?
Use it to view one or more orders and issue a confirmed refund when appropriate, with the app package used to identify the correct Google Play app.
Why use it?
It helps handle buyer complaints, chargeback investigations, and payout reports without confusing order administration with real-time in-app purchase verification.

Skill for Claude CodeCodex

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

Good fit Use it to view one or more orders and issue a confirmed refund when appropriate, with the app package used to identify the correct Google Play app.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/pollyglot/google-play-cli-skills/gplay-orders/github.svg)](https://agentmods.dev/skills/pollyglot/google-play-cli-skills/gplay-orders)
Your own site
<a href="https://agentmods.dev/skills/pollyglot/google-play-cli-skills/gplay-orders"><img src="https://agentmods.dev/badge/skills/pollyglot/google-play-cli-skills/gplay-orders/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 gplay-orders

Your own site · 80×15
<a href="https://agentmods.dev/skills/pollyglot/google-play-cli-skills/gplay-orders"><img src="https://agentmods.dev/badge/skills/pollyglot/google-play-cli-skills/gplay-orders.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,015 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.00063 $0.01015
Opus 5 $0.00032 $0.00508
Sonnet 5 $0.00013 $0.00203
Haiku 4.5 $0.00006 $0.00102

Measured 9d ago against content hash 7566aefa34d4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

gplay-orders 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 9d 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/gplay-orders/SKILL.md · 80 lines

How it starts

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

gplay orders (admin commerce: view + refund)

gplay orders is the admin commerce surface: look up an order by its order ID, and, when warranted, refund it. Both commands are [experimental]. Shared conventions (auth, output, exit codes, --package pinning, --dry-run/--confirm) are in gplay-cli-usage.

The admin/runtime boundary. orders is for when a human or agent already holds an order ID (from a buyer complaint, a chargeback, a payout report) and wants to read or reverse it. That is an admin diagnostic. It is not real-time purchase-token verification (purchases.products / purchases.subscriptionsv2), which is a runtime API gplay does not wrap. If the task is "verify this in-app purchase token from my backend", this is the wrong surface.

An order ID looks like GPA.1234-5678-9012-34567. Orders are keyed by package, so the pinned package (or --package) scopes the lookup.

Read an order: orders view

gplay orders view GPA.1234-5678-9012-34567                 # one order (orders.get)
gplay orders view GPA.1111-... GPA.2222-... GPA.3333-...   # a batch (orders.batchget)
gplay orders view GPA.1234-... --output json               # full Order, verbatim
  • One ID → a detailed orders.get. Several IDs → orders.batchget, 1–1000 per request (more is a usage error, exit 2).
  • Batch is all-or-nothing: if any ID is unknown or belongs to another package, the whole request fails; don't mix packages in one call.
  • The human view is a compact summary (id, state, total, creation time, line items). --output json passes the Order (single) or BatchGetOrdersResponse (batch) through verbatim (ADR-0003), including the fields the summary omits: buyer address, tax, order history, sales channel.
  • An unknown order ID fails with exit 30 (API 4xx).

Refund an order: orders refund (money-moving, irreversible)

# Rehearse first, no HTTP; under --output json the gate shows in "requires":
gplay orders refund GPA.1234-5678-9012-34567 --dry-run

# Live (moves money), so --confirm is required:
gplay orders refund GPA.1234-5678-9012-34567 --confirm

# Also terminate the entitlement (buyer loses access; a subscription stops
# billing too). Default is refund-money-but-keep-access:
gplay orders refund GPA.1234-5678-9012-34567 --revoke --confirm

Read the full file on GitHub · 80 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. 9d ago First seen · 80 lines · 63 tokens per session scan A 7566aefa34d4

Subscribe to this mod's changes

gplay-orders is a skill published in the GitHub repository PollyGlot/google-play-cli-skills (5 stars, last pushed 6d ago), licensed MIT. It adds 63 tokens to every session and 1,015 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

asc-ppp-pricing

Set territory-specific pricing for subscriptions and in-app purchases using current asc setup, pricing summary, price import, and price schedule commands. Use when adjusting prices by country or implementing localized PPP strategies.

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

stripe

Stripe API integration with managed OAuth. Manage customers, subscriptions, invoices, products, prices, and payments. Use this skill when users want to process payments, manage billing, or handle subscriptions with Stripe. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).…

CraftOS-dev/CraftBot · 79 tokens

etsy-pricing-strategy

Etsy pricing — cost calculation, competitor pricing, perceived value, shipping cost integration, sales and coupons.

nexscope-ai/eCommerce-Skills · 26 tokens

amazon-wholesale-sourcing

Wholesale product sourcing — supplier discovery, negotiation, MOQ optimization, margin analysis.

nexscope-ai/Amazon-Skills · 20 tokens

ai-slop

Operational rubric that turns "don't make AI slop" into observable properties, severity levels, evidence requirements, and repair actions for interface design. Use as the reference rubric when building or reviewing marketing sites, product interfaces, dashboards, portfolios, or e-commerce pages, especially alongside…

waybarrios/opencode-power-pack · 61 tokens

payment-processor

Skill "payment-processor" from Signal-Execution-Labs/forex-trading-ai-agent, covering payment processor skill, supported services, capabilities, view balances and get all balances.

Signal-Execution-Labs/forex-trading-ai-agent · 0 tokens