ppp-rebalance

ppp-rebalance is a skill for Claude Code, Codex from akoskomuves/appstoreconnect-mcp. It costs 84 tokens per session (1,669 once invoked), scanned A, original, MIT.

A workflow for changing iOS App Store subscription prices by territory using purchasing-power-parity data, which adjusts prices to reflect differences in local buying power.

In plain words
What is it for?
Use it to find an app subscription, calculate a territory-by-territory price proposal, review it as a dry run, schedule approved changes, and roll them back if needed.
Why use it?
It helps identify prices that may be too high in some markets while keeping the change reviewable. The workflow includes a preview, scheduling, and rollback process.

Skill for Claude CodeCodex

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

Good fit Use it to find an app subscription, calculate a territory-by-territory price proposal, review it as a dry run, schedule approved changes, and roll them back if needed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/akoskomuves/appstoreconnect-mcp/ppp-rebalance
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 akoskomuves/appstoreconnect-mcp --skill ppp-rebalance
Clone the repo
git clone --depth 1 https://github.com/akoskomuves/appstoreconnect-mcp

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 ppp-rebalance

README.md
[![agentmods](https://agentmods.dev/badge/skills/akoskomuves/appstoreconnect-mcp/ppp-rebalance/github.svg)](https://agentmods.dev/skills/akoskomuves/appstoreconnect-mcp/ppp-rebalance)
Your own site
<a href="https://agentmods.dev/skills/akoskomuves/appstoreconnect-mcp/ppp-rebalance"><img src="https://agentmods.dev/badge/skills/akoskomuves/appstoreconnect-mcp/ppp-rebalance/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 ppp-rebalance

Your own site · 80×15
<a href="https://agentmods.dev/skills/akoskomuves/appstoreconnect-mcp/ppp-rebalance"><img src="https://agentmods.dev/badge/skills/akoskomuves/appstoreconnect-mcp/ppp-rebalance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,669 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.00084 $0.01669
Opus 5 $0.00042 $0.00834
Sonnet 5 $0.00017 $0.00334
Haiku 4.5 $0.00008 $0.00167

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

Security

Grade A, and why

ppp-rebalance 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 12d 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.

examples/ppp-rebalance/SKILL.md · 135 lines

How it starts

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

PPP rebalance

You are helping the user rebalance their iOS app's subscription prices across App Store territories using a Purchasing Power Parity index. The appstoreconnect-mcp server is connected and provides the necessary tools.

The MCP does the math for you — ppp_compute_proposal is the single tool that produces the dry-run table. Your job is to drive the conversation, validate the proposal with the user, and apply it via the write tools.

Workflow

Run these phases in order. Never skip the dry-run.

1. Discover the subscription

If the user hasn't named the app + subscription:

  1. asc_list_apps — find the app (filter by bundle ID if known).
  2. asc_list_subscription_groups for that app.
  3. asc_list_subscriptions for the relevant group.
  4. Confirm with the user which subscription is being repriced and the anchor base price (e.g. $29.99 USD).

2. Compute the proposal (dry-run)

ppp_compute_proposal(
  subscriptionId: "...",
  basePriceAnchor: 29.99,
  anchorTerritory: "USA",
  roundStrategy: "nearest"   // or "down" / "up"
)

The tool:

  • Fetches the current price schedule for every territory.
  • Loads the bundled Apple Music index (ppp_load_index shows the snapshot).
  • Computes a PPP factor per territory using Apple Music ratios as implied PPP-FX.
  • Fetches the valid price points for every territory whose target differs from current, in parallel.
  • Snaps each target to the nearest valid Apple price point.
  • Applies a 15% floor (floorFactor) so a bad index entry can't crash the price.
  • Returns a compact table with current, target, snapped, Δ%, factor, and a NOTE column for skipped/no-data rows.

Show the table to the user. Stop and wait for explicit approval before any writes.

3. Iterate the proposal if needed

If the user wants to tweak:

  • Different round strategy: re-run with roundStrategy: "down" (more conservative for emerging markets) or "up" (more revenue-protective).
  • Subset of territories: pass territories: ["BRA", "MEX", "ARG", "TUR", "IND", "IDN"] to scope the proposal.
  • Different base price: change basePriceAnchor.
  • Show all rows including unchanged: pass skipUnchanged: false.
  • Surface no-index rows: pass skipMissingIndex: false so the user can see which territories Apple Music data is missing for.

Read the full file on GitHub · 135 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. 12d ago First seen · 135 lines · 84 tokens per session scan A 51e4311d5dc3

Subscribe to this mod's changes

ppp-rebalance is a skill published in the GitHub repository akoskomuves/appstoreconnect-mcp (5 stars, last pushed 1mo ago), licensed MIT. It adds 84 tokens to every session and 1,669 once invoked, about $0.0004 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

stripe-link-cli

Agent payments via Stripe Link — cards, SPT, approvals.

NousResearch/hermes-agent · 17 tokens

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

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

amazon-returns-recovery

Suede-affiliated Amazon money-recovery audit for restocking fees, short or denied refunds, and Amazon-billed subscriptions. Use when the user mentions a restocking fee, a short or denied Amazon refund, or a forgotten Prime Video Channel, Audible, Kindle Unlimited, or Prime charge, or asks whether Amazon still owes or…

JasonColapietro/suede-creator-skills · 138 tokens

stripe-payments

Add Stripe payments to a web app — Checkout Sessions, Payment Intents, subscriptions, webhooks, customer portal, and pricing pages. Covers the decision of which Stripe API to use, produces working integration code, and handles webhook verification. No MCP server needed — uses Stripe npm package directly. Triggers…

jezweb/claude-skills · 101 tokens

software-payments

Designs production payment and billing systems. Use when implementing Stripe, Paddle, Adyen, subscriptions, tax, marketplaces, or mobile purchase flows.

vasilyu1983/AI-Agents-public · 33 tokens