$gpc install-skills
--json
Install GPC agent skills for AI-assisted Google Play workflows.
usage
gpc install-skills [options]Synopsis
bash
gpc install-skills [options]1
Options
| Option | Description |
|---|---|
-l, --list | List available skills without installing |
-y, --yes | Skip confirmation prompts |
-g, --global | Install skills globally (user-level) instead of project-level |
--all | Install all skills to all agents without prompts |
--repo <repo> | Custom skills repository (default: yasserstudio/gpc-skills) |
Examples
Interactive installation (recommended)
bash
gpc install-skills1
The wizard walks you through:
- Cloning the skills repository
- Selecting which skills to install (15 available)
- Choosing target agents (Claude Code, Cursor, Copilot, etc.)
- Selecting installation scope (global or project)
- Security risk assessment review
- Confirmation and installation
List available skills
bash
gpc install-skills --list1
Install everything, no prompts
bash
gpc install-skills --all1
Global install with auto-confirm
bash
gpc install-skills -g -y1
Available Skills
| Skill | Description |
|---|---|
gpc-setup | Auth, config, profiles, gpc doctor |
gpc-onboarding | First-run setup, gpc quickstart, interactive auth wizard |
gpc-release-flow | Upload, releases, rollouts, promote |
gpc-train | Automated staged rollout pipeline with gates |
gpc-metadata-sync | Store listings, images, Fastlane compat |
gpc-vitals-monitoring | Crashes, ANR, reviews, reports |
gpc-ci-integration | GitHub Actions, GitLab CI, exit codes |
gpc-monetization | Subscriptions, IAP, offers, pricing, analytics |
gpc-user-management | Users, permissions, grants, testers |
gpc-migrate-fastlane | Fastlane-to-GPC migration |
gpc-plugin-development | Plugin SDK, hooks, permissions |
gpc-troubleshooting | Exit codes, error catalog, debug |
gpc-sdk-usage | @gpc-cli/api and @gpc-cli/auth as SDK |
gpc-multi-app | Multiple apps, profiles, batch ops |
gpc-security | Credential storage, rotation, audit |
How Skills Work
Skills are structured guides installed to .agents/skills/ that teach AI coding assistants how to use GPC. They are not plugins — they don't modify CLI behavior. Instead, they provide context and procedures that AI assistants follow when helping you with Google Play tasks.
Each skill contains:
SKILL.md— instructions and proceduresreferences/— detailed documentation for specific topicsscripts/— detection scripts for environment checksevals/— test cases for skill quality
Related
- Agent Skills guide — full documentation on skills
- Plugin Development — extend GPC with plugins
- gpc-skills repository
