gplay-cli-usage

Guides construction and execution of gplay CLI commands for Google Play Console operations.

Updated Mar 25, 2026
One-click install
npx skills add https://github.com/lettucebo/Skills --skill gplay-cli-usage-lettucebo
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: gplay-cli-usage
Source: https://github.com/lettucebo/Skills/tree/main/skills/google-play-console-cli/gplay-cli-usage
Command: npx skills add https://github.com/lettucebo/Skills --skill gplay-cli-usage-lettucebo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Working with the Google Play Console CLI requires knowing dozens of commands, flags, output formats, and authentication options. This Skill provides the operational knowledge to correctly run or design gplay commands without trial and error. ## Core Features & Use Cases - Command Discovery & Reference: Covers the full gplay command surface including tracks, bundles, edits, listings, rollout, vitals, reports, and notify. - Auth, Output & Environment Configuration: Explains service account login, profiles, JSON/table/markdown output formats, pagination, dry-run mode, and all GPLAY_* environment variables. - Use Case: You need to promote a release from beta to production. The Skill guides you to use gplay promote or the manual edit-session flow (edits create → bundles upload → edits commit) with the correct flags and a --dry-run preview first. ## Quick Start Ask the AI to list all release tracks for your app using the gplay CLI with JSON output and pagination enabled.

Frequently Asked Questions about gplay-cli-usage

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I release an Android app using the gplay CLI?▼

Use the high-level `gplay release` command with --package, --track, and --bundle flags to create an edit, upload the AAB, and commit in one step. For fine-grained control, run `gplay edits create`, `gplay bundles upload`, then `gplay edits commit` manually.

How do I authenticate gplay CLI with Google Play Console?▼

Authenticate with a service account using `gplay auth login --service-account /path/to/sa.json`. You can also set the GPLAY_SERVICE_ACCOUNT environment variable as a fallback, and use named profiles via `gplay auth login --profile` to switch between accounts.

Can I preview gplay CLI changes before publishing?▼

Yes, use the --dry-run flag on write commands like `gplay release` and `gplay migrate` to preview changes without executing them. Destructive operations additionally require the --confirm flag, and no interactive prompts are used.

How do I download Google Play financial reports with gplay?▼

Use `gplay reports financial list --bucket-id <id>` to list reports and `gplay reports financial download` with --from, --type, and --dir to save them. The bucket ID comes from Play Console under Download reports > Copy Cloud Storage URI.

Why is my gplay CLI output hard to read?▼

Default output is minified JSON, intended for parsing with tools like jq. Add --output table or --output markdown for human-readable output, or set GPLAY_DEFAULT_OUTPUT=table to change the default format.