Competitor Analysis Report
Researches competitors via Brave Search and builds a comprehensive competitive landscape analysis with positioning, pricing, strengths/weaknesses, and strategic recommendations. Prerequisites: brave-search MCP, python3.
MCP get_skill({ skillId: "competitor-analysis-report-e2b142ef" })Use this skill with your agent
Create a free account and connect via MCP
# Competitor Analysis Report
Research competitors and build a strategic competitive landscape analysis.
## When to Use
- "Analyze my competitors: {list}"
- "Who are the main players in {market}?"
- "How does my product compare to the competition?"
## Requirements
- **Brave Search MCP** for competitor research
- **python3** for scoring and visualization
## Workflow
### Step 1 ā Analysis Brief
- **Your company / product**
- **Known competitors** (or ask to discover them)
- **Market / industry**
- **What you want to learn** (pricing, features, positioning, weaknesses)
### Step 2 ā Research Competitors
For each competitor (and to discover new ones):
```
brave_web_search: "{MARKET} competitors landscape {YEAR}"
brave_web_search: "{COMPETITOR_1} features pricing {YEAR}"
brave_web_search: "{COMPETITOR_1} reviews complaints"
brave_web_search: "{COMPETITOR_1} funding revenue employees"
brave_web_search: "{COMPETITOR_2} features pricing {YEAR}"
brave_web_search: "{COMPETITOR_2} reviews complaints"
brave_web_search: "{COMPETITOR_1} vs {COMPETITOR_2} comparison"
```
### Step 3 ā Build Analysis
```markdown
# Competitive Analysis: {MARKET}
š
Date: {DATE}
## Market Overview
{2-3 sentences about the market, size, and dynamics}
## Competitive Landscape
### Feature Comparison
| Feature | **{You}** | {Comp 1} | {Comp 2} | {Comp 3} |
|---------|-----------|----------|----------|----------|
| {Feature 1} | ā
| ā
| ā | ā
|
| {Feature 2} | ā
| ā ļø | ā
| ā |
| {Feature 3} | ā | ā
| ā
| ā
|
| Pricing | ${X}/mo | ${X}/mo | ${X}/mo | ${X}/mo |
| Free tier | ā
/ā | ā
/ā | ā
/ā | ā
/ā |
### Competitor Profiles
#### {Competitor 1}
- **Positioning:** {How they describe themselves}
- **Target customer:** {Who they serve}
- **Pricing:** {Pricing model and tiers}
- **Strengths:** {What they do well}
- **Weaknesses:** {Where they fall short ā from reviews}
- **Funding/Size:** {If known}
- **Threat level:** š“ High / š” Medium / š¢ Low
#### {Competitor 2}
...
## Strategic Analysis
### Your Advantages
1. {Advantage 1 ā what you do that competitors don't}
2. {Advantage 2}
### Gaps to Close
1. {Feature or capability competitors have that you lack}
2. {Gap 2}
### Opportunities
1. {Underserved segment or unmet need in the market}
2. {Opportunity 2}
### Threats
1. {Competitive threat to watch}
2. {Market risk}
## Positioning Map
```mermaid
quadrantChart
title Competitive Positioning
x-axis Low Price --> High Price
y-axis Basic Features --> Advanced Features
quadrant-1 Premium Leaders
quadrant-2 Feature Rich
quadrant-3 Budget Options
quadrant-4 Value Sweet Spot
{You}: [0.5, 0.6]
{Competitor 1}: [0.7, 0.8]
{Competitor 2}: [0.3, 0.4]
```
## Recommendations
1. **Short-term:** {Tactical move}
2. **Medium-term:** {Strategic initiative}
3. **Long-term:** {Vision play}
```
### Step 4 ā Score Competitors
```bash
python3 << 'PYEOF'
competitors = [
{"name": "{Comp 1}", "features": 8, "pricing": 6, "brand": 9, "growth": 7},
{"name": "{Comp 2}", "features": 6, "pricing": 8, "brand": 5, "growth": 8},
{"name": "{Comp 3}", "features": 7, "pricing": 7, "brand": 6, "growth": 5},
]
for c in competitors:
threat = (c["features"] * 0.3 + c["pricing"] * 0.2 + c["brand"] * 0.3 + c["growth"] * 0.2)
level = "š“ HIGH" if threat >= 7.5 else "š” MEDIUM" if threat >= 5 else "š¢ LOW"
print(f"{c['name']}: Threat Score {threat:.1f}/10 ā {level}")
PYEOF
```
### Step 5 ā Save Report
```bash
mkdir -p outputs/business
cat > "outputs/business/competitor-analysis-{DATE}.md" << 'EOF'
{REPORT}
EOF
```
## Important Rules
- All competitor data must come from Brave Search ā don't guess pricing or features
- Date-stamp everything ā competitive landscapes shift fast
- Be objective ā note competitor strengths honestly
- Focus on actionable insights, not just data collection
- Include both direct and indirect competitors
## Example Prompts
- "Analyze my competitors in the project management space"
- "How does {my product} compare to {competitor}?"
- "Who are the main players in {market} and what are their weaknesses?"Related Skills
More skills in Business & Freelance
Business Plan One-Pager
Creates a concise one-page business plan covering value proposition, market, revenue model, and key metrics. Researches market data via Brave Search and generates a Mermaid business model canvas. Prerequisites: brave-search MCP, python3.
Client Proposal Writer
Builds professional client proposals with scope, timeline, pricing, and terms ā researches market rates via Brave Search and generates pandoc-ready documents. Prerequisites: brave-search MCP, python3, pandoc.
Invoice Generator
Generates professional invoices with line items, tax calculations, payment terms, and exports to PDF via pandoc. Tracks invoice numbers and calculates totals. Prerequisites: python3, pandoc.
Pricing Strategy Calculator
Helps freelancers and businesses set pricing using cost-plus, value-based, and competitive analysis methods. Researches market rates via Brave Search and runs breakeven calculations. Prerequisites: brave-search MCP, python3.
Statement of Work Generator
Generates formal Statements of Work (SOW) with project scope, milestones, acceptance criteria, payment schedule, and legal terms. Exports to PDF via pandoc. Prerequisites: python3, pandoc.
Explore Other Categories
Skills from other categories with shared topics
Brand Guidelines
When the user wants to apply, document, or enforce brand guidelines for any product or company. Also use when the user mentions 'brand guidelines,' 'brand colors,' 'typography,' 'logo usage,' 'brand voice,' 'visual identity,' 'tone of voice,' 'brand standards,' 'style guide,' 'brand consistency,' or 'company design standards.' Covers color systems, typography, logo rules, imagery guidelines, and tone matrix for any brand ā including Anthropic's official identity.
Business & Growth Skills
4 business growth agent skills and plugins for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw. Customer success (health scoring, churn), sales engineer (RFP), revenue operations (pipeline, GTM), contract & proposal writer. Python tools (stdlib-only).
Business Model Canvas
Generate a Business Model Canvas with all 9 building blocks. Use when creating a business model, documenting how a business creates value, or analyzing an existing business model.