gplay-cli-usage

Guidance for using the Google Play Console CLI in this repo (flags, output formats, pagination, auth, and discovery). Use when asked to run or design gplay commands or interact with Google Play Console via the CLI.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "gplay-cli-usage" with this command: npx skills add tamtom/gplay-cli-skills/tamtom-gplay-cli-skills-gplay-cli-usage

Google Play CLI usage

Use this skill when you need to run or design gplay commands for Google Play Console.

Command discovery

  • Always use --help to discover commands and flags.
    • gplay --help
    • gplay tracks --help
    • gplay tracks list --help

Available commands

CommandDescription
gplay authAuthentication and profile management
gplay appsList and manage apps in the developer account
gplay initInitialize a project with default config
gplay releaseHigh-level release workflow
gplay promotePromote releases between tracks
gplay rolloutManage staged rollouts
gplay tracksTrack management
gplay bundlesBundle (AAB) management
gplay editsEdit session management
gplay listingsStore listing management
gplay imagesScreenshot and image management
gplay syncMetadata sync (import/export)
gplay validateOffline validation of metadata
gplay vitalsApp vitals monitoring (crashes, performance, errors)
gplay usersUser management for developer account
gplay grantsApp-level permission grants
gplay reportsFinancial and statistics reports (list/download from GCS)
gplay docs generateGenerate CLI documentation
gplay migrateMigration tools (e.g., from Fastlane)
gplay notifySend notifications (e.g., Slack, webhook)
gplay updateSelf-update the CLI binary

Flag conventions

  • Use explicit long flags (e.g., --package, --output).
  • No interactive prompts; destructive operations require --confirm.
  • Use --paginate when the user wants all pages.
  • Use --dry-run to preview changes without executing them (supported by release, migrate, and other write commands).

Output formats

  • Default output is minified JSON.
  • Use --output table or --output markdown only for human-readable output.
  • --pretty is only valid with JSON output.
  • Set GPLAY_DEFAULT_OUTPUT environment variable to change the default output format (e.g., GPLAY_DEFAULT_OUTPUT=table).

Authentication and defaults

  • Prefer service account auth via gplay auth login --service-account /path/to/sa.json.
  • Fallback env vars: GPLAY_SERVICE_ACCOUNT, GPLAY_PACKAGE.
  • GPLAY_PACKAGE can provide a default package name.

Timeouts

  • GPLAY_TIMEOUT / GPLAY_TIMEOUT_SECONDS control request timeouts.
  • GPLAY_UPLOAD_TIMEOUT / GPLAY_UPLOAD_TIMEOUT_SECONDS control upload timeouts.

Environment Variables

VariablePurpose
GPLAY_SERVICE_ACCOUNTPath to service account JSON
GPLAY_PACKAGEDefault package name
GPLAY_PROFILEActive profile name
GPLAY_TIMEOUTRequest timeout (e.g., 90s, 2m)
GPLAY_TIMEOUT_SECONDSTimeout in seconds (alternative)
GPLAY_UPLOAD_TIMEOUTUpload timeout (e.g., 5m, 10m)
GPLAY_DEBUGEnable debug logging (set to api for HTTP requests)
GPLAY_NO_UPDATEDisable update checks
GPLAY_MAX_RETRIESMax retries for failed requests (default: 3)
GPLAY_RETRY_DELAYBase delay between retries (default: 1s)
GPLAY_DEFAULT_OUTPUTDefault output format (json, table, markdown)

Common patterns

List with pagination

gplay tracks list --package com.example.app --paginate

Parse JSON output with jq

gplay tracks list --package com.example.app | jq '.tracks[] | select(.track == "production")'

Use profiles

gplay auth add-profile production --service-account /path/to/prod-sa.json
gplay auth use-profile production
gplay --profile production tracks list --package com.example.app

Debug mode

GPLAY_DEBUG=1 gplay tracks list --package com.example.app
GPLAY_DEBUG=api gplay tracks list --package com.example.app  # HTTP details

Dry run (preview changes)

gplay release --package com.example.app --track beta --bundle app.aab --dry-run
gplay migrate fastlane --source ./fastlane/metadata/android --output-dir ./metadata --dry-run

Initialize a project

gplay init --package com.example.app --service-account /path/to/sa.json

List apps in developer account

gplay apps list --developer-id 1234567890
gplay apps list --developer-id 1234567890 --output table

Generate CLI documentation

gplay docs generate --format markdown --output-dir ./docs

Self-update

gplay update
gplay update --check  # Check for updates without installing

Financial reports

gplay reports financial list --developer <id>
gplay reports financial list --developer <id> --type earnings --from 2026-01 --to 2026-06
gplay reports financial download --developer <id> --from 2026-01 --type earnings --dir ./reports

Statistics reports

gplay reports stats list --developer <id>
gplay reports stats list --developer <id> --package com.example.app --type installs
gplay reports stats download --developer <id> --package com.example.app --from 2026-01 --type installs --dir ./reports

Send notifications

gplay notify --webhook https://hooks.slack.com/... --message "Release deployed"

Edit sessions

Most write operations require an edit session:

# Create edit
gplay edits create --package com.example.app
# Returns: edit_id

# Make changes
gplay bundles upload --package com.example.app --edit <edit_id> --file app.aab

# Commit changes (publishes)
gplay edits commit --package com.example.app --edit <edit_id>

High-level vs manual commands

  • High-level: gplay release (creates edit, uploads, commits)
  • Manual: gplay edits creategplay bundles uploadgplay edits commit

Use high-level for simplicity, manual for fine-grained control.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

gplay-gradle-build

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

gplay-iap-setup

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

gplay-purchase-verification

No summary provided by upstream source.

Repository SourceNeeds Review