dl-alexandre/skills

gpd-metadata-sync

Sync and validate Google Play metadata, listings, and assets with gpd, including Fastlane-style workflows. Use when updating store listings or translations.

First seen Mar 10, 2026

Installation

$ npx skills add dl-alexandre/skills --skill gpd-metadata-sync

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dl-alexandre/skills · top by installs.

npx skills add dl-alexandre/skills

Browse all from dl-alexandre/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch master
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,163 B
  • docs SUMMARY.md 181 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 30 installs

SKILL.md

GPD Metadata Sync

Use this skill to keep local metadata in sync with Google Play.

Store listing fields

gpd publish listing get --package com.example.app
gpd publish listing update --package com.example.app --locale en-US --title "My App"
gpd publish details get --package com.example.app
gpd publish details update --package com.example.app --contact-email [email protected]

Images and assets

gpd publish images list phoneScreenshots --package com.example.app --locale en-US
gpd publish images upload icon icon.png --package com.example.app --locale en-US
gpd publish images delete phoneScreenshots IMAGE_ID --package com.example.app --locale en-US
gpd publish images deleteall featureGraphic --package com.example.app --locale en-US
gpd publish assets upload ./assets --package com.example.app
gpd publish assets spec

Fastlane metadata workflow

Export current state

gpd migrate fastlane export --package com.example.app --output fastlane/metadata/android

Validate local files

gpd migrate fastlane validate --dir fastlane/metadata/android

Import updates

gpd migrate fastlane import --package com.example.app --dir fastlane/metadata/android

Import with options

gpd migrate fastlane import --package com.example.app --dir fastlane/metadata/android --replace-images
gpd migrate fastlane import --package com.example.app --dir fastlane/metadata/android --skip-images --dry-run

Multi-language workflow

  1. Export localizations:
gpd migrate fastlane export --package com.example.app --output fastlane/metadata/android
  1. Translate files in fastlane/metadata/android.
  1. Import all at once:
gpd migrate fastlane import --package com.example.app --dir fastlane/metadata/android

Notes

  • Use gpd migrate fastlane validate before import to catch missing fields.
  • Use --dry-run when available before overwriting assets.