gpc-review-management
Review Management
Use this skill when listing reviews, filtering by rating, or replying to user feedback.
List reviews
gpc reviews list --package com.example.app
gpc reviews list --max-results 50 --package com.example.app
Filter by rating
gpc reviews list --min-rating 1 --max-rating 2 --package com.example.app # Negative reviews
gpc reviews list --min-rating 4 --max-rating 5 --package com.example.app # Positive reviews
With translation
gpc reviews list --translation-lang en --package com.example.app
Paginate
gpc reviews list --max-results 20 --start-index 0 --package com.example.app
gpc reviews list --max-results 20 --start-index 20 --package com.example.app
Get specific review
gpc reviews get --review-id abc123 --package com.example.app
gpc reviews get --review-id abc123 --translation-lang en --package com.example.app
Reply to review
gpc reviews reply --review-id abc123 --text "Thank you for your feedback!" --package com.example.app
Review triage workflow
- List low-rated reviews:
gpc reviews list --min-rating 1 --max-rating 3 --translation-lang en --package com.example.app -o table
- Inspect specific reviews:
gpc reviews get --review-id $REVIEW_ID --package com.example.app
- Reply to each:
gpc reviews reply --review-id $REVIEW_ID --text "We're sorry about this issue. We've fixed it in the latest update." --package com.example.app
Agent behavior
- Show reviews in table format for readability.
- Draft reply text and show to user before sending.
- Never auto-reply to reviews without user approval.
- Use
--translation-lang enwhen reviews may be in other languages.
Notes
- Only the latest developer reply is visible on the store.
- Replying to a review replaces any previous reply.
- Google Play may auto-translate replies for users in other locales.
More from androidpoet/playconsole-cli-skills
gpc-cli-usage
Guidance for using the Play Console CLI (gpc) — flags, output formats, auth profiles, pagination, and safety conventions. Use when asked to run or design gpc commands.
12gpc-monetization
Manage in-app products, subscriptions, base plans, and subscription offers using gpc. Use when creating or updating monetization catalog.
12gpc-metadata-sync
Sync and manage Google Play store listings, images, and screenshots using gpc. Use when updating store metadata, uploading screenshots, or syncing from local directories.
12gpc-testing
Manage beta testing, internal test builds, tester groups, and internal app sharing using gpc. Use when setting up or managing testing workflows.
9gpc-release-flow
End-to-end release workflows for Google Play — upload bundles, manage tracks, staged rollouts, promotions, and halts. Use when uploading builds or managing releases.
9gpc-build-lifecycle
Manage Android app bundles, APKs, build processing, and debug symbol uploads using gpc. Use when uploading builds, checking build status, or uploading ProGuard mappings.
9