Agent skill
competitor-analysis
Analyze competitive landscape to identify strengths, weaknesses, opportunities, and threats. Inform product strategy and positioning based on market insights.
Install this agent skill to your Project
npx add-skill https://github.com/aj-geddes/useful-ai-prompts/tree/main/skills/competitor-analysis
SKILL.md
Competitor Analysis
Table of Contents
- Overview
- When to Use
- Quick Start
- Reference Guides
- Best Practices
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
websocket-implementation
Implement real-time bidirectional communication with WebSockets including connection management, message routing, and scaling. Use when building real-time features, chat systems, live notifications, or collaborative applications.
refactor-legacy-code
Modernize and improve legacy codebases while maintaining functionality. Use when you need to refactor old code, reduce technical debt, modernize deprecated patterns, or improve code maintainability without breaking existing behavior.
Sentiment Analysis
Classify text sentiment using NLP techniques, lexicon-based analysis, and machine learning for opinion mining, brand monitoring, and customer feedback analysis
flask-api-development
Develop lightweight Flask APIs with routing, blueprints, database integration, authentication, and request/response handling. Use when building RESTful APIs, microservices, or lightweight web services with Flask.
ML Model Explanation
Interpret machine learning models using SHAP, LIME, feature importance, partial dependence, and attention visualization for explainability
Statistical Hypothesis Testing
Conduct statistical tests including t-tests, chi-square, ANOVA, and p-value analysis for statistical significance, hypothesis validation, and A/B testing
Didn't find tool you were looking for?