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

playstore-competitor-analysisPlay 商店竞争对手分析

Agent Skill

playstore-competitor-analysis 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

261

周安装

11

GitHub Stars

公开资料未说明

下载量

92
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:playstore-competitor-analysis(Play 商店竞争对手分析)
来源仓库:https://github.com/linakis/ai-assistant-skills
仓库路径:skills/playstore-competitor-analysis
安装命令:
npx skills add https://github.com/linakis/ai-assistant-skills --skill playstore-competitor-analysis
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/linakis/ai-assistant-skills --skill playstore-competitor-analysis

简介

playstore-competitor-analysis 用于查找、检索和筛选相关信息,适合在应用商店优化(ASO)或市场竞争分析中快速获取数据时使用。

  • 适用于关键词挖掘、评分趋势追踪或功能对比等 ASO 相关任务。
  • 通过 npx skills add 命令从 ai-assistant-skills 项目安装,需确认是否调用 Google Play 官方 API。
  • 建议遵守平台速率限制,避免因频繁请求导致账号受限。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Play Store Competitor Analysis

Extract comprehensive app data and screenshots from Google Play Store listings for competitive analysis. Supports single app analysis, multi-app comparison, or searching for top competitors by keyword.

Requirements

Install the google-play-scraper package. On modern macOS/Linux systems, you'll need to use a virtual environment:

# Create a virtual environment in the skill directory (one-time setup)
python3 -m venv .venv

# Activate and install the package
source .venv/bin/activate
pip install google-play-scraper

Then run the script with the virtual environment's python:

# Use the venv python directly (no activation needed)
.venv/bin/python3 scripts/scrape_play_store.py --search "messenger" ./output

# Or activate first, then run
source .venv/bin/activate
python3 scripts/scrape_play_store.py --search "messenger" ./output

Workflow

  1. Determine the analysis type:

- Single app: User provides a Play Store URL or package ID - Comparison: User provides multiple URLs/package IDs - Search: User wants to find top competitors for a keyword (e.g., "top 10 messenger apps")

  1. Run the appropriate scraper command
  2. Review the generated outputs with the user

Usage

Single App Analysis

Run the scraper with a Play Store URL or package ID:

python3 scripts/scrape_play_store.py "<play_store_url_or_package_id>" "<output_directory>"

Examples:

# Using URL
python3 scripts/scrape_play_store.py "https://play.google.com/store/apps/details?id=com.slack" ./competitor-analysis/slack

# Using package ID directly
python3 scripts/scrape_play_store.py com.slack ./competitor-analysis/slack

Multiple App Comparison

Run the scraper with multiple URLs or package IDs:

python3 scripts/scrape_play_store.py --compare "<id1>" "<id2>" "<id3>" "<output_directory>"

Example:

python3 scripts/scrape_play_store.py --compare \
  com.slack \
  com.microsoft.teams \
  com.discord \
  ./competitor-analysis/messaging-apps

Search for Top Competitors

Search for top apps by keyword and automatically analyze them:

python3 scripts/scrape_play_store.py --search "<query>" "<output_directory>" --limit <N>

Examples:

# Find and analyze top messenger apps
python3 scripts/scrape_play_store.py --search "messenger apps" ./competitor-analysis/messenger --limit 10

# Find top 5 podcast apps
python3 scripts/scrape_play_store.py --search "podcast" ./competitor-analysis/podcasts --limit 5

# Default limit is 10 if not specified
python3 scripts/scrape_play_store.py --search "fitness tracker" ./competitor-analysis/fitness

Output

Single App Output

output_dir/
├── {package-id}.json    # Full structured data
├── {package-id}.md      # Formatted report
├── icon.png             # App icon
└── screenshots/
    ├── screenshot_01.png
    ├── screenshot_02.png
    └── ...

Comparison/Search Output

output_dir/
├── comparison.json      # All apps data for programmatic use
├── comparison.md        # Side-by-side comparison report
├── {app-1-package-id}/
│   ├── {package-id}.json
│   ├── {package-id}.md
│   ├── icon.png
│   └── screenshots/
├── {app-2-package-id}/
│   └── ...
└── {app-3-package-id}/
    └── ...

Data Extracted

FieldDescription
titleApp name
descriptionFull app description
short_descriptionBrief summary
ratingAverage star rating (1-5)
rating_countNumber of ratings
reviews_countNumber of text reviews
histogramRating distribution [1-star, 2-star, 3-star, 4-star, 5-star]
installsInstall count range (e.g., "10,000,000+")
real_installsActual install count estimate
categoryPrimary category
category_idCategory ID (e.g., GAME_ACTION)
pricePrice or 0 for free
freeBoolean: is app free
currencyPrice currency code
contains_adsBoolean: has advertisements
offers_iapBoolean: has in-app purchases
iap_rangeIn-app purchase price range
developerDeveloper name
developer_idDeveloper ID
developer_emailDeveloper contact email
developer_websiteDeveloper website URL
developer_addressDeveloper address
privacy_policyPrivacy policy URL
versionCurrent version
android_versionMinimum Android version (text)
content_ratingContent rating (Everyone, Teen, etc.)
content_rating_descriptionContent rating details
releasedOriginal release date
last_updatedLast update timestamp
screenshotsAll screenshot URLs
videoPromo video URL if available
icon_urlApp icon URL
header_imageHeader/feature graphic URL

Comparison Report Includes

MetricDescription
Rating comparisonSide-by-side ratings with visual indicators
Install baseRelative market presence with actual numbers
Update frequencyLast update dates
MonetizationFree/paid, ads, IAP comparison
Feature highlightsKey differentiators from descriptions
Competitive insightsHighest rated, most installed, etc.

Notes

  • Uses the google-play-scraper Python package for reliable data extraction
  • Screenshots are downloaded at high resolution
  • Rate limiting is applied automatically to avoid blocking
  • For comparison/search mode, apps are processed sequentially with delays
  • Output directories are created if they don't exist
  • The comparison report highlights competitive advantages and gaps
  • Search results are ordered by Play Store's ranking algorithm

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.33%
按下载量换算33

Claude

29.49%
按下载量换算27

Cursor

17.59%
按下载量换算16

Gemini CLI

9.03%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills