competitor-analysis▌
aj-geddes/useful-ai-prompts · updated Apr 8, 2026
Systematic competitor analysis reveals market positioning, identifies competitive advantages, and informs strategic product decisions.
Competitor Analysis
Table of Contents
Overview
Systematic competitor analysis reveals market positioning, identifies competitive advantages, and informs strategic product decisions.
When to Use
- Product strategy development
- Market entry planning
- Pricing strategy
- Feature prioritization
- Market positioning
- Threat assessment
- Investment decisions
Quick Start
Minimal working example:
# Identify and categorize competitors
class CompetitorAnalysis:
COMPETITOR_TYPES = {
'Direct': 'Same market, same features',
'Indirect': 'Different approach, same problem',
'Adjacent': 'Related market, potential crossover',
'Emerging': 'New entrants, potential disruptors'
}
def identify_competitors(self, market_segment):
"""Find all competitors"""
return {
'direct_competitors': [
{'name': 'Competitor A', 'market_share': '25%', 'founded': 2015},
{'name': 'Competitor B', 'market_share': '18%', 'founded': 2012}
],
'indirect_competitors': [
{'name': 'Different Approach A', 'method': 'AI-powered'}
],
'emerging_threats': [
{'name': 'Startup X', 'funding': '$10M Series A', 'differentiator': 'Mobile-first'}
]
}
// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Competitor Identification | Competitor Identification |
| Competitive Matrix | Competitive Matrix |
| SWOT Analysis | SWOT Analysis |
| Competitive Insights Report | Competitive Insights Report |
Best Practices
✅ DO
- Analyze current and emerging competitors
- Monitor competitor activities regularly
- Understand customer perception of competition
- Use competitive insights to inform strategy
- Focus on differentiation, not just comparison
- Include market trends in analysis
- Update competitive analysis quarterly
- Share insights across organization
- Use data to back up claims
- Consider indirect competitors too
❌ DON'T
- Obsess over competitor pricing
- Copy competitor features blindly
- Ignore emerging threats
- Use only marketing materials for analysis
- Focus only on feature comparison
- Neglect customer feedback on competition
- Make analysis too complex
- Hide uncomfortable truths
- Change strategy based on every competitor move
- Ignore your competitive advantages
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★38 reviews- ★★★★★Ganesh Mohane· Dec 24, 2024
competitor-analysis reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Tariq Huang· Dec 24, 2024
Keeps context tight: competitor-analysis is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Tariq Yang· Dec 4, 2024
I recommend competitor-analysis for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Tariq Menon· Nov 23, 2024
competitor-analysis reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Sakshi Patil· Nov 15, 2024
I recommend competitor-analysis for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Alexander Sethi· Nov 15, 2024
competitor-analysis has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Yash Thakker· Nov 11, 2024
We added competitor-analysis from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Xiao Chawla· Nov 7, 2024
competitor-analysis fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Liam Anderson· Oct 26, 2024
We added competitor-analysis from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Lucas Reddy· Oct 14, 2024
Registry listing for competitor-analysis matched our evaluation — installs cleanly and behaves as described in the markdown.
showing 1-10 of 38