用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/claude-world/cf-browser --skill competitor-watch命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | competitor-watch |
| description | Extract and compare structured data from competitor or benchmark websites |
| user_invocable | true |
Extract and compare structured data from multiple websites side-by-side.
CF Browser MCP server must be configured in .mcp.json (see quick start).
Pricing pages, feature matrices, and product comparisons are almost always JS-rendered. This skill uses browser_json and browser_scrape to extract structured data from multiple competitor pages, then generates a comparison.
From user input, determine:
For each competitor page, use the most appropriate tool:
Pricing data:
browser_json(url, prompt="Extract all pricing tiers with: plan name, monthly price, annual price, key features, and limits")
Feature comparison:
browser_json(url, prompt="Extract all features with: feature name, availability (yes/no/limited), and any limits or quotas")
General product info:
browser_scrape(url, selectors=["h1", ".pricing-card", ".feature-list", "[class*=plan]"])
Align extracted data into a consistent schema:
Output a markdown comparison table:
## Competitor Comparison — {Category}
| | Competitor A | Competitor B | Competitor C |
|---|---|---|---|
| Free tier | 1K requests | 500 requests | None |
| Pro price | $20/mo | $25/mo | $19/mo |
| API rate limit | 100 req/s | 50 req/s | Unlimited |
| Key differentiator | Best DX | Most features | Cheapest |
### Key Insights
- Competitor A leads on developer experience
- Competitor B has the most comprehensive free tier
- Price range: $19-25/mo for pro plans
urls (required): List of competitor URLs or product namesfocus (optional): What to compare — "pricing", "features", "limits", "all"prompt (optional): Custom extraction prompt for specific data points"Compare Vercel vs Netlify vs Cloudflare Pages pricing"
→ browser_json on each /pricing page → normalized comparison table
"What features does Cursor have that Copilot doesn't?"
→ Extract feature lists from both → diff analysis
"Compare the free tiers of Supabase, Firebase, and PlanetScale"
→ Extract pricing/limits → free tier comparison
"How does our pricing compare to competitors?"
→ Extract your pricing page + competitors → gap analysis