
Gpd Ppp Pricing
- 32 installs
- 6 repo stars
- Updated July 3, 2026
- rudrankriyam/gpd-cli-skills
Helps with ai & agent building tasks.
About
gpd-ppp-pricing is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- gpd-ppp-pricing
- AI & Agent Building
- AI-coding skill
Gpd Ppp Pricing by the numbers
- 32 all-time installs (skills.sh)
- Ranked #9,101 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rudrankriyam/gpd-cli-skills --skill gpd-ppp-pricingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 32 |
|---|---|
| repo stars | ★ 6 |
| Last updated | July 3, 2026 |
| Repository | rudrankriyam/gpd-cli-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
PPP Pricing (Per-Region Pricing)
Use this skill to set different prices per region for subscriptions and one-time products.
Preconditions
- Ensure credentials are set (
GPD_SERVICE_ACCOUNT_KEY). - Use
--packageexplicitly. - Know target region codes and price micros.
Subscription base plan pricing
Migrate prices for a base plan
gpd monetization baseplans migrate-prices --package com.example.app sub123 plan456 --region-code US --price-micros 9990000Batch migrate prices
gpd monetization baseplans batch-migrate-prices --package com.example.app sub123 --file migrate.jsonExample migrate.json:
{
"requests": [
{
"basePlanId": "plan456",
"regionalPriceMigrations": [
{
"regionCode": "US",
"priceMicros": 9990000
}
]
}
],
"regionsVersion": {
"version": "2024-01-01"
}
}One-time products pricing
gpd monetization onetimeproducts create --package com.example.app --product-id sku123 --type consumable
gpd monetization onetimeproducts update --package com.example.app sku123 --default-price 1990000Offers and regional variants
gpd monetization offers list --package com.example.app sub123 plan456
gpd monetization offers create --package com.example.app sub123 plan456 --offer-id offer789 --file offer.json
gpd monetization offers batchUpdate --package com.example.app sub123 plan456 --file offers.jsonVerify current pricing
gpd monetization subscriptions get sub123 --package com.example.app
gpd monetization baseplans batch-update-states --package com.example.app sub123 --file states.jsonNotes
- Use
priceMicrosvalues to avoid rounding errors. - Keep region codes consistent (for example:
US,GB,IN,BR). - Use batch files for large region sets to avoid partial updates.
Related skills
AI & Agent Buildingagents