sop-product-launch
Complete product launch workflow coordinating 15+ specialist agents across research, development, marketing, sales, and operations. Uses sequential and parallel orchestration for 10-week launch timeline.
Best use case
sop-product-launch is best used when you need a repeatable AI agent workflow instead of a one-off prompt. It is especially useful for teams working in multi. Complete product launch workflow coordinating 15+ specialist agents across research, development, marketing, sales, and operations. Uses sequential and parallel orchestration for 10-week launch timeline.
Complete product launch workflow coordinating 15+ specialist agents across research, development, marketing, sales, and operations. Uses sequential and parallel orchestration for 10-week launch timeline.
Users should expect a more consistent workflow output, faster repeated execution, and less time spent rewriting prompts from scratch.
Practical example
Example input
Use the "sop-product-launch" skill to help with this workflow task. Context: Complete product launch workflow coordinating 15+ specialist agents across research, development, marketing, sales, and operations. Uses sequential and parallel orchestration for 10-week launch timeline.
Example output
A structured workflow result with clearer steps, more consistent formatting, and an output that is easier to reuse in the next run.
When to use this skill
- Use this skill when you want a reusable workflow rather than writing the same prompt again and again.
When not to use this skill
- Do not use this when you only need a one-off answer and do not need a reusable workflow.
- Do not use it if you cannot install or maintain the related files, repository context, or supporting tools.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/sop-product-launch/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How sop-product-launch Compares
| Feature / Agent | sop-product-launch | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Complete product launch workflow coordinating 15+ specialist agents across research, development, marketing, sales, and operations. Uses sequential and parallel orchestration for 10-week launch timeline.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
AI Agent for Product Research
Browse AI agent skills for product research, competitive analysis, customer discovery, and structured product decision support.
AI Agent for SaaS Idea Validation
Use AI agent skills for SaaS idea validation, market research, customer discovery, competitor analysis, and documenting startup hypotheses.
SKILL.md Source
# 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: product-strategy/product-launch-2024/plan
`, "planner");
```
**Deliverables**:
- Market analysis report
- SWOT analysis
- Product strategy document
- Launch timeline
---
## Phase 2: Product Development (Week 3-6)
### Week 3-4: Technical Architecture & Development
**Parallel Workflow** (Backend + Frontend + Mobile):
```javascript
// Initialize development swarm
await mcp__ruv-swarm__swarm_init({
topology: 'mesh',
maxAgents: 6,
strategy: 'adaptive'
});
// Parallel agent spawning
const [backend, frontend, mobile, database, security, tester] = await Promise.all([
Task("Backend Developer", `
Using product requirements from: product-strategy/product-launch-2024/plan
Build:
- REST API with authentication
- Database schema and migrations
- Business logic layer
- Integration with payment gateway
Store API spec: backend-dev/product-launch-2024/api-spec
Store schema: backend-dev/product-launch-2024/db-schema
`, "backend-dev"),
Task("Frontend Developer", `
Using API spec from: backend-dev/product-launch-2024/api-spec
Build:
- React web application
- Component library
- State management (Redux/Context)
- API integration layer
Store components: frontend-dev/product-launch-2024/components
`, "coder"),
Task("Mobile Developer", `
Using API spec from: backend-dev/product-launch-2024/api-spec
Build:
- React Native mobile app (iOS + Android)
- Native modules for device features
- Offline sync capability
- Push notifications
Store builds: mobile-dev/product-launch-2024/builds
`, "mobile-dev"),
Task("Database Architect", `
Design optimized database:
- Schema design for scalability
- Indexing strategy
- Query optimization
- Backup and recovery plan
Store: database/product-launch-2024/architecture
`, "code-analyzer"),
Task("Security Specialist", `
Implement security:
- Authentication (OAuth 2.0 + JWT)
- Authorization (RBAC)
- Data encryption (at rest + in transit)
- Security audit and penetration testing
Store audit: security/product-launch-2024/audit
`, "reviewer"),
Task("QA Engineer", `
Create test suite:
- Unit tests (90%+ coverage)
- Integration tests
- E2E tests
- Performance tests
- Security tests
Store test plan: testing/product-launch-2024/plan
`, "tester")
]);
// Wait for all parallel tasks to complete
await Promise.all([backend, frontend, mobile, database, security, tester]);
```
### Week 5-6: Integration & Testing
**Sequential Workflow**:
```javascript
// Step 1: System Integration
await Task("System Integrator", `
Integrate all components:
- Backend API + Frontend web
- Backend API + Mobile apps
- Payment gateway integration
- Third-party services
Run integration tests
Store integration report: integration/product-launch-2024/report
`, "reviewer");
// Step 2: Performance Optimization
await Task("Performance Optimizer", `
Optimize system performance:
- API response time < 200ms
- Frontend load time < 2s
- Mobile app startup < 1s
- Database query optimization
Run benchmarks
Store metrics: performance/product-launch-2024/metrics
`, "perf-analyzer");
// Step 3: Security Audit
await Task("Security Auditor", `
Final security audit:
- Vulnerability scanning
- Penetration testing
- Compliance check (GDPR, CCPA)
- Security best practices review
Generate compliance report
Store: security/product-launch-2024/final-audit
`, "security-manager");
```
**Deliverables**:
- Production-ready application (Web + Mobile)
- API documentation
- Security audit report
- Performance benchmarks
---
## Phase 3: Marketing & Sales Prep (Week 5-8)
### Week 5-6: Marketing Campaign
**Parallel Workflow**:
```javascript
const [campaign, content, seo] = await Promise.all([
Task("Marketing Specialist", `
Using product strategy: product-strategy/product-launch-2024/plan
Create launch campaign:
- Multi-channel campaign (email, social, paid ads)
- Audience segmentation and targeting
- Campaign timeline and budget
- KPI tracking setup
Store campaign: marketing/product-launch-2024/campaign
`, "researcher"), // Note: Will use marketing-specialist when rewritten
Task("Content Creator", `
Create launch content:
- Product landing page copy
- Blog posts (3-5 pre-launch, 10+ post-launch)
- Social media content (50+ posts)
- Email sequences (welcome, onboarding, nurture)
- Video demos and tutorials
Store content: marketing/product-launch-2024/content
`, "coder"), // Note: Will use content-specialist when created
Task("SEO Specialist", `
Optimize for search:
- Keyword research and mapping
- On-page SEO (meta tags, headers, schema)
- Content optimization
- Link building strategy
Store SEO plan: marketing/product-launch-2024/seo
`, "code-analyzer") // Note: Will use seo-specialist when created
]);
```
### Week 7-8: Sales & Support Preparation
**Sequential Workflow**:
```javascript
// Step 1: Sales Materials
await Task("Sales Operations", `
Create sales enablement:
- Product demo scripts
- Sales deck and pitch materials
- Pricing calculator and proposals
- Objection handling guide
- CRM setup and automation
Store sales kit: sales/product-launch-2024/enablement
`, "planner"); // Note: Will use sales-specialist when rewritten
// Step 2: Support Documentation
await Task("Documentation Specialist", `
Create support resources:
- User documentation (Getting Started, FAQs, Tutorials)
- API documentation
- Admin guide
- Troubleshooting guide
- Video tutorials
Store docs: docs/product-launch-2024/support
`, "api-docs");
// Step 3: Customer Support Setup
await Task("Support Operations", `
Set up support infrastructure:
- Help desk software configuration
- Support ticket workflows
- Knowledge base articles (50+)
- Support team training materials
- Escalation procedures
Store support setup: support/product-launch-2024/infrastructure
`, "planner"); // Note: Will use support-specialist when rewritten
```
**Deliverables**:
- Marketing campaign (ready to execute)
- Content library (landing page, blog, social, email)
- Sales enablement kit
- Support documentation and infrastructure
---
## Phase 4: Launch Execution (Week 9)
### Launch Week: Coordinated Execution
**Sequential + Parallel**:
```javascript
// Day 1: Final Pre-Launch Checks
await Task("Production Validator", `
Final validation checklist:
- All tests passing (unit, integration, E2E)
- Security audit complete and passed
- Performance benchmarks met
- Monitoring and alerting active
- Backup and recovery tested
- Rollback plan ready
Generate go/no-go report
Store: validation/product-launch-2024/final-check
`, "production-validator");
// Day 2: Deployment
await Task("DevOps Engineer", `
Production deployment:
- Deploy backend to production (blue-green)
- Deploy frontend to CDN
- Submit mobile apps to App Store + Play Store
- Configure production databases
- Enable monitoring and alerting
Store deployment report: devops/product-launch-2024/deployment
`, "cicd-engineer");
// Day 3-4: Launch Marketing (Parallel)
const [emailCampaign, socialCampaign, paidAds, prOutreach] = await Promise.all([
Task("Email Marketing", `
Execute email campaign:
- Send launch announcement to existing list
- Trigger automated welcome sequences
- Monitor open rates, click rates
Store metrics: marketing/product-launch-2024/email-metrics
`, "researcher"),
Task("Social Media", `
Execute social campaign:
- Post launch announcements (all channels)
- Engage with audience comments
- Share user testimonials and demos
Store metrics: marketing/product-launch-2024/social-metrics
`, "researcher"),
Task("Paid Advertising", `
Launch paid campaigns:
- Google Ads (Search + Display)
- Facebook/Instagram Ads
- LinkedIn Ads (if B2B)
- Monitor ROI and adjust bids
Store metrics: marketing/product-launch-2024/ad-metrics
`, "researcher"),
Task("PR Outreach", `
Media and influencer outreach:
- Send press releases
- Influencer partnerships
- Product Hunt launch
- Tech blog features
Store coverage: marketing/product-launch-2024/pr-coverage
`, "researcher")
]);
// Day 5: Monitor and Optimize
await Task("Analytics Monitor", `
Real-time monitoring:
- Application performance and uptime
- User signups and activation rates
- Marketing campaign performance
- Customer support ticket volume
- Revenue and conversion tracking
Generate daily reports
Store: analytics/product-launch-2024/daily-metrics
`, "performance-monitor");
```
**Deliverables**:
- Live production application
- Active marketing campaigns across all channels
- Sales team actively selling
- Support team handling inquiries
---
## Phase 5: Post-Launch Monitoring (Week 10+)
### Continuous Optimization
**Weekly Workflow**:
```javascript
// Every Monday: Weekly Review
await Task("Weekly Review Coordinator", `
Aggregate and analyze:
- User metrics: memory_retrieve('analytics/product-launch-2024/daily-metrics')
- Marketing performance: memory_retrieve('marketing/product-launch-2024/*-metrics')
- Sales pipeline: memory_retrieve('sales/product-launch-2024/pipeline')
- Support issues: memory_retrieve('support/product-launch-2024/tickets')
- Revenue: memory_retrieve('finance/product-launch-2024/revenue')
Generate insights and recommendations
Identify issues requiring attention
Store weekly report: reports/product-launch-2024/week-${weekNum}
`, "analyst");
// Based on insights, spawn specialist agents for optimization
// Example: If conversion rate is low
await Task("Conversion Optimizer", `
Improve conversion rate:
- A/B testing on landing page
- Funnel analysis and optimization
- Pricing test variations
- Checkout flow improvements
Store optimization results: optimization/product-launch-2024/conversion
`, "researcher");
// Example: If support ticket volume is high
await Task("Support Optimizer", `
Reduce support burden:
- Identify common issues
- Create self-service solutions
- Improve documentation
- Proactive user education
Store support improvements: optimization/product-launch-2024/support
`, "planner");
```
**Deliverables**:
- Weekly performance reports
- Continuous product improvements
- Optimized marketing campaigns
- Improved customer experience
---
## Success Metrics
### Technical Metrics
- **Uptime**: 99.9%+
- **API Response Time**: < 200ms (p95)
- **Page Load Time**: < 2s
- **Error Rate**: < 0.1%
- **Test Coverage**: > 90%
### Business Metrics
- **User Signups**: Target (defined in strategy)
- **Activation Rate**: > 40%
- **Conversion Rate**: > 2.5%
- **Customer Acquisition Cost**: < $X (defined)
- **Monthly Recurring Revenue**: Target (defined)
- **Churn Rate**: < 5%
### Marketing Metrics
- **Campaign ROI**: > 3:1
- **Email Open Rate**: > 25%
- **Social Engagement**: > 5%
- **Paid Ad CTR**: > 2%
- **Organic Traffic Growth**: > 20% MoM
### Support Metrics
- **Response Time**: < 2 hours
- **Resolution Time**: < 24 hours
- **Customer Satisfaction**: > 4.5/5
- **Self-Service Rate**: > 60%
---
## Agent Coordination Summary
**Total Agents Used**: 15+
**Execution Pattern**: Sequential + Parallel
**Timeline**: 10 weeks
**Memory Namespaces**: 20+ (organized by domain/task/data)
**Key Agents**:
1. researcher - Market analysis, campaign execution
2. analyst - Business analysis, weekly reviews
3. planner - Product strategy, sales operations, support setup
4. backend-dev - API development
5. coder - Frontend development
6. mobile-dev - Mobile app development
7. code-analyzer - Database architecture, SEO
8. reviewer - Security, system integration
9. tester - QA and testing
10. perf-analyzer - Performance optimization
11. security-manager - Security audits
12. production-validator - Final validation
13. cicd-engineer - Deployment
14. performance-monitor - Analytics monitoring
15. api-docs - Documentation
---
## Usage
```javascript
// Invoke this SOP skill
Skill("sop-product-launch")
// Or use with Claude Code Task tool for full orchestration
Task("Product Launch Orchestrator", "Execute complete product launch using SOP", "planner")
```
---
**Status**: Production-ready SOP
**Complexity**: High (15+ agents, 10 weeks)
**Pattern**: Hybrid sequential + parallel orchestrationRelated Skills
deploying-to-production
Automate creating a GitHub repository and deploying a web project to Vercel. Use when the user asks to deploy a website/app to production, publish a project, or set up GitHub + Vercel deployment.
production-code-audit
Autonomously deep-scan entire codebase line-by-line, understand architecture and patterns, then systematically transform it to production-grade, corporate-level professional quality with optimizations
office-productivity
Office productivity workflow covering document creation, spreadsheet automation, presentation generation, and integration with LibreOffice and Microsoft Office formats.
micro-saas-launcher
Expert in launching small, focused SaaS products fast - the indie hacker approach to building profitable software. Covers idea validation, MVP development, pricing, launch strategies, and growing to sustainable revenue. Ship in weeks, not months. Use when: micro saas, indie hacker, small saas, side project, saas mvp.
linux-production-shell-scripts
This skill should be used when the user asks to "create bash scripts", "automate Linux tasks", "monitor system resources", "backup files", "manage users", or "write production shell scripts". It provides ready-to-use shell script templates for system administration.
ai-wrapper-product
Expert in building products that wrap AI APIs (OpenAI, Anthropic, etc.) into focused tools people will pay for. Not just 'ChatGPT but different' - products that solve specific problems with AI. Covers prompt engineering for products, cost management, rate limiting, and building defensible AI businesses. Use when: AI wrapper, GPT product, AI tool, wrap AI, AI SaaS.
ai-product
Every product will be AI-powered. The question is whether you'll build it right or ship a demo that falls apart in production. This skill covers LLM integration patterns, RAG architecture, prompt engineering that scales, AI UX that users trust, and cost optimization that doesn't bankrupt you. Use when: keywords, file_patterns, code_patterns.
ai-product-photography
Generate professional AI product photography and commercial images. Models: FLUX, Imagen 3, Grok, Seedream for product shots, lifestyle images, mockups. Capabilities: studio lighting, lifestyle scenes, packaging, e-commerce photos. Use for: e-commerce, Amazon listings, Shopify, marketing, advertising, mockups. Triggers: product photography, product shot, commercial photography, e-commerce images, amazon product photo, shopify images, product mockup, studio product shot, lifestyle product image, advertising photo, packshot, product render, product image ai
product-hunt-launch
Product Hunt launch optimization with specific specs, timing, and gallery strategy. Covers taglines, gallery images, maker comments, and launch day tactics. Use for: product launches, startup launches, side project launches, Product Hunt optimization. Triggers: product hunt, ph launch, product hunt launch, launch strategy, product launch, startup launch, product hunt tips, product hunt gallery, ph optimization, launch day, product hunt maker
product-changelog
Product changelog and release notes that users actually read. Covers categorization, user-facing language, visuals, and distribution. Use for: release notes, changelogs, product updates, feature announcements, versioning. Triggers: changelog, release notes, product update, version notes, what's new, feature announcement, product changelog, update log, release announcement, version release, product release, ship notes
when-releasing-new-product-orchestrate-product-launch
Use when launching a new product end-to-end from market research through post-launch monitoring. Orchestrates 15+ specialist agents across 5 phases in a 10-week coordinated workflow including research, development, marketing, sales preparation, launch execution, and ongoing optimization. Employs hierarchical coordination with parallel execution for efficiency and comprehensive coverage.
production-readiness
Comprehensive pre-deployment validation ensuring code is production-ready. Runs complete audit pipeline, performance benchmarks, security scan, documentation check, and generates deployment checklist.