gplay-review-management

Monitor, filter, and reply to Google Play user reviews using the gplay CLI.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Google Play user reviews manually through the Play Console is slow and hard to automate, making it difficult to track negative feedback, respond to users promptly, and analyze review trends at scale. ## Core Features & Use Cases - Review Listing and Filtering: List reviews with pagination and filter by rating, date, language, or keywords using jq pipelines. - Automated Replies: Reply to individual reviews or run scripts that automatically respond to unreplied 1-star reviews. - Review Analytics and Monitoring: Compute rating distributions, average ratings, common keywords, and build cron-based daily checks or dashboards for unreplied negative reviews. - Use Case: A developer runs a daily cron job that detects unreplied 1-star and 2-star reviews and sends a notification, then uses the reply command to respond to each one with a support contact message. ## Quick Start List all reviews for my app com.example.app and show me the unreplied 1-star reviews so I can respond to them.

Frequently Asked Questions about gplay-review-management

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

FAQPage Schema
How do I list and filter Google Play reviews from the command line?▼

Use gplay reviews list with your package name, then pipe the JSON output to jq to filter by rating, date, language, or keywords. Add the --paginate flag to retrieve all reviews across pages.

How to automatically reply to 1-star Google Play reviews?▼

List reviews with gplay, filter for rating 1 with only one comment using jq, then loop through the review IDs and call gplay reviews reply with your response text. The skill provides a complete bash script for this workflow.

Can I get Google Play reviews translated to English?▼

Yes, pass the --translation-language flag such as en-US to gplay reviews list to receive review text machine-translated by Google instead of the original language.

How do I calculate average rating from Google Play reviews?▼

List all reviews with --paginate and pipe to jq with the expression [.reviews[].rating] | add / length to compute the average. You can also group ratings to build a distribution.

How to monitor Google Play reviews on a schedule?▼

Create a shell script that counts unreplied negative reviews with gplay and jq, then register it in crontab for daily execution. The script can trigger notifications when unreplied 1-star or 2-star reviews exceed zero.