Agent skill · Testing & QA

android-playstore-api-validation

Create and run validation script to test Play Store API connection

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill android-playstore-api-validation-hitoshura25-claude-devtools-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/api/android-playstore-api-validation-hitoshura25-claude-devtools-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Android Play Store API Validation Creates a validation script to test Play Store API connection and permissions. ## Prerequisites - Service account created (run `android-service-account-guide` first) - Service account JSON file downloaded - Python 3 installed - Package name known ## Inputs | Input | Required | Default | Description | |-------|----------|---------|-------------| | service_account_json_path | Yes | - | Path to JSON key file | | package_name | Yes | - | App package name | ## Process ### Step 1: Create Validation Script Create `scripts/validate-playstore.py`: ```python #!/usr/bin/env python3 """ Validate Google Play Store API connection and permissions. Usage: python3 validate-playstore.py SERVICE_ACCOUNT.json com.example.app """ import sys import json from pathlib import Path def validate_json_file(json_path): """Validate service account JSON file.""" print(f"📋 Validating service account JSON: {json_path}") if not Path(json_path).exists(): print(f"❌ File not found: {json_path}") return False try: with open(json_path, 'r') as f: data = json.load(f) required_fields = ['type', 'project_id', 'private_key', 'client_email'] missing = [f for f in required_fields if f not

What's inside
Steps it walks through
  1. Prerequisites
  2. Inputs
  3. Process
  4. Step 1: Create Validation Script
  5. Step 2: Make Script Executable
  6. Step 3: Create Requirements File
  7. Step 4: Create Validation Documentation
  8. Outputs
  9. Troubleshooting
  10. "Package not found"
  11. "Permission denied"
  12. "Libraries not installed"
  13. "403 Forbidden"
  14. Completion Criteria
Ships with 1 file
  • metadata.json
Commands it runs
chmod +x scripts/validate-playstore.py
More from claude-skill-registry
All skills →
About this skill
What does the android-playstore-api-validation skill do?

Create and run validation script to test Play Store API connection

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill android-playstore-api-validation-hitoshura25-claude-devtools-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going