Agent skill
Competitive Intelligence
Deep competitive analysis and market monitoring capabilities for product strategy
Install this agent skill to your Project
npx add-skill https://github.com/a5c-ai/babysitter/tree/main/library/specializations/product-management/skills/competitive-intel
SKILL.md
Competitive Intelligence Skill
Overview
Specialized skill for deep competitive analysis and market monitoring capabilities. Enables product teams to maintain awareness of competitor activities, identify market opportunities, and inform strategic decisions.
Capabilities
Core Analysis Functions
- Analyze competitor websites, pricing, and positioning
- Track competitor feature releases and announcements
- Generate feature comparison matrices
- Monitor competitor reviews and ratings
- Extract competitor strengths and weaknesses
- Identify market gaps and white space opportunities
- Track industry analyst reports and mentions
Research Methods
- Competitive website analysis and scraping
- Pricing structure comparison
- Feature parity assessment
- Market positioning analysis
- SWOT compilation for competitors
- Industry trend monitoring
Output Artifacts
- Competitive landscape reports
- Feature comparison matrices
- Pricing comparison tables
- Market positioning maps
- Competitive battlecards
- White space opportunity reports
- Industry trend summaries
Target Processes
This skill integrates with the following processes:
competitive-analysis.js- Primary integration for full competitive analysis workflowsproduct-vision-strategy.js- Strategic positioning and differentiationproduct-launch-gtm.js- Competitive positioning for launchesquarterly-roadmap.js- Market opportunity identification
Input Schema
{
"type": "object",
"properties": {
"competitors": {
"type": "array",
"items": { "type": "string" },
"description": "List of competitor names or domains to analyze"
},
"analysisScope": {
"type": "string",
"enum": ["pricing", "features", "positioning", "full"],
"description": "Scope of competitive analysis"
},
"industryContext": {
"type": "string",
"description": "Industry or market context for analysis"
},
"focusAreas": {
"type": "array",
"items": { "type": "string" },
"description": "Specific areas to focus analysis on"
}
},
"required": ["competitors", "analysisScope"]
}
Output Schema
{
"type": "object",
"properties": {
"competitorProfiles": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"positioning": { "type": "string" },
"strengths": { "type": "array", "items": { "type": "string" } },
"weaknesses": { "type": "array", "items": { "type": "string" } },
"pricing": { "type": "object" },
"features": { "type": "array", "items": { "type": "string" } }
}
}
},
"featureMatrix": {
"type": "object",
"description": "Feature comparison matrix across competitors"
},
"marketGaps": {
"type": "array",
"items": { "type": "string" },
"description": "Identified market opportunities and white spaces"
},
"recommendations": {
"type": "array",
"items": { "type": "string" },
"description": "Strategic recommendations based on analysis"
}
}
}
Usage Example
const competitiveAnalysis = await executeSkill('competitive-intel', {
competitors: ['CompetitorA', 'CompetitorB', 'CompetitorC'],
analysisScope: 'full',
industryContext: 'B2B SaaS project management',
focusAreas: ['pricing', 'collaboration features', 'integrations']
});
Dependencies
- Web scraping capabilities
- News monitoring APIs
- Industry data sources
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-tools
Central utility skill for GSD operations. Provides config parsing, slug generation, timestamps, path operations, and orchestrates calls to other specialized skills. Acts as the unified entry point that the original gsd-tools.cjs provided via its lib/ modules (commands, config, core, init).
model-profile-resolution
Resolve model profile (quality/balanced/budget) at orchestration start and map agents to specific models. Enables cost/quality tradeoffs by selecting appropriate AI models for each agent role.
verification-suite
Plan structure validation, phase completeness checks, reference integrity verification, and artifact existence confirmation. Provides the structured verification layer ensuring GSD artifacts are well-formed and complete.
state-management
STATE.md reading, writing, and field-level updates. Provides cross-session state persistence via .planning/STATE.md with structured fields for current task, completed phases, blockers, decisions, and quick tasks.
git-integration
Git commit patterns, formats, and conventions for GSD methodology. Provides atomic commits per task, structured commit messages, planning file commits, branch management, and milestone tag operations.
frontmatter-parsing
YAML frontmatter parsing and manipulation for .planning/ documents. Provides read, write, update, query, and validation operations on frontmatter blocks in GSD markdown artifacts.
Didn't find tool you were looking for?