From aj-geddes-useful-ai-prompts-4
Analyzes competitive landscape via SWOT, matrices, and identification to inform product strategy, feature prioritization, market positioning, and threat assessment.
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin aj-geddes-useful-ai-prompts-4This skill uses the workspace's default tool permissions.
- [Overview](#overview)
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Systematic competitor analysis reveals market positioning, identifies competitive advantages, and informs strategic product decisions.
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)
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 |