skills/app-store-review-intelligence/SKILL.md
# app-store-review-intelligence Fetch and analyze Apple App Store reviews deterministically — no LLM, no external dependencies, Python 3 stdlib only. ## Quick Start ```bash # 1. Resolve app ID from URL, name, or direct ID python3 scripts/resolve_app.py --url 'https://apps.apple.com/us/app/google/id284815942' --country us python3 scripts/resolve_app.py --query 'Google Search' --country us python3 scripts/resolve_app.py --id 284815942 --country us # 2. Fetch reviews (1-10 pages per country, de
npx skillsauth add kjaylee/misskim-skills skills/app-store-review-intelligenceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fetch and analyze Apple App Store reviews deterministically — no LLM, no external dependencies, Python 3 stdlib only.
# 1. Resolve app ID from URL, name, or direct ID
python3 scripts/resolve_app.py --url 'https://apps.apple.com/us/app/google/id284815942' --country us
python3 scripts/resolve_app.py --query 'Google Search' --country us
python3 scripts/resolve_app.py --id 284815942 --country us
# 2. Fetch reviews (1-10 pages per country, deduped)
python3 scripts/fetch_apple_reviews.py \
--app-id 284815942 \
--countries us,gb,ca \
--pages 3 \
--out /tmp/corpus.json
# Filter by rating
python3 scripts/fetch_apple_reviews.py --app-id 284815942 --min-rating 1 --max-rating 2 --out /tmp/low-corpus.json
# 3. Analyze (with optional competitor files)
python3 scripts/analyze_reviews.py \
--input /tmp/corpus.json \
--competitor tests/fixtures/competitor-a.json \
--competitor tests/fixtures/competitor-b.json \
--out-md /tmp/report.md \
--out-json /tmp/report.json
| Script | Purpose |
|--------|---------|
| scripts/resolve_app.py | Resolve app to numeric ID via URL / ID / search query |
| scripts/fetch_apple_reviews.py | Fetch reviews from Apple RSS (up to 10 pages/country) |
| scripts/analyze_reviews.py | Deterministic analysis: complaints, praise, feature requests, version regressions, competitor whitespace |
im:version metadata.urllib, json, collections, re, argparse, unittest)python3 -m unittest discover -s tests -p 'test_*.py' -v
Both fetch_apple_reviews.py output and the Apple RSS fixture are accepted by analyze_reviews.py.
{
"meta": { "app_id": "...", "total_reviews": 50 },
"reviews": [
{ "id": "...", "rating": 4, "title": "...", "body": "...",
"author": "...", "date": "YYYY-MM-DD", "version": "...", "country": "us" }
]
}
See references/output-template.md for the full report format.
testing
게임 아이디어를 검토해 와우 팩터 5개를 추가하고, 스펙→TC→구현→QA→런칭까지 한 번에 밀어붙이는 일일 게임 런칭 써클. 기존 자동 게임 파이프라인을 대체/승격할 때 사용.
data-ai
Advanced YouTube analysis, transcripts, and metadata extraction.
development
Modern web design engineering skills including design tokens, advanced UI/UX methodologies, accessibility, and game-specific UI patterns. Use for building commercial-grade, performant, and accessible web interfaces.
development
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".