Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

gplay-reports-downloadgplay 报告下载

Agent Skill

gplay-reports-download 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,797

周安装

72

GitHub Stars

33

下载量

582
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gplay-reports-download(gplay 报告下载)
来源仓库:https://github.com/tamtom/gplay-cli-skills
仓库路径:skills/gplay-reports-download
安装命令:
npx skills add https://github.com/tamtom/gplay-cli-skills --skill gplay-reports-download
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tamtom/gplay-cli-skills --skill gplay-reports-download

简介

用于查找、检索和筛选相关信息。gplay-reports-download 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 支持在 Codex、Claude、Cursor、Gemini CLI 中使用。
  • 通过 npx skills add 命令从 GitHub 仓库安装。
  • 安装前需确认权限范围和是否触发文件读写。

SKILL.md

Google Play Reports Download

Use this skill when you need to list or download financial reports (earnings, sales, payouts) or statistics reports (installs, ratings, crashes, store performance, subscriptions) from Google Play Console.

How reports work

Google Play Console reports are not available via the REST API. They are stored as CSV/ZIP files in Google Cloud Storage (GCS) buckets:

  • Bucket name: varies by account — either pubsite_prod_rev_<id> or pubsite_prod_<id>. Always copy the exact URI from Play Console.
  • Financial reports: earnings/, sales/, payouts/, play_balance_krw/, wht_statements/ prefixes
  • Statistics reports: stats/installs/, stats/ratings/, stats/crashes/, stats/store_performance/, financial-stats/subscriptions/ prefixes

The service account must have access to the GCS bucket (this access is granted automatically when the service account is added to Play Console with appropriate permissions).

Prerequisites

  • A service account configured via gplay auth login
  • The GCS bucket ID (see below — this is not the same as the Play Console URL developer ID)
  • For financial reports: VIEW_FINANCIAL_DATA permission (service account must be added to Play Console with "View financial data" access)
  • For stats reports: VIEW_APP_INFORMATION permission (service account must be added to Play Console with "View app information" access)

Finding your bucket ID

Important: The bucket ID for reports is not the numeric ID in your Play Console URL. The URL ID and the GCS bucket ID are different.

To find the correct bucket ID:

  1. Go to Google Play Console > Download reports (in the left sidebar under "Download reports")
  2. Look for the Cloud Storage URI shown on that page, e.g.: gs://pubsite_prod_rev_12110000881713004121/
  3. You can pass either the full URI or just the numeric ID: 12110000881713004121

Alternatively, use the Google Cloud Console to find the bucket name associated with your Play Console account.

Common mistake: Using the developer ID from the Play Console URL (https://play.google.com/console/developers/<this_id>/...) will result in a 404 Not Found error because the GCS bucket uses a different internal ID.

Financial reports

List available financial reports

# List all financial reports
gplay reports financial list --bucket-id <id>

# You can also pass the full GCS URI
gplay reports financial list --bucket-id "gs://pubsite_prod_rev_12345/"

# Filter by type
gplay reports financial list --bucket-id <id> --type earnings
gplay reports financial list --bucket-id <id> --type sales
gplay reports financial list --bucket-id <id> --type payouts

# Filter by date range
gplay reports financial list --bucket-id <id> --from 2026-01 --to 2026-06

# Combine filters
gplay reports financial list --bucket-id <id> --type earnings --from 2026-01 --to 2026-03

Download financial reports

# Download earnings for a specific month
gplay reports financial download --bucket-id <id> --from 2026-01 --type earnings

# Download to a specific directory
gplay reports financial download --bucket-id <id> --from 2026-01 --type earnings --dir ./reports

# Download a range of months
gplay reports financial download --bucket-id <id> --from 2026-01 --to 2026-06 --type sales

Financial report types

TypeDescriptionFilename pattern
earningsRevenue and earnings dataearnings/earnings_YYYYMM_<id>.zip
salesSales transaction reportssales/salesreport_YYYYMM.zip
payoutsPayment disbursement reportspayouts/payout_YYYYMM.csv
play_balancePlay balance reports (KRW)play_balance_krw/...
wht_statementsWithholding tax statementswht_statements/...

Statistics reports

List available statistics reports

# List all stats reports
gplay reports stats list --bucket-id <id>

# Filter by package name
gplay reports stats list --bucket-id <id> --package com.example.app

# Filter by type
gplay reports stats list --bucket-id <id> --type installs

# Filter by date range and package
gplay reports stats list --bucket-id <id> --package com.example.app --type installs --from 2026-01 --to 2026-06

Download statistics reports

# Download installs report
gplay reports stats download --bucket-id <id> --package com.example.app --from 2026-01 --type installs

# Download to a specific directory
gplay reports stats download --bucket-id <id> --package com.example.app --from 2026-01 --type crashes --dir ./reports

# Download a range of months
gplay reports stats download --bucket-id <id> --package com.example.app --from 2026-01 --to 2026-06 --type ratings

Statistics report types

TypeDescriptionFilename pattern
installsInstall/uninstall datastats/installs/installs_<pkg>_YYYYMM_overview.csv
ratingsRating distributionstats/ratings/ratings_<pkg>_YYYYMM_overview.csv
crashesCrash occurrence datastats/crashes/crashes_<pkg>_YYYYMM_overview.csv
store_performanceStore listing performancestats/store_performance/...
subscriptionsSubscription metricsfinancial-stats/subscriptions/...

Flags reference

Financial commands

FlagRequiredDescription
--bucket-idYesGCS bucket ID or full URI
--typeNo (list: default all) / Yes (download)Report type: earnings, sales, payouts, play_balance, wht_statements, all
--fromNo (list) / Yes (download)Start month YYYY-MM
--toNoEnd month YYYY-MM (defaults to --from)
--dirNoOutput directory (default .)
--outputNoOutput format: json, table, markdown
--prettyNoPretty-print JSON output

Stats commands

FlagRequiredDescription
--bucket-idYesGCS bucket ID or full URI
--packageNo (list) / Yes (download)Package name filter
--typeNo (list: default all) / Yes (download)Stats type: installs, ratings, crashes, store_performance, subscriptions, all
--fromNo (list) / Yes (download)Start month YYYY-MM
--toNoEnd month YYYY-MM (defaults to --from)
--dirNoOutput directory (default .)
--outputNoOutput format: json, table, markdown
--prettyNoPretty-print JSON output

Output format

List output

{
  "bucket": "pubsite_prod_rev_12345",
  "reports": [
    {"name": "earnings/earnings_202601_12345.zip", "size": 1234, "updated": "2026-02-01T00:00:00Z"}
  ]
}

Download output

{
  "bucket": "pubsite_prod_rev_12345",
  "type": "earnings",
  "from": "2026-01",
  "to": "2026-01",
  "dir": "./reports",
  "files": [
    {"name": "earnings/earnings_202601_12345.zip", "path": "reports/earnings_202601_12345.zip", "size": 1234}
  ]
}

Common workflows

Monthly financial review

# List last month's earnings
gplay reports financial list --bucket-id <id> --type earnings --from 2026-01 --output table

# Download all financial reports for Q1
gplay reports financial download --bucket-id <id> --from 2026-01 --to 2026-03 --type earnings --dir ./q1-reports

App performance monitoring

# Check install trends
gplay reports stats list --bucket-id <id> --package com.example.app --type installs --from 2026-01

# Download crash data for analysis
gplay reports stats download --bucket-id <id> --package com.example.app --from 2026-01 --type crashes --dir ./crash-data

CI/CD automated report collection

# Download all report types for archival
for type in earnings sales payouts; do
  gplay reports financial download --bucket-id $BUCKET_ID --from $(date -d "last month" +%Y-%m) --type $type --dir ./monthly-reports
done

Troubleshooting

ErrorCauseFix
authentication failedService account not configuredRun gplay auth login --service-account <path>
403 ForbiddenNo GCS bucket accessEnsure service account is invited in Play Console with appropriate permissions
404 Not FoundWrong bucket ID or no reportsUse the bucket ID from Play Console > Download reports > Copy Cloud Storage URI (not the developer ID from the URL)
Empty reports listNo reports for the date rangeCheck --from/--to range; reports may not exist for all months

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.1%
按下载量换算216

Claude

32.71%
按下载量换算190

Cursor

17.74%
按下载量换算103

Gemini CLI

8.73%
按下载量换算51

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills