Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

app-store-scraper应用商店抓取工具

Agent Skill

app-store-scraper 用于处理浏览器自动化、网页检查和页面信息提取,适合在 Codex、Claude、Cursor、Gemini CLI 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

456

周安装

19

GitHub Stars

17

下载量

152
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:app-store-scraper(应用商店抓取工具)
来源仓库:https://github.com/mintuz/claude-plugins
仓库路径:skills/app-store-scraper
安装命令:
npx skills add https://github.com/mintuz/claude-plugins --skill app-store-scraper
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mintuz/claude-plugins --skill app-store-scraper

简介

用于从 Apple App Store 和 iTunes API 获取结构化数据,支持应用信息检索与 JSON 格式分析。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速查询应用详情、评分或元数据。
  • 通过 curl 和 jq 工具链实现,需确认 API 调用频率与数据范围限制。
  • 安装前建议检查仓库维护状态及是否涉及敏感数据抓取。
  • 使用时需注意遵守 Apple API 使用条款,避免高频请求导致访问受限。

SKILL.md

App Store Scraper

Comprehensive toolkit for retrieving structured data from Apple's App Store and iTunes APIs using curl and jq. All endpoints return JSON that can be parsed and formatted for analysis.

Quick Start

Tools Required:

  • curl for HTTP requests
  • jq for JSON parsing and formatting

Example:

# Get app details
curl -s "https://itunes.apple.com/lookup?id=553834731&entity=software" | \
  jq '.results[0] | {name: .trackName, rating: .averageUserRating}'

Decision Trees

Use these decision trees to quickly find the right endpoint for your needs.

🎯 Decision Tree 1: What Data Do You Need?

What information do you need?
│
├─ App Metadata (name, price, developer, description)
│  ├─ I know the app ID → [App Lookup](endpoints/app-lookup.md)
│  ├─ I know the bundle ID → [App Lookup](endpoints/app-lookup.md)
│  └─ I need to search by keyword → [App Search](endpoints/search.md)
│
├─ App Discovery
│  ├─ Browse top apps or categories → [App Lists/Feeds](endpoints/lists.md)
│  ├─ Search by keyword → [App Search](endpoints/search.md)
│  ├─ Find all apps by a developer → [Developer Apps](endpoints/developer.md)
│  ├─ Get search suggestions → [Search Suggestions](endpoints/suggestions.md)
│  └─ Find similar apps → [Similar Apps](endpoints/similar.md)
│
└─ User Feedback
   ├─ Read user reviews → [Reviews](endpoints/reviews.md)
   └─ Get rating distribution (1-5 stars) → [Ratings Histogram](endpoints/ratings.md)

🔍 Decision Tree 2: How Do You Identify the App?

How do you identify the app?
│
├─ I have the numeric app ID (e.g., 553834731)
│  ├─ Get app details → [App Lookup](endpoints/app-lookup.md)
│  ├─ Get reviews → [Reviews](endpoints/reviews.md)
│  ├─ Get ratings breakdown → [Ratings Histogram](endpoints/ratings.md)
│  └─ Find similar apps → [Similar Apps](endpoints/similar.md)
│
├─ I have the bundle ID (e.g., com.apple.Numbers)
│  └─ Get app details → [App Lookup](endpoints/app-lookup.md)
│
├─ I have the developer ID
│  └─ Get all apps by developer → [Developer Apps](endpoints/developer.md)
│
├─ I only know the app name
│  └─ Search by keyword → [App Search](endpoints/search.md)
│
└─ I want to explore
   ├─ Browse by category → [App Lists/Feeds](endpoints/lists.md)
   └─ Get search suggestions → [Search Suggestions](endpoints/suggestions.md)

📊 Decision Tree 3: What Action Do You Want to Perform?

What do you want to do?
│
├─ Analyze a Specific App
│  ├─ Get comprehensive metadata → [App Lookup](endpoints/app-lookup.md)
│  ├─ Read user feedback → [Reviews](endpoints/reviews.md)
│  ├─ Analyze rating distribution → [Ratings Histogram](endpoints/ratings.md)
│  └─ Find competitors/alternatives → [Similar Apps](endpoints/similar.md)
│
├─ Market Research
│  ├─ Track top apps in categories → [App Lists/Feeds](endpoints/lists.md)
│  ├─ Analyze developer portfolios → [Developer Apps](endpoints/developer.md)
│  └─ Search by keyword/category → [App Search](endpoints/search.md)
│
└─ Monitor Changes
   ├─ Track rating changes → [Ratings Histogram](endpoints/ratings.md)
   ├─ Monitor new reviews → [Reviews](endpoints/reviews.md)
   └─ Watch top charts → [App Lists/Feeds](endpoints/lists.md)

🌍 Decision Tree 4: Regional & Multi-App Queries

Do you need region-specific or multi-app data?
│
├─ Multi-Region Analysis
│  ├─ Compare ratings across regions → [Ratings Histogram](endpoints/ratings.md)
│  └─ Get reviews from different regions → [Reviews](endpoints/reviews.md)
│
├─ Bulk Operations
│  ├─ Lookup multiple apps → [App Lookup](endpoints/app-lookup.md)
│  └─ Search and filter results → [App Search](endpoints/search.md)
│
└─ Category Browsing
   └─ Browse by specific categories → [App Lists/Feeds](endpoints/lists.md)

📚 Documentation Index

Endpoints (API-Based)

Reliable, structured API endpoints that return JSON:

EndpointDescriptionFile
App LookupGet detailed app info by ID or bundle IDendpoints/app-lookup.md
App SearchSearch apps by keyword with filtersendpoints/search.md
App Lists/FeedsBrowse top apps and categoriesendpoints/lists.md
Developer AppsGet all apps by a specific developerendpoints/developer.md
ReviewsFetch paginated user reviewsendpoints/reviews.md
Ratings HistogramGet 1-5 star rating breakdownendpoints/ratings.md
Search SuggestionsGet autocomplete search hintsendpoints/suggestions.md

Endpoints (Web Scraping)

Requires HTML parsing, less reliable:

EndpointDescriptionFile
Similar AppsFind related apps (web scraping)endpoints/similar.md

Common Use Cases

Use Case 1: Competitive Analysis

# 1. Search for competitor apps
curl -s "https://itunes.apple.com/search?term=note%20taking&media=software&entity=software&limit=10"

# 2. Get detailed info for top results
# 3. Compare ratings, features, pricing
# 4. Analyze user reviews

See: [App Search](endpoints/search.md) → [App Lookup](endpoints/app-lookup.md) → [Reviews](endpoints/reviews.md)

Use Case 2: App Monitoring

# 1. Get current app state
# 2. Track rating changes over time
# 3. Monitor new reviews
# 4. Alert on rating drops

See: [App Lookup](endpoints/app-lookup.md) → [Ratings Histogram](endpoints/ratings.md) → [Reviews](endpoints/reviews.md)

Use Case 3: Market Research

# 1. Browse top apps in category
# 2. Analyze pricing trends
# 3. Study feature patterns
# 4. Identify gaps in market

See: [App Lists/Feeds](endpoints/lists.md) → [App Search](endpoints/search.md)

Use Case 4: Developer Portfolio Analysis

# 1. Find developer ID from an app
# 2. Get all apps by developer
# 3. Compare performance across portfolio
# 4. Track developer strategy

See: [App Lookup](endpoints/app-lookup.md) → [Developer Apps](endpoints/developer.md)

Quick Reference

Essential Parameters

  • country - Market code (default: us)
  • entity - Always use software for apps
  • limit - Max results (varies by endpoint)
  • lang - Language preference (e.g., en-US, ja-JP)

Common Country Codes

CodeCountryCodeCountry
usUnited StatesgbUnited Kingdom
deGermanyfrFrance
jpJapanauAustralia
caCanadaesSpain
itItalybrBrazil
inIndiamxMexico
krSouth KoreacnChina

Common Commands

# Get app by ID
curl -s "https://itunes.apple.com/lookup?id=553834731&entity=software" | jq '.results[0]'

# Search apps
curl -s "https://itunes.apple.com/search?term=weather&media=software&entity=software&limit=10"

# Top free apps
curl -s "https://itunes.apple.com/us/rss/topfreeapplications/limit=25/json"

# Recent reviews
curl -s "https://itunes.apple.com/us/rss/customerreviews/page=1/id=553834731/sortby=mostrecent/json"

Best Practices

  1. Validate responses before processing with jq empty
  2. Implement caching to reduce API load
  3. Add rate limiting (1-2s between requests)
  4. Batch requests when possible using comma-separated IDs
  5. Handle errors gracefully with retries and fallbacks

API Limitations

  • Rate limiting: No official limits, but be respectful (1-2s between requests)
  • Pagination: Limited on some endpoints (max 200 results for search)
  • History: Only current version data available via API
  • Web scraping: Required for similar apps (unreliable, structure may change)

External Resources


Start Here: Use the decision trees above to find the right endpoint for your needs, then follow the links to detailed documentation.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

30.1%
按下载量换算46

OpenCode

21.34%
按下载量换算32

Gemini CLI

17.69%
按下载量换算27

Antigravity

12.37%
按下载量换算19

Codex

8.63%
按下载量换算13

windsurf

3.75%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills