android-playstore-api-validation
Create and run validation script to test Play Store API connection
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Prerequisites
- Inputs
- Process
- Step 1: Create Validation Script
- Step 2: Make Script Executable
- Step 3: Create Requirements File
- Step 4: Create Validation Documentation
- Outputs
- Troubleshooting
- "Package not found"
- "Permission denied"
- "Libraries not installed"
- "403 Forbidden"
- Completion Criteria
chmod +x scripts/validate-playstore.py
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.
