gr-competitor

Featured

竞品深度扫描。批量抓取对手落地页(title/h1/intro/pricing)、定价页、博客 top 10、 变更历史(Wayback)。底层调 actionbook(并发 30 tab + 省 90% token)。 当用户说"分析对手"、"看看竞品在做啥"、"找对标"、"扫一下 top 10"时调用。

AI & Automation 71 stars 5 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 91/100

Stars 20%
62
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# gr-competitor — 竞品扫描 ## 什么时候用 - "帮我分析一下 10 个对手的落地页" - "看一下 XX 的定价模式" - "这 5 个竞品博客最近 30 天发了什么" - "对标一下产品的 features" --- ## 底层:actionbook 这个 skill 是 **orchestrator** —— 真正干活的是 [actionbook](https://github.com/actionbook/actionbook)。 它能: - **10x 快**(直接调一方 API,跳过 DOM 解析) - **省 90% token**(返回结构化数据而非 DOM 快照) - **30 tab 并发**(一次扫完 top 30) ### 安装 actionbook(首次使用) ```bash # macOS / Linux npm install -g @actionbookdev/cli # 或用 npx 临时跑 npx @actionbookdev/cli browser start ``` Chrome 扩展:从 Chrome Web Store 搜 "Actionbook Extension" 或 https://actionbook.dev ### 验证可用 ```bash actionbook --version # 应输出 0.x.x actionbook browser start # 启动 local browser server ``` --- ## 调用流程(4 步) ### Step 1:search action manual 对每个目标站点,先查 actionbook 是否已有 manual: ```bash actionbook search "product hunt" actionbook search "crunchbase" ``` 有 manual → 跳 Step 3 无 manual → Step 2 ### Step 2:fallback 到通用 extract ```bash actionbook extract <url> \ --fields "title,h1,intro,pricing_tier,cta_text" \ --output json ``` actionbook 会: - 用通用 selector 探测 - 产出 JSON + 可复跑的 Playwright 脚本 ### Step 3:并发扫描 ```bash # 30 个对手一起扫 for url in "${urls[@]}"; do actionbook extract "$url" --fields "..." --session scan1 & done wait ``` ### Step 4:合成报告 Claude 把 30 个 JSON 合成: - Title / Tagline 矩阵 - 定价分层对比 - 共同 CTA 动词("get started" vs "book demo" vs "try free") - 差异点 → 我们可钻的空隙 --- ## 常用 prompt 模板 ### 模板 1:产品落地页扫描 ``` 用 gr-competitor 扫这 10 个对手的落地页,产出一张表: - 对手名 | tagline | 主 CTA | pricing 起步价 | 主 hero 视觉特征(3 个关键词) ...

Details

Author
Gingiris-1031
Repository
Gingiris-1031/gingiris-skills
Created
2 months ago
Last Updated
2 days ago
Language
Python
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category