gplay-rollout-management

Orchestrates staged rollouts and monitoring for Google Play app releases.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Releasing an Android app update to all users at once risks widespread crashes and negative reviews. This Skill guides gradual, percentage-based rollouts on Google Play so issues are caught early with limited user impact. ## Core Features & Use Cases - Staged Rollout Control: Start releases at a fraction of users, increase percentages, halt, resume, or complete rollouts using gplay CLI commands. - Monitoring & Decision Matrix: Check rollout status, filter recent and 1-star reviews, and apply crash-rate thresholds to decide whether to continue or halt. - Rollback & Automation: Handle hotfix releases, promote previous versions, and automate daily rollout increases via CI/CD workflows. - Use Case: You release version 2.0 to 10% of production users on day one, monitor crash rates and reviews for 24 hours, then progressively increase to 100% over a week using the conservative rollout strategy. ## Quick Start Ask the assistant to start a staged rollout of your app bundle to 10% of production users on Google Play and show how to monitor and increase it.

Frequently Asked Questions about gplay-rollout-management

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

FAQPage Schema
How do I start a staged rollout on Google Play from the command line?▼

Use gplay release with the --rollout flag, for example --rollout 0.1 to reach 10% of users. You can also promote from beta to production with gplay promote and a rollout fraction.

How to increase or halt a Google Play rollout percentage?▼

Run gplay rollout update with a new fraction like 0.25 or 0.5 to increase distribution. Use gplay rollout halt to pause distribution and gplay rollout resume to continue after fixing issues.

Can I rollback a bad release on Google Play?▼

Google Play does not support automatic rollback. You can either upload a hotfix build with a higher version code and release it to 100%, or promote a previous version still available on the beta track.

What crash rate should trigger halting a staged rollout?▼

The decision matrix recommends continuing when crash rate is below 1%, halting to investigate between 1-2%, and halting with possible rollback above 2%. Spikes in 1-star reviews or ANR rates also warrant a halt.

How do I monitor user reviews during a Google Play rollout?▼

Use gplay reviews list with --paginate and pipe through jq to filter recent reviews or isolate 1-star ratings. Combine this with Play Console Android vitals for crash rate monitoring.