重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
competitor-tracking by eronred/aso-skills
npx skills add https://github.com/eronred/aso-skills --skill competitor-tracking你建立并运行持续的竞争对手监控——在元数据变更、关键词变动、评分下降和新功能发布影响你的排名之前,捕捉到这些变化。
| competitor-analysis 技能 | 本技能 (competitor-tracking)
---|---|---
频率 | 一次性深度分析 | 每周/每月重复进行
输出 | 策略文档 | 变更日志 + 警报
重点 | 差距分析,定位 | 发生了什么变化及其重要性
数据 | 快照 | 差异(前后对比)
app-marketing-context.md如果未知,使用 Appeeky 识别竞争对手:
GET /v1/keywords/ranks?keyword=meditation&country=us&limit=10
GET /v1/apps/:id/intelligence # 检查 competitors 数组
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
每周使用 Appeeky 检查:
GET /v1/apps/:id # 标题、副标题、描述
关注:
GET /v1/apps/:id/keywords # 他们的排名关键词
GET /v1/keywords/ranks?keyword=[共享关键词] # 谁在哪里排名
关注:
GET /v1/apps/:id/reviews?sort=recent&limit=20
GET /v1/apps/:id # 当前评分
关注:
GET /v1/market/movers?genre=[genre_id]&country=us
GET /v1/categories/:id/top?country=us&limit=25
关注:
每 4–6 周手动检查:
每周一运行此分析:
Competitive Update — Week of [日期]
Apps tracked: [列出名称]
CHANGES DETECTED:
━━━━━━━━━━━━━━━━━
[竞争对手名称]
Metadata: [已变更 / 无变化]
→ [如果有,具体变更]
Top keywords: [获得 X / 丢失 Y / 稳定]
Rating: [X.X → X.X] ([+/-N] 本周评分)
Chart position: [#N → #N in category]
New reviews theme: [如果显著]
[对每个竞争对手重复]
OPPORTUNITIES IDENTIFIED:
1. [竞争对手 X 放弃了关键词 Y —— 考虑针对它]
2. [竞争对手 X 关于 Z 的投诉激增 —— 你的优势]
3. [竞争对手 X 提高了价格 —— 定位机会]
THREATS:
1. [竞争对手 X 现在在 [关键词] 上排名第 3 —— 我们在第 8]
2. [发现新进入者: [名称] —— 检查其元数据]
ACTION ITEMS:
1. [针对某项变更的具体应对措施]
2. [基于竞争对手差距要针对的关键词]
在以下情况运行完整的 competitor-analysis:
设置日历提醒。运行上述 Appeeky API 调用。填写模板。
构建一个脚本,每周调用 Appeeky 并对比结果:
#!/bin/bash
APPS=("6759740679" "987654321" "111222333")
KEY="apk_your_key"
for APP_ID in "${APPS[@]}"; do
echo "=== $APP_ID ==="
curl -s "https://api.appeeky.com/v1/apps/$APP_ID" \
-H "X-API-Key: $KEY" | jq '.data | {title, subtitle, rating, reviewCount}'
done
每周存储结果,并与前一周的输出进行差异比较。
每周一向你的代理提问:
"Run a competitor check on apps [ID1], [ID2], [ID3] and
compare their metadata and top keywords to last week."
代理将使用 get_app、get_app_keywords、get_app_reviews 来生成报告。
| 变化内容 | 应对措施 |
|---|---|
| 竞争对手在其标题中针对你的 #1 关键词 | 防御:检查你的元数据是否已完全优化;考虑增加 ASA 出价 |
| 竞争对手放弃了一个你们共享的关键词 | 机会:加倍投入,增加 ASA 出价 |
| 竞争对手升级了截图 | 审核你的截图——它们是否仍是类别中最优的? |
| 竞争对手评分降至 4.0 以下 | 在差距可见时,在推广文案中提及你的评分 |
| 竞争对手发布了你没有的功能 | 记录到路线图中;同时强调你的差异化优势 |
| 新竞争对手进入前 10 名 | 对他们运行完整的 competitor-analysis |
competitor-analysis —— 一次性深度竞争策略分析keyword-research —— 根据发现的关键词差距采取行动market-movers —— 自动捕捉榜单级别的竞争对手变动apple-search-ads —— 通过 ASA 出价应对竞争对手的关键词变动aso-audit —— 发现竞争差距后对自身进行审计每周安装量
56
代码仓库
GitHub 星标数
580
首次出现
2 天前
安全审计
安装于
github-copilot56
gemini-cli56
kimi-cli56
codex56
cursor56
amp56
You set up and run ongoing competitor surveillance — catching metadata changes, keyword shifts, rating drops, and new feature launches before they impact your rankings.
| competitor-analysis skill | This skill (competitor-tracking)
---|---|---
Frequency | One-time deep dive | Weekly/monthly recurring
Output | Strategy document | Change log + alerts
Focus | Gap analysis, positioning | What changed and why it matters
Data | Snapshot | Delta (before vs after)
app-marketing-context.mdUse Appeeky to identify competitors if unknown:
GET /v1/keywords/ranks?keyword=meditation&country=us&limit=10
GET /v1/apps/:id/intelligence # check competitors array
Check weekly using Appeeky:
GET /v1/apps/:id # title, subtitle, description
Watch for:
GET /v1/apps/:id/keywords # their ranking keywords
GET /v1/keywords/ranks?keyword=[shared keyword] # who's ranking where
Watch for:
GET /v1/apps/:id/reviews?sort=recent&limit=20
GET /v1/apps/:id # current rating
Watch for:
GET /v1/market/movers?genre=[genre_id]&country=us
GET /v1/categories/:id/top?country=us&limit=25
Watch for:
Manually check every 4–6 weeks:
Run this analysis every Monday:
Competitive Update — Week of [Date]
Apps tracked: [list names]
CHANGES DETECTED:
━━━━━━━━━━━━━━━━━
[Competitor Name]
Metadata: [changed / no change]
→ [specific change if any]
Top keywords: [gained X / lost Y / stable]
Rating: [X.X → X.X] ([+/-N] ratings this week)
Chart position: [#N → #N in category]
New reviews theme: [if notable]
[Repeat per competitor]
OPPORTUNITIES IDENTIFIED:
1. [Competitor X dropped keyword Y — consider targeting it]
2. [Competitor X has surge of complaints about Z — your strength]
3. [Competitor X raised price — positioning opportunity]
THREATS:
1. [Competitor X now ranks #3 for [keyword] — we're at #8]
2. [New entrant spotted: [name] — check their metadata]
ACTION ITEMS:
1. [Specific response to a change]
2. [Keyword to target based on competitor gap]
Run a full competitor-analysis when:
Set a calendar reminder. Run the Appeeky API calls above. Fill the template.
Build a script that calls Appeeky weekly and diffs results:
#!/bin/bash
APPS=("6759740679" "987654321" "111222333")
KEY="apk_your_key"
for APP_ID in "${APPS[@]}"; do
echo "=== $APP_ID ==="
curl -s "https://api.appeeky.com/v1/apps/$APP_ID" \
-H "X-API-Key: $KEY" | jq '.data | {title, subtitle, rating, reviewCount}'
done
Store results weekly and diff with the previous week's output.
Ask your agent each Monday:
"Run a competitor check on apps [ID1], [ID2], [ID3] and
compare their metadata and top keywords to last week."
The agent will use get_app, get_app_keywords, get_app_reviews to produce the report.
| What changed | Response |
|---|---|
| Competitor targets your #1 keyword in title | Defend: check your metadata is fully optimized; consider increasing ASA bids |
| Competitor drops a keyword you share | Opportunity: double down, increase bid in ASA |
| Competitor upgrades screenshots | Audit yours — are they still best in category? |
| Competitor rating drops below 4.0 | Mention your rating in promotional text while gap is visible |
| Competitor launches a feature you don't have | Note for roadmap; meanwhile highlight your differentiating strengths |
| New competitor enters top 10 | Run full competitor-analysis on them |
competitor-analysis — Deep one-time competitive strategykeyword-research — Act on the keyword gaps you findmarket-movers — Catch chart-level competitor movements automaticallyapple-search-ads — Respond to competitor keyword moves with ASA bidsaso-audit — Run on yourself after finding competitive gapsWeekly Installs
56
Repository
GitHub Stars
580
First Seen
2 days ago
Security Audits
Gen Agent Trust HubPassSocketPassSnykFail
Installed on
github-copilot56
gemini-cli56
kimi-cli56
codex56
cursor56
amp56
前端代码审计工具 - 自动化检测可访问性、性能、响应式设计、主题化与反模式
57,700 周安装