sop-product-launchlisted
Install: claude install-skill aiskillstore/marketplace
# SOP: Product Launch Workflow
Complete end-to-end product launch process using multi-agent coordination.
## Timeline: 10 Weeks
**Phases**:
1. Research & Planning (Week 1-2)
2. Product Development (Week 3-6)
3. Marketing & Sales Prep (Week 5-8)
4. Launch Execution (Week 9)
5. Post-Launch Monitoring (Week 10+)
---
## Phase 1: Research & Planning (Week 1-2)
### Week 1: Market Research
**Sequential Workflow**:
```javascript
// Step 1: Market Analysis
await Task("Market Researcher", `
Conduct comprehensive market analysis:
- Target market size and demographics
- Competitor analysis (features, pricing, positioning)
- Market trends and opportunities
- Customer pain points and needs
Store findings in memory: market-research/product-launch-2024/analysis
`, "researcher");
// Step 2: Retrieve results and delegate to Business Analyst
const marketData = await memory_retrieve('market-research/product-launch-2024/analysis');
await Task("Business Analyst", `
Using market data: ${marketData}
Perform:
- SWOT analysis
- Business model validation
- Revenue projections
- Risk assessment
Store results: business-analysis/product-launch-2024/strategy
`, "analyst");
// Step 3: Product Strategy
await Task("Product Manager", `
Using:
- Market analysis: market-research/product-launch-2024/analysis
- Business analysis: business-analysis/product-launch-2024/strategy
Define:
- Product positioning
- Feature prioritization (MVP vs future)
- Pricing strategy
- Go-to-market strategy
Store: pro