From SaaS-blueprint
Structured competitor teardown skill. Use when scraping competitor sites, extracting pricing/features/positioning, or analyzing strategic gaps. For general research, see market-research.
How this skill is triggered — by the user, by Claude, or both
Slash command
/SaaS-blueprint:competitor-analysisThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- During **Phase 0 (Idea)** → Competitor Analysis module
| Tool | Purpose |
|---|---|
firecrawl_search | Discover competitors via web search |
firecrawl_map | Crawl competitor site structure |
firecrawl_scrape | Extract full page content for analysis |
firecrawl_extract | Pull structured data (pricing, features) |
Run parallel searches:
firecrawl_search: "{product_description} SaaS alternatives"
firecrawl_search: "{problem_statement} software solutions"
firecrawl_search: "best {category} tools 2025 2026"
firecrawl_search: "{category} vs comparison"
Categorize into:
For each direct competitor (max 5):
firecrawl_extract:
urls: ["{competitor}/pricing"]
prompt: "Extract all pricing tiers, prices, billing frequency, feature limits per tier, and any free tier details"
schema: {
tiers: [{
name: string,
price_monthly: string,
price_annual: string,
features: [string],
limits: [string]
}],
free_tier: boolean,
enterprise_custom: boolean
}
firecrawl_scrape:
url: "{competitor}/features"
formats: ["json"]
jsonOptions:
prompt: "List every feature mentioned on this page with a one-line description"
schema: {
features: [{ name: string, description: string, category: string }]
}
firecrawl_scrape:
url: "{competitor}"
formats: ["markdown"]
onlyMainContent: true
Extract from the homepage:
firecrawl_search: "{competitor_name} tech stack built with"
firecrawl_search: "site:{competitor_domain} careers engineer"
Output as a markdown table:
| Dimension | {Our Product} | Competitor A | Competitor B | Competitor C |
|---|---|---|---|---|
| Pricing (starter) | TBD | $X/mo | $X/mo | $X/mo |
| Free tier | TBD | Yes/No | Yes/No | Yes/No |
| Feature 1 | ✅/❌ | ✅/❌ | ✅/❌ | ✅/❌ |
| Feature 2 | ✅/❌ | ✅/❌ | ✅/❌ | ✅/❌ |
| Target audience | {ours} | {theirs} | {theirs} | {theirs} |
| Weakness | — | {gap} | {gap} | {gap} |
Identify:
Search for complaints:
firecrawl_search: "{competitor_name} review complaints problems"
firecrawl_search: "site:reddit.com {competitor_name} alternative"
firecrawl_search: "site:g2.com {competitor_name} cons"
Save to BRAINIAC/0. Idea/0.4 Competitor Analysis/ANALYSIS.md:
npx claudepluginhub tuliosousapro/saas-blueprint --plugin SaaS-blueprintCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.