Product Comparison Matrix
Researches and compares products, tools, or services side-by-side via Brave Search with feature matrices, pricing analysis, and a recommendation based on your specific needs. Prerequisites: brave-search MCP, python3.
MCP get_skill({ skillId: "product-comparison-matrix-dbc36f38" })Use this skill with your agent
Create a free account and connect via MCP
# Product Comparison Matrix
Research and compare products, tools, or services with feature matrices, pricing, and personalized recommendations.
## When to Use
- "Compare {Product A} vs {Product B}"
- "What's the best {product category} for {use case}?"
- "Help me choose between these 3 options"
## Requirements
- **Brave Search MCP** for product research and reviews
- **python3** for scoring and cost calculations
## Workflow
### Step 1 ā Comparison Brief
- **Products to compare** (2-5 options)
- **Use case** (what you'll use it for)
- **Budget**
- **Must-have features**
- **Nice-to-have features**
- **Deal-breakers**
### Step 2 ā Research Each Option
```
brave_web_search: "{PRODUCT_A} review {YEAR}"
brave_web_search: "{PRODUCT_B} review {YEAR}"
brave_web_search: "{PRODUCT_A} vs {PRODUCT_B} comparison {YEAR}"
brave_web_search: "{PRODUCT_CATEGORY} best {USE_CASE} {YEAR}"
brave_web_search: "{PRODUCT_A} pricing plans {YEAR}"
brave_web_search: "{PRODUCT_B} pricing plans {YEAR}"
```
### Step 3 ā Build Comparison Matrix
```markdown
# Comparison: {CATEGORY}
šÆ Use case: {USE_CASE} | š° Budget: ${BUDGET}
## Feature Matrix
| Feature | {Product A} | {Product B} | {Product C} |
|---------|-------------|-------------|-------------|
| Price | ${X}/mo | ${X}/mo | ${X}/mo |
| {Must-have 1} | ā
| ā
| ā |
| {Must-have 2} | ā
| ā ļø Partial | ā
|
| {Must-have 3} | ā
| ā
| ā
|
| {Nice-to-have 1} | ā
| ā | ā
|
| {Nice-to-have 2} | ā | ā
| ā |
| Free tier | ā
| ā | ā
|
| API access | ā
| ā
| ā |
## Pricing Deep Dive
| Plan | {Product A} | {Product B} | {Product C} |
|------|-------------|-------------|-------------|
| Free | {limits} | {limits} | {limits} |
| Basic | ${X}/mo | ${X}/mo | ${X}/mo |
| Pro | ${X}/mo | ${X}/mo | ${X}/mo |
| Enterprise | Contact | ${X}/mo | Contact |
## Pros & Cons
### {Product A}
ā
Pros: {list}
ā Cons: {list}
š¤ Best for: {use case}
### {Product B}
ā
Pros:
ā Cons:
š¤ Best for:
```
### Step 4 ā Score by Your Priorities
```bash
python3 << 'PYEOF'
weights = {
"{Must-have 1}": 10,
"{Must-have 2}": 10,
"{Must-have 3}": 8,
"Price": 7,
"{Nice-to-have 1}": 5,
"{Nice-to-have 2}": 3,
}
# Score each product (0=missing, 5=partial, 10=full)
scores = {
"{Product A}": [{S1}, {S2}, {S3}, {S4}, {S5}, {S6}],
"{Product B}": [{S1}, {S2}, {S3}, {S4}, {S5}, {S6}],
"{Product C}": [{S1}, {S2}, {S3}, {S4}, {S5}, {S6}],
}
weight_list = list(weights.values())
for name, s in scores.items():
weighted = sum(w * score for w, score in zip(weight_list, s)) / sum(weight_list)
print(f"{name}: {weighted:.1f}/10")
PYEOF
```
### Step 5 ā Recommendation
```markdown
## š Recommendation: {WINNER}
**For your use case ({USE_CASE})**, {WINNER} is the best fit because:
1. {Key reason 1}
2. {Key reason 2}
3. {Price justification}
**Runner-up:** {SECOND} ā choose this if {specific condition}
**Avoid:** {THIRD} ā because {missing must-have or deal-breaker}
```
### Step 6 ā Save Comparison
```bash
mkdir -p outputs/research
cat > "outputs/research/comparison-{CATEGORY_SLUG}-{DATE}.md" << 'EOF'
{COMPARISON}
EOF
```
## Important Rules
- All specs, prices, and features must come from Brave Search ā verify, don't assume
- Note pricing dates ā prices change frequently
- Weight must-haves higher than nice-to-haves in scoring
- Include a deal-breaker check before scoring
- If no clear winner, say so ā close scores mean either works
## Example Prompts
- "Compare Notion vs Obsidian vs Logseq for personal knowledge management"
- "Best project management tool for a 5-person startup?"
- "Compare MacBook Air M3 vs ThinkPad X1 for software development"Related Skills
More skills in Research & Analysis
Company Due Diligence Researcher
Conducts comprehensive research on a company via Brave Search covering financials, leadership, culture, news, and competitive landscape. Generates a diligence brief for job seekers, investors, or partners. Prerequisites: brave-search MCP, python3.
Deep Research Report Generator
Conducts multi-source research on any topic via Brave Search, synthesizes findings into a structured report with citations, key takeaways, and confidence ratings per claim. Prerequisites: brave-search MCP, python3.
Fact Checker & Claim Verifier
Verifies claims, statistics, and quotes by cross-referencing multiple sources via Brave Search. Rates each claim's accuracy with evidence and flags misinformation patterns. Prerequisites: brave-search MCP.
News Digest & Trend Analyzer
Searches current news via Brave Search for a given topic or industry, summarizes top stories, identifies trends, and generates a formatted digest with analysis. Prerequisites: brave-search MCP, python3.
Explore Other Categories
Skills from other categories with shared topics
Flight & Hotel Price Research
Researches flight and hotel prices via Brave Search, compares options across booking sites, and generates a comparison table with direct booking links. Prerequisites: brave-search MCP.
Gift Idea Researcher
Researches personalized gift ideas based on the recipient's interests, age, occasion, and budget via Brave Search. Provides curated recommendations with purchase links and reviews. Prerequisites: brave-search MCP.
Investment Research & Stock Screener
Researches stocks, ETFs, and market data via Brave Search and public APIs. Generates comparison tables with key metrics, dividend info, and performance charts. Prerequisites: brave-search MCP, curl, jq, python3.