Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

gpc-setupgpc 设置

Agent Skill

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

总安装

250

周安装

10

GitHub Stars

公开资料未说明

下载量

81
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yasserstudio/gpc-skills --skill gpc-setup

简介

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

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

SKILL.md

GPC Setup

When to use

Use this skill when the task involves:

  • Installing GPC (npm install -g @gpc-cli/cli or standalone binary)
  • Authenticating with Google Play Developer API (service account, OAuth, ADC)
  • Managing auth profiles (gpc auth profiles, gpc auth switch)
  • Configuring GPC (.gpcrc.json, env vars, gpc config init)
  • Diagnosing setup issues (gpc doctor)
  • Setting up GPC in a new project or CI environment

Inputs required

  • Whether this is local development or CI/CD setup
  • Auth method: service account JSON, OAuth, or Application Default Credentials
  • Package name of the Android app (e.g., com.example.app)
  • If CI: which CI platform (GitHub Actions, GitLab, etc.)

Procedure

0) Install GPC

Via npm (recommended):

npm install -g @gpc-cli/cli

Via npx (zero-install trial):

npx @gpc-cli/cli --version

Via standalone binary (no Node.js needed):

curl -fsSL https://raw.githubusercontent.com/yasserstudio/gpc/main/scripts/install.sh | bash

1) Authenticate

Three auth strategies, in order of recommendation:

A) Service Account (recommended for CI/CD)

New to Google Cloud or setting up for the first time? Use the interactive GCP setup guide:

gpc auth setup-gcp

This fully interactive wizard walks through every step required to connect GPC to the Play Developer API:

  1. Enabling the Google Play Developer API in your GCP project
  2. Creating a service account in the GCP Console
  3. Granting the service account access in Google Play Console (Settings → API access)
  4. Downloading the JSON key file to your machine
  5. Running gpc auth login with the downloaded key

No flags needed -- just run the command and follow the prompts. Ideal for first-time setup on any machine.

Already have a key file? Skip the wizard with --key:

gpc auth setup-gcp --key /path/to/service-account.json

This validates the JSON, authenticates, and saves to config in one step.

Once the wizard completes, or if you already have a key file:

gpc auth login --service-account path/to/key.json

Or via environment variable (preferred in CI):

export GPC_SERVICE_ACCOUNT=path/to/key.json
# or inline JSON:
export GPC_SERVICE_ACCOUNT='{"type":"service_account","project_id":"..."}'

Read:

  • references/service-account.md

B) OAuth (for local development)

Interactive OAuth device flow — no key file needed:

gpc auth login

Tokens are cached in the OS keychain (macOS Keychain, Linux libsecret) or file fallback.

C) Application Default Credentials (for GCP environments)

Works automatically in Cloud Build, Cloud Run, GKE — no configuration needed:

# ADC is auto-detected when no other auth is configured
gpc apps list

1b) One-command guided setup (v0.9.68+)

For new users or new machines, gpc setup is the fastest path to a working configuration:

gpc setup

This interactive wizard covers the full onboarding flow in a single command:

  1. Authenticates (service account, OAuth, or ADC — prompted interactively)
  2. Picks a default app from your Play Console (lists available apps)
  3. Writes .gpcrc.json with the chosen app, profile, and output format
  4. Installs shell completion for your current shell (bash/zsh/fish)
  5. Runs gpc doctor automatically to verify the result

CI/headless mode — skip all prompts with --auto:

gpc setup --auto

In --auto mode, gpc setup uses GPC_SERVICE_ACCOUNT + GPC_APP env vars and skips interactive steps. Ideal for bootstrapping a fresh CI runner from a single pipeline step.

2) Configure defaults

Interactive setup wizard:

gpc config init

Guided wizard that:

  1. Selects auth method (service-account / adc / skip)
  2. For service account: validates the file exists (retries if path is wrong)
  3. Prompts for default package name (warns if format is invalid)
  4. Writes .gpcrc.json and prints a post-init summary
  5. Ends with: Run \gpc doctor to verify your setup.

Manual config file (.gpcrc.json in project root or ~/.config/gpc/config.json):

{
  "app": "com.example.myapp",
  "output": "table",
  "profile": "default"
}

Environment variables:

VariableDescription
GPC_APPDefault package name
GPC_OUTPUTDefault output format (table/json/yaml/markdown/csv/tsv)
GPC_PROFILEAuth profile name
GPC_NO_COLORDisable color output
GPC_NO_INTERACTIVEDisable interactive prompts
GPC_SKIP_KEYCHAINSkip OS keychain, use file storage

Read:

  • references/configuration.md

3) Manage auth profiles

For managing multiple Google Play accounts:

gpc auth profiles              # List profiles
gpc auth switch production     # Switch active profile
gpc auth whoami                # Show current identity
gpc auth status                # Show auth state details

Use --profile flag to override per-command:

gpc apps list --profile staging

4) Verify setup

gpc doctor

Checks (20 total):

  • Node.js version (≥ 20)
  • Configuration loaded
  • Default app set and valid Android package name format
  • Authentication valid
  • API connectivity (googleapis.com + playdeveloperreporting.googleapis.com)
  • Proxy configuration (if set)
  • GPC version (suggests update if outdated)
  • HTTPS probe
  • App access verification
  • Service account key age
  • Unknown config keys
  • Token cache health
  • Disk space
  • CI detection
  • Developer verification status

Use gpc doctor --fix to auto-remediate fixable issues (version, auth, config keys).

JSON output is supported: gpc doctor --json or gpc doctor --output json.

5a) Check developer verification (v0.9.66+)

gpc verify              # Account-aware status with app info, signing enrollment, days until enforcement
gpc verify --open       # Open verification page in browser
gpc verify checklist    # Interactive 7-step readiness walkthrough (markdown report for CI)

Google's Android developer verification enforcement begins September 30, 2026 for BR, ID, SG, TH. gpc doctor includes this as check #20.

Signing key verification

gpc doctor --verify                                       # API-side signing cert check
gpc doctor --verify --keystore release.jks --store-pass x # Compare local keystore against API cert
gpc preflight signing                                     # Cert consistency across two most recent bundles

gpc doctor --verify pulls your app's signing certificate from Google Play via generatedApks and optionally compares it against a local keystore (requires keytool from JDK). gpc preflight signing compares certs across your two most recent bundle versions and exits 6 on mismatch (CI-friendly).

5b) Browse documentation from CLI (v0.9.64+ embedded docs)

Since v0.9.64, GPC ships 99 documentation pages embedded in the binary. No network required.

gpc docs list                     # List all 99 embedded topics
gpc docs show authentication      # Render a guide in the terminal (ANSI-formatted)
gpc docs show auth                # Fuzzy slug matching
gpc docs search "staged rollout"  # Full-text search across all pages
gpc docs init                     # Write GPC.md quick-reference into repo (for AI agents)
gpc docs web                      # Open docs site in browser (previous default behavior)

gpc docs show pipes through $PAGER for long pages. gpc docs list --json and gpc docs search --json for machine-readable output.

5) Network configuration (if needed)

For corporate proxies or custom CA certificates:

export HTTPS_PROXY=http://proxy.example.com:8080
export GPC_CA_CERT=/path/to/ca-bundle.crt

Retry configuration:

export GPC_MAX_RETRIES=3
export GPC_TIMEOUT=30000
export GPC_BASE_DELAY=1000
export GPC_MAX_DELAY=60000

Shell completion (v0.9.58+ walker, v0.9.60+ dynamic values)

GPC ships shell completion for bash, zsh, fish, and PowerShell. The completion tree is introspection-based (v0.9.58+) -- new commands and plugin-registered commands auto-complete without generator edits. Flags declared with .choices() surface their candidate list at TAB time.

# One-time setup (macOS/Linux)
gpc completion bash >> ~/.bash_completion      # or source in ~/.bashrc
gpc completion zsh  >> ~/.zshrc
gpc completion fish > ~/.config/fish/completions/gpc.fish

# Homebrew auto-installs completion files -- no eval step needed
brew install yasserstudio/tap/gpc

Dynamic values (v0.9.60+)

The completion scripts fill in live values for several flags at TAB time, backed by a hidden gpc __complete <ctx> subcommand. No API call -- reads your config and ~/.cache/gpc/status-*.json cache, returns in under 150ms cold.

FlagSource
--profileProfile names from ~/.config/gpc/config.json
--app / --appsPackage names from config + status cache
--trackTrack names for the current app (from status cache)

If your package/track completions are stale, run any command that touches gpc status (or gpc status directly) to refresh the cache.

Verification

  • gpc doctor shows all checks passing
  • gpc auth status shows authenticated identity
  • gpc apps list returns real app data
  • gpc config show displays resolved configuration

Failure modes / debugging

SymptomLikely CauseFix
AUTH_EXPIREDAccess token expiredgpc auth login to re-authenticate
AUTH_INVALIDWrong service account or missing permissionsCheck Google Play Console → Settings → API access
NETWORK_ERRORProxy or firewall blockingSet HTTPS_PROXY and/or GPC_CA_CERT
CONFIG_NOT_FOUNDNo config fileRun gpc config init or set GPC_APP env var
Doctor fails on "API connectivity"Service account not granted Play Console accessAdd service account in Play Console API access settings

Read:

  • references/troubleshooting.md

Escalation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.9%
按下载量换算31

Claude

31.25%
按下载量换算25

Cursor

18.39%
按下载量换算15

Gemini CLI

9.86%
按下载量换算8

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills