dl-alexandre/skills

gpd-id-resolver

Resolve Google Play identifiers (package, tracks, version codes, products, subscriptions) using gpd. Use when commands require IDs or exact values.

First seen Mar 10, 2026

Installation

$ npx skills add dl-alexandre/skills --skill gpd-id-resolver

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dl-alexandre/skills · top by installs.

npx skills add dl-alexandre/skills

Browse all from dl-alexandre/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch master
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,847 B
  • docs SUMMARY.md 170 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 31 installs

SKILL.md

GPD ID Resolver

Use this skill to map names to IDs needed by other gpd commands.

Package name (app ID)

  • Package name is the primary identifier: com.example.app.
  • Always pass --package explicitly for deterministic results.

Track names

  • Common tracks: internal, alpha, beta, production.
  • List tracks:

- gpd publish tracks --package com.example.app

Version codes and release status

  • Use release status to find version codes on a track:

- gpd publish status --package com.example.app --track production

Tester groups

  • List testers by track:

- gpd publish testers list --package com.example.app --track internal

Monetization IDs

  • Products:

- gpd monetization products list --package com.example.app - gpd monetization products get sku123 --package com.example.app

  • One-time products:

- gpd monetization onetimeproducts list --package com.example.app

  • Subscriptions:

- gpd monetization subscriptions list --package com.example.app - gpd monetization subscriptions get sub123 --package com.example.app

  • Base plans and offers:

- gpd monetization baseplans migrate-prices --package com.example.app sub123 plan456 --region-code US --price-micros 9990000 - gpd monetization offers list --package com.example.app sub123 plan456

Permissions IDs

  • Developer users:

- gpd permissions users list --developer-id DEV_ID

  • App grants:

- gpd permissions grants create --package com.example.app --email [email protected] --app-permissions CANREPLYTO_REVIEWS

Output tips

  • JSON is default; use --pretty for debugging.
  • Use --all on list commands to avoid missing items.