Product Launch Orchestration Workflow
Complete end-to-end product launch workflow orchestrating 15+ specialist agents across research, development, marketing, launch execution, and post-launch monitoring. Designed for comprehensive product launches requiring coordination across technical, marketing, sales, and operations teams.
Overview
This SOP orchestrates a complete 10-week product launch using multi-agent coordination with hierarchical topology. The workflow balances sequential dependencies with parallel execution to optimize both speed and quality. Each phase produces specific deliverables stored in memory for subsequent phases to consume, ensuring continuity and context preservation.
Trigger Conditions
Use this workflow when:
- Launching a new product or major feature requiring comprehensive go-to-market
- Coordinating across multiple teams (engineering, marketing, sales, support)
- Need systematic approach covering all launch aspects from research to post-launch
- Timeline spans multiple weeks with clear phases and deliverables
- Require coordination between development, marketing campaigns, and sales enablement
- Post-launch monitoring and optimization are critical to success
Orchestrated Agents (15 Total)
Research & Planning Agents
market-researcher - Market analysis, competitive research, customer insights, trend identification
business-analyst - SWOT analysis, business model validation, revenue projections, risk assessment
product-manager - Product strategy, feature prioritization, positioning, go-to-market planning
Development & Engineering Agents
backend-developer - REST/GraphQL API development, server-side logic, business layer implementation
frontend-developer - Web UI development, React/Vue components, state management, client integration
mobile-developer - iOS/Android applications, React Native, cross-platform, offline sync
database-architect - Schema design, query optimization, indexing strategy, data modeling
security-specialist - Security audits, vulnerability scanning, compliance validation, penetration testing
qa-engineer - Test suite creation, integration testing, E2E testing, performance validation
Marketing & Sales Agents
marketing-specialist - Campaign creation, audience segmentation, multi-channel strategy, KPI tracking
sales-specialist - Sales enablement, pipeline setup, lead qualification, revenue forecasting
content-creator - Blog posts, social media content, email sequences, video scripts, landing pages
seo-specialist - Keyword research, on-page SEO, link building, search optimization
Launch & Operations Agents
devops-engineer - CI/CD pipelines, Docker/K8s deployment, infrastructure setup, monitoring configuration
production-validator - Production readiness assessment, go/no-go decision, deployment validation
performance-monitor - Metrics collection, alert configuration, anomaly detection, dashboard setup
customer-support-specialist - Support infrastructure, knowledge base, ticket workflows, team training
Workflow Phases
Phase 1: Research & Planning (Week 1-2, Sequential → Parallel)
Duration: 2 weeks
Execution Mode: Sequential analysis then parallel strategy
Agents: market-researcher, business-analyst, product-manager
Process:
Conduct Comprehensive Market Analysis (Day 1-3)
npx claude-flow hooks pre-task --description "Product launch: ${PRODUCT_NAME}"
npx claude-flow swarm init --topology hierarchical --max-agents 15
npx claude-flow agent spawn --type researcher
Spawn market-researcher agent to:
- Analyze target market size, demographics, and segmentation
- Research competitors (features, pricing, positioning, market share)
- Identify market trends, opportunities, and threats
- Document customer pain points and unmet needs
- Validate product-market fit hypotheses
Memory Storage:
npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-1/market-researcher/analysis" \
--value "${MARKET_ANALYSIS_JSON}"
Perform Business Analysis (Day 4-6)
Retrieve market analysis and spawn business-analyst agent:
npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-1/market-researcher/analysis"
npx claude-flow agent spawn --type analyst
Conduct:
- SWOT analysis (Strengths, Weaknesses, Opportunities, Threats)
- Business model validation and monetization strategy
- Revenue projections and financial modeling (3-year forecast)
- Risk assessment and mitigation strategies
- Competitive differentiation analysis
Memory Storage:
npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-1/business-analyst/strategy"
Define Product Strategy (Day 7-10)
Retrieve market and business analysis, spawn product-manager agent:
npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/phase-1/*/analysis"
npx claude-flow agent spawn --type planner
Define:
- Product positioning statement and value proposition
- Feature prioritization (MVP vs future roadmap)
- Pricing strategy (tiers, packaging, discounts)
- Go-to-market strategy and launch timeline
- Success metrics and KPIs
Memory Storage:
npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-1/product-manager/plan"
npx claude-flow hooks post-task --task-id "phase-1-planning"
Outputs:
- Market analysis report with competitive landscape
- SWOT analysis and business validation
- Product strategy document with positioning and pricing
- Launch timeline with milestones
Success Criteria:
Phase 2: Product Development (Week 3-8, Parallel Execution)
Duration: 6 weeks
Execution Mode: Parallel with mesh coordination
Agents: backend-developer, frontend-developer, mobile-developer, database-architect, security-specialist, qa-engineer
Process:
Initialize Development Swarm (Day 1)
npx claude-flow swarm init --topology mesh --max-agents 6 --strategy adaptive
npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-1/product-manager/plan"
Parallel Development Execution (Week 3-6)
Spawn all development agents concurrently:
# Backend development
npx claude-flow agent spawn --type backend-dev --capabilities "api,authentication,database"
# Frontend development
npx claude-flow agent spawn --type coder --capabilities "react,ui,state-management"
# Mobile development
npx claude-flow agent spawn --type mobile-dev --capabilities "react-native,ios,android"
# Database architecture
npx claude-flow agent spawn --type code-analyzer --capabilities "database,schema,optimization"
# Security implementation
npx claude-flow agent spawn --type reviewer --capabilities "security,audit,compliance"
# QA and testing
npx claude-flow agent spawn --type tester --capabilities "testing,automation,coverage"
Backend Developer builds:
- REST/GraphQL API with comprehensive endpoints
- Authentication system (OAuth 2.0, JWT)
- Business logic layer with validation
- Payment gateway integration
- Database integration and ORM setup
Memory Pattern: product-launch/${LAUNCH_ID}/phase-2/backend-developer/{api-spec,schema,implementation}
Frontend Developer builds:
- React/Vue web application with responsive design
- Component library following design system
- State management (Redux/Context/Zustand)
- API integration layer with error handling
- Progressive Web App (PWA) capabilities
Memory Pattern: product-launch/${LAUNCH_ID}/phase-2/frontend-developer/{components,architecture}
Mobile Developer builds:
- React Native applications (iOS + Android)
- Native modules for device features
- Offline-first architecture with sync
- Push notifications integration
- Deep linking and analytics
Memory Pattern: product-launch/${LAUNCH_ID}/phase-2/mobile-developer/{builds,native-modules}
Database Architect designs:
- Optimized schema for scalability
- Indexing strategy for performance
- Query optimization and stored procedures
- Data migration strategy
- Backup, recovery, and disaster recovery plans
Memory Pattern: product-launch/${LAUNCH_ID}/phase-2/database-architect/{schema,indexes,migrations}
Security Specialist implements:
- OAuth 2.0 + JWT authentication
- Role-based access control (RBAC)
- Data encryption (at rest and in transit)
- Security audit and penetration testing
- Compliance validation (GDPR, CCPA, SOC2)
Memory Pattern: product-launch/${LAUNCH_ID}/phase-2/security-specialist/{audit,compliance}
QA Engineer creates:
- Unit test suite (target: 90%+ coverage)
- Integration test scenarios
- End-to-end test workflows
- Performance benchmarks
- Automated test pipeline
Memory Pattern: product-launch/${LAUNCH_ID}/phase-2/qa-engineer/{test-plan,coverage-report}
Integration & Testing (Week 7-8)
Sequential integration after parallel development:
npx claude-flow task orchestrate --strategy sequential --task "system-integration"
- Integrate all components (backend + frontend + mobile)
- Run full integration test suite
- Performance optimization (< 200ms API response, < 2s page load)
- Final security audit
Coordination Scripts:
npx claude-flow hooks post-edit --file "src/**/*.{ts,tsx}" \
--memory-key "product-launch/${LAUNCH_ID}/phase-2/integration/status"
npx claude-flow hooks notify --message "Phase 2 development complete"
Outputs:
- Production-ready web application
- Native mobile applications (iOS + Android)
- API documentation (OpenAPI spec)
- Security audit report
- Performance benchmark results
- Test coverage report (>90%)
Success Criteria:
Phase 3: Marketing & Sales Preparation (Week 5-9, Parallel Execution)
Duration: 4-5 weeks (overlaps with development)
Execution Mode: Parallel marketing campaigns
Agents: marketing-specialist, sales-specialist, content-creator, seo-specialist
Process:
Initialize Marketing Swarm (Week 5)
npx claude-flow swarm init --topology star --max-agents 4 --strategy specialized
npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-1/product-manager/plan"
Parallel Campaign Creation (Week 5-7)
Spawn all marketing agents concurrently:
npx claude-flow task orchestrate --strategy parallel --priority high
Marketing Specialist creates:
- Multi-channel campaign strategy (email, social, paid ads, PR)
- Audience segmentation and targeting
- Campaign timeline aligned with launch date
- Budget allocation across channels
- KPI tracking and analytics setup
Memory Pattern: product-launch/${LAUNCH_ID}/phase-3/marketing-specialist/{campaign,metrics}
Content Creator produces:
- Product landing page copy (hero, features, testimonials, CTA)
- Blog posts (3-5 pre-launch, 10+ post-launch schedule)
- Social media content calendar (50+ posts across platforms)
- Email sequences (welcome, onboarding, nurture, re-engagement)
- Video demos, tutorials, and explainer videos
Memory Pattern: product-launch/${LAUNCH_ID}/phase-3/content-creator/{landing-page,blog,social,email}
SEO Specialist optimizes:
- Keyword research and mapping (primary, secondary, long-tail)
- On-page SEO (meta tags, headers, schema markup)
- Content optimization for search intent
- Link building strategy and outreach plan
- Technical SEO audit and fixes
Memory Pattern: product-launch/${LAUNCH_ID}/phase-3/seo-specialist/{keywords,seo-plan}
Sales Enablement (Week 7-9)
Sales Specialist prepares:
- Product demo scripts and presentation decks
- Sales playbook with objection handling
- Pricing calculator and proposal templates
- CRM configuration and automation workflows
- Sales pipeline stages and conversion targets
Memory Pattern: product-launch/${LAUNCH_ID}/phase-3/sales-specialist/{enablement,pipeline}
Support Infrastructure (Week 8-9)
Customer Support Specialist sets up:
- Help desk software and ticket workflows
- Knowledge base articles (50+ FAQ entries)
- Support team training materials
- Escalation procedures and SLAs
- Self-service resources (docs, videos, troubleshooting)
Memory Pattern: product-launch/${LAUNCH_ID}/phase-3/customer-support-specialist/{knowledge-base,workflows}
Coordination:
npx claude-flow hooks post-task --task-id "phase-3-marketing-prep"
npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/phase-3/*"
Outputs:
- Multi-channel marketing campaign (ready to execute)
- Complete content library (landing page, blog, social, email)
- SEO optimization plan with keyword targeting
- Sales enablement kit with playbooks and tools
- Support infrastructure and knowledge base
Success Criteria:
Phase 4: Launch Execution (Week 10, Sequential + Parallel)
Duration: 1 week
Execution Mode: Sequential validation, parallel launch activities
Agents: production-validator, devops-engineer, marketing-specialist, sales-specialist
Process:
Pre-Launch Validation (Day 1-2)
npx claude-flow hooks pre-task --description "Final production validation"
npx claude-flow agent spawn --type production-validator
Production Validator verifies:
- All tests passing (unit, integration, E2E)
- Security audit complete with zero critical issues
- Performance benchmarks met or exceeded
- Monitoring and alerting systems active
- Backup and recovery procedures tested
- Rollback plan documented and rehearsed
Generate go/no-go report:
npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-4/production-validator/final-check"
Production Deployment (Day 2-3)
npx claude-flow agent spawn --type cicd-engineer
DevOps Engineer executes:
- Blue-green deployment to production
- Frontend deployment to CDN (global distribution)
- Mobile app submission (App Store + Google Play)
- Production database configuration and migration
- Monitoring, logging, and alerting activation
Deployment Script:
npx claude-flow workflow create --name "production-deployment" \
--steps '["backend","frontend","mobile","monitoring"]'
npx claude-flow workflow execute --workflow-id "prod-deploy-${LAUNCH_ID}"
Memory Pattern: product-launch/${LAUNCH_ID}/phase-4/devops-engineer/{deployment-log,status}
Launch Day Marketing Blitz (Day 3-5, Parallel)
npx claude-flow task orchestrate --strategy parallel --max-agents 4
Parallel campaign execution:
- Email Marketing: Launch announcement to existing list, automated sequences
- Social Media: Coordinated posts across all platforms, engagement monitoring
- Paid Advertising: Google Ads, Facebook/Instagram, LinkedIn campaigns live
- PR Outreach: Press releases, influencer partnerships, Product Hunt launch
Marketing Coordination:
npx claude-flow hooks notify --message "Launch campaigns live"
npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-4/marketing/campaign-metrics"
Real-Time Monitoring (Day 3-7)
npx claude-flow agent spawn --type performance-monitor
Performance Monitor tracks:
- Application uptime and performance metrics
- User signups, activation, and conversion rates
- Marketing campaign ROI across all channels
- Support ticket volume and response times
- Revenue and transaction tracking
Generate hourly reports during launch week:
npx claude-flow hooks post-task --task-id "launch-monitoring" --export-metrics true
Outputs:
- Live production application (web + mobile)
- Active marketing campaigns across all channels
- Sales team actively engaging leads
- Support team handling customer inquiries
- Real-time monitoring dashboards
Success Criteria:
Phase 5: Post-Launch Monitoring & Optimization (Week 11+, Continuous)
Duration: Ongoing
Execution Mode: Weekly reviews with adaptive optimization
Agents: performance-monitor, business-analyst, Various optimization agents
Process:
Weekly Performance Review (Every Monday)
npx claude-flow hooks session-restore --session-id "launch-${LAUNCH_ID}"
npx claude-flow agent spawn --type analyst
Business Analyst aggregates:
- User acquisition metrics (signups, activations, churn)
- Marketing performance (campaigns, channels, ROI)
- Sales pipeline progress (leads, opportunities, revenue)
- Support metrics (tickets, resolution time, satisfaction)
- Product usage analytics (features, engagement, retention)
Retrieve all metrics:
npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/phase-5/week-${WEEK_NUM}/*"
Generate insights and recommendations:
npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-5/weekly-report/week-${WEEK_NUM}"
Adaptive Optimization (Continuous)
Based on weekly insights, spawn specialist agents for targeted improvements:
If conversion rate is low:
npx claude-flow agent spawn --type optimizer --focus "conversion-optimization"
- A/B testing on landing page elements
- Funnel analysis and friction point identification
- Pricing experiment variations
- Checkout flow optimization
If support volume is high:
npx claude-flow agent spawn --type planner --focus "support-optimization"
- Identify common issues and root causes
- Create self-service solutions and documentation
- Proactive user education (tooltips, guides, videos)
- Product improvements to prevent issues
If marketing ROI is below target:
npx claude-flow agent spawn --type researcher --focus "marketing-optimization"
- Channel performance analysis
- Audience segment refinement
- Ad creative and copy testing
- Budget reallocation to high-performing channels
Continuous Improvement Cycle
npx claude-flow hooks post-task --task-id "weekly-optimization-${WEEK_NUM}"
npx claude-flow hooks session-end --export-metrics true
Store learnings for future launches:
npx claude-flow memory store --key "product-launch/learnings/${LAUNCH_ID}" \
--value "${LESSONS_LEARNED_JSON}"
Outputs:
- Weekly performance reports with trends
- Continuous product improvements and iterations
- Optimized marketing campaigns (improved ROI)
- Enhanced customer experience (reduced friction)
- Documented learnings for future launches
Success Criteria:
Memory Coordination
Namespace Convention
All workflow data follows this hierarchical pattern:
product-launch/{launch-id}/phase-{N}/{agent-type}/{deliverable-type}
Examples:
product-launch/saas-app-v1/phase-1/market-researcher/analysis
product-launch/saas-app-v1/phase-2/backend-developer/api-spec
product-launch/saas-app-v1/phase-3/marketing-specialist/campaign
product-launch/saas-app-v1/phase-4/devops-engineer/deployment-log
product-launch/saas-app-v1/phase-5/weekly-report/week-1
Cross-Phase Data Flow
Phase 1 → Phase 2:
# Phase 2 agents retrieve Phase 1 strategy
npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-1/product-manager/plan"
Phase 2 → Phase 3:
# Marketing agents retrieve product specs
npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-2/backend-developer/api-spec"
Phase 3 → Phase 4:
# Deployment retrieves marketing timeline
npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-3/marketing-specialist/campaign"
Phase 4 → Phase 5:
# Monitoring retrieves launch metrics baseline
npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/phase-4/*/metrics"
Scripts & Automation
Pre-Workflow Initialization
#!/bin/bash
# Initialize product launch workflow
PRODUCT_NAME="$1"
LAUNCH_ID="${PRODUCT_NAME}-$(date +%Y%m%d)"
# Setup coordination
npx claude-flow hooks pre-task --description "Product launch: ${PRODUCT_NAME}"
# Initialize hierarchical swarm
npx claude-flow swarm init --topology hierarchical --max-agents 15 --strategy adaptive
# Store launch metadata
npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/metadata" --value '{
"product_name": "'"${PRODUCT_NAME}"'",
"launch_id": "'"${LAUNCH_ID}"'",
"start_date": "'"$(date -I)"'",
"timeline_weeks": 10,
"phases": 5
}'
echo "✅ Product launch initialized: ${LAUNCH_ID}"
Per-Phase Coordination
#!/bin/bash
# Execute specific phase
LAUNCH_ID="$1"
PHASE="$2"
# Restore session context
npx claude-flow hooks session-restore --session-id "launch-${LAUNCH_ID}"
# Retrieve prior phase outputs
if [ "$PHASE" -gt 1 ]; then
PREV_PHASE=$((PHASE - 1))
npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/phase-${PREV_PHASE}/*"
fi
# Execute phase-specific workflow
case $PHASE in
1)
echo "🔬 Executing Phase 1: Research & Planning"
npx claude-flow task orchestrate --strategy sequential --task "market-research"
;;
2)
echo "⚙️ Executing Phase 2: Product Development"
npx claude-flow task orchestrate --strategy parallel --max-agents 6
;;
3)
echo "📢 Executing Phase 3: Marketing & Sales Prep"
npx claude-flow task orchestrate --strategy parallel --max-agents 4
;;
4)
echo "🚀 Executing Phase 4: Launch Execution"
npx claude-flow task orchestrate --strategy sequential --priority critical
;;
5)
echo "📊 Executing Phase 5: Post-Launch Monitoring"
npx claude-flow task orchestrate --strategy adaptive
;;
esac
# Store phase completion
npx claude-flow hooks post-task --task-id "phase-${PHASE}-complete"
Post-Workflow Summary
#!/bin/bash
# Generate launch summary report
LAUNCH_ID="$1"
# Retrieve all phase data
npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/*" > "/tmp/${LAUNCH_ID}-data.json"
# Generate summary
npx claude-flow hooks post-task --task-id "launch-${LAUNCH_ID}" --export-metrics true
# Export workflow for future reference
npx claude-flow hooks session-end --export-workflow "/tmp/${LAUNCH_ID}-workflow.json"
echo "✅ Product launch complete: ${LAUNCH_ID}"
echo "📊 Summary report: /tmp/${LAUNCH_ID}-data.json"
echo "📈 Workflow export: /tmp/${LAUNCH_ID}-workflow.json"
Success Metrics
Technical Metrics (Phase 2 & 4)
- Uptime: 99.9%+ during launch week
- API Response Time: < 200ms (p95)
- Page Load Time: < 2 seconds
- Error Rate: < 0.1%
- Test Coverage: > 90%
- Mobile App Ratings: > 4.0 stars
Business Metrics (Phase 5)
- User Signups: Target defined in Phase 1 strategy
- Activation Rate: > 40% (activated within 7 days)
- Conversion Rate: > 2.5% (free to paid)
- Customer Acquisition Cost (CAC): Within budget
- Monthly Recurring Revenue (MRR): Target growth trajectory
- Churn Rate: < 5% monthly
- Net Promoter Score (NPS): > 50
Marketing Metrics (Phase 3 & 4)
- Campaign ROI: > 3:1 across all channels
- Email Open Rate: > 25%
- Social Engagement: > 5% (likes, comments, shares)
- Paid Ad CTR: > 2%
- Organic Traffic Growth: > 20% month-over-month
- Press Coverage: 5+ publications
Support Metrics (Phase 5)
- First Response Time: < 2 hours
- Resolution Time: < 24 hours
- Customer Satisfaction (CSAT): > 4.5/5
- Self-Service Rate: > 60% (resolved without ticket)
- Ticket Volume: Declining trend
Usage Examples
Example 1: SaaS Product Launch
# Initialize launch
PRODUCT="TaskFlow AI"
LAUNCH_ID="taskflow-ai-20250101"
# Phase 1: Market Research (Week 1-2)
npx claude-flow agent spawn --type researcher
# Output: Market size $2B TAM, 50k potential customers identified
# Phase 2: Development (Week 3-8)
npx claude-flow swarm init --topology mesh --max-agents 6
# Output: Web app + mobile apps + API complete with 93% test coverage
# Phase 3: Marketing (Week 5-9)
npx claude-flow task orchestrate --strategy parallel
# Output: Campaign across 5 channels, 100+ content pieces created
# Phase 4: Launch (Week 10)
npx claude-flow workflow execute --workflow-id "prod-deploy-${LAUNCH_ID}"
# Output: Deployed successfully, 1,000 signups in first week
# Phase 5: Optimization (Week 11+)
npx claude-flow hooks session-restore --session-id "launch-${LAUNCH_ID}"
# Output: Weekly reports, 15% improvement in conversion rate
Example 2: Mobile App Launch
# Focus on mobile-first approach
LAUNCH_ID="fitness-tracker-20250201"
# Phase 2: Prioritize mobile development
npx claude-flow agent spawn --type mobile-dev --priority high
npx claude-flow agent spawn --type backend-dev --priority high
# Output: React Native app (iOS + Android) with offline-first architecture
# Phase 3: App store optimization
npx claude-flow agent spawn --type seo-specialist --focus "app-store-optimization"
# Output: ASO strategy, 50+ keywords, compelling app store listings
# Phase 4: Soft launch to beta users
npx claude-flow workflow execute --workflow-id "beta-deploy-${LAUNCH_ID}"
# Output: 500 beta users, 4.8 star rating, feedback incorporated
Example 3: Enterprise B2B Launch
# Enterprise focus with sales-led approach
LAUNCH_ID="enterprise-analytics-20250301"
# Phase 1: Enterprise market research
npx claude-flow agent spawn --type researcher --focus "enterprise-b2b"
# Output: Target 500 enterprise accounts, decision-maker personas
# Phase 3: Sales enablement priority
npx claude-flow agent spawn --type sales-specialist --priority critical
# Output: Enterprise sales playbook, ROI calculator, case studies
# Phase 4: Account-based marketing launch
npx claude-flow task orchestrate --strategy "account-based-marketing"
# Output: 50 target accounts engaged, 10 pilot customers secured
GraphViz Process Diagram
See when-releasing-new-product-orchestrate-product-launch-process.dot for visual workflow representation showing:
- 5 phases with sequential and parallel execution patterns
- 15+ agent interactions and data flows
- Memory coordination points between phases
- Decision gates and validation checkpoints
- Optimization loops in Phase 5
Quality Checklist
Before considering launch complete, verify:
All phase deliverables stored in memory following namespace convention:
Workflow Complexity: High (15+ agents, 10 weeks, 5 phases)
Coordination Pattern: Hierarchical with adaptive parallel execution
Memory Footprint: ~50-100 memory entries per launch
Typical Use Case: Major product launches requiring comprehensive coordination
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: dnyoussef-ai-chrome-extension-when-releasing-new-product-orc3description: Product Launch Orchestration Workflow4---56# Product Launch Orchestration Workflow78Complete end-to-end product launch workflow orchestrating 15+ specialist agents across research, development, marketing, launch execution, and post-launch monitoring. Designed for comprehensive product launches requiring coordination across technical, marketing, sales, and operations teams.910## Overview1112This SOP orchestrates a complete 10-week product launch using multi-agent coordination with hierarchical topology. The workflow balances sequential dependencies with parallel execution to optimize both speed and quality. Each phase produces specific deliverables stored in memory for subsequent phases to consume, ensuring continuity and context preservation.1314## Trigger Conditions1516Use this workflow when:17- Launching a new product or major feature requiring comprehensive go-to-market18- Coordinating across multiple teams (engineering, marketing, sales, support)19- Need systematic approach covering all launch aspects from research to post-launch20- Timeline spans multiple weeks with clear phases and deliverables21- Require coordination between development, marketing campaigns, and sales enablement22- Post-launch monitoring and optimization are critical to success2324## Orchestrated Agents (15 Total)2526### Research & Planning Agents27- **`market-researcher`** - Market analysis, competitive research, customer insights, trend identification28- **`business-analyst`** - SWOT analysis, business model validation, revenue projections, risk assessment29- **`product-manager`** - Product strategy, feature prioritization, positioning, go-to-market planning3031### Development & Engineering Agents32- **`backend-developer`** - REST/GraphQL API development, server-side logic, business layer implementation33- **`frontend-developer`** - Web UI development, React/Vue components, state management, client integration34- **`mobile-developer`** - iOS/Android applications, React Native, cross-platform, offline sync35- **`database-architect`** - Schema design, query optimization, indexing strategy, data modeling36- **`security-specialist`** - Security audits, vulnerability scanning, compliance validation, penetration testing37- **`qa-engineer`** - Test suite creation, integration testing, E2E testing, performance validation3839### Marketing & Sales Agents40- **`marketing-specialist`** - Campaign creation, audience segmentation, multi-channel strategy, KPI tracking41- **`sales-specialist`** - Sales enablement, pipeline setup, lead qualification, revenue forecasting42- **`content-creator`** - Blog posts, social media content, email sequences, video scripts, landing pages43- **`seo-specialist`** - Keyword research, on-page SEO, link building, search optimization4445### Launch & Operations Agents46- **`devops-engineer`** - CI/CD pipelines, Docker/K8s deployment, infrastructure setup, monitoring configuration47- **`production-validator`** - Production readiness assessment, go/no-go decision, deployment validation48- **`performance-monitor`** - Metrics collection, alert configuration, anomaly detection, dashboard setup49- **`customer-support-specialist`** - Support infrastructure, knowledge base, ticket workflows, team training5051## Workflow Phases5253### Phase 1: Research & Planning (Week 1-2, Sequential → Parallel)5455**Duration**: 2 weeks56**Execution Mode**: Sequential analysis then parallel strategy57**Agents**: `market-researcher`, `business-analyst`, `product-manager`5859**Process**:60611. **Conduct Comprehensive Market Analysis** (Day 1-3)62 ```bash63 npx claude-flow hooks pre-task --description "Product launch: ${PRODUCT_NAME}"64 npx claude-flow swarm init --topology hierarchical --max-agents 1565 npx claude-flow agent spawn --type researcher66 ```6768 Spawn `market-researcher` agent to:69 - Analyze target market size, demographics, and segmentation70 - Research competitors (features, pricing, positioning, market share)71 - Identify market trends, opportunities, and threats72 - Document customer pain points and unmet needs73 - Validate product-market fit hypotheses7475 **Memory Storage**:76 ```bash77 npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-1/market-researcher/analysis" \78 --value "${MARKET_ANALYSIS_JSON}"79 ```80812. **Perform Business Analysis** (Day 4-6)8283 Retrieve market analysis and spawn `business-analyst` agent:84 ```bash85 npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-1/market-researcher/analysis"86 npx claude-flow agent spawn --type analyst87 ```8889 Conduct:90 - SWOT analysis (Strengths, Weaknesses, Opportunities, Threats)91 - Business model validation and monetization strategy92 - Revenue projections and financial modeling (3-year forecast)93 - Risk assessment and mitigation strategies94 - Competitive differentiation analysis9596 **Memory Storage**:97 ```bash98 npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-1/business-analyst/strategy"99 ```1001013. **Define Product Strategy** (Day 7-10)102103 Retrieve market and business analysis, spawn `product-manager` agent:104 ```bash105 npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/phase-1/*/analysis"106 npx claude-flow agent spawn --type planner107 ```108109 Define:110 - Product positioning statement and value proposition111 - Feature prioritization (MVP vs future roadmap)112 - Pricing strategy (tiers, packaging, discounts)113 - Go-to-market strategy and launch timeline114 - Success metrics and KPIs115116 **Memory Storage**:117 ```bash118 npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-1/product-manager/plan"119 npx claude-flow hooks post-task --task-id "phase-1-planning"120 ```121122**Outputs**:123- Market analysis report with competitive landscape124- SWOT analysis and business validation125- Product strategy document with positioning and pricing126- Launch timeline with milestones127128**Success Criteria**:129- [ ] Market opportunity clearly quantified (TAM, SAM, SOM)130- [ ] Competitive differentiation documented131- [ ] Business model validated with financial projections132- [ ] Product strategy approved by stakeholders133- [ ] Phase 1 deliverables stored in memory134135---136137### Phase 2: Product Development (Week 3-8, Parallel Execution)138139**Duration**: 6 weeks140**Execution Mode**: Parallel with mesh coordination141**Agents**: `backend-developer`, `frontend-developer`, `mobile-developer`, `database-architect`, `security-specialist`, `qa-engineer`142143**Process**:1441451. **Initialize Development Swarm** (Day 1)146 ```bash147 npx claude-flow swarm init --topology mesh --max-agents 6 --strategy adaptive148 npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-1/product-manager/plan"149 ```1501512. **Parallel Development Execution** (Week 3-6)152153 Spawn all development agents concurrently:154 ```bash155 # Backend development156 npx claude-flow agent spawn --type backend-dev --capabilities "api,authentication,database"157158 # Frontend development159 npx claude-flow agent spawn --type coder --capabilities "react,ui,state-management"160161 # Mobile development162 npx claude-flow agent spawn --type mobile-dev --capabilities "react-native,ios,android"163164 # Database architecture165 npx claude-flow agent spawn --type code-analyzer --capabilities "database,schema,optimization"166167 # Security implementation168 npx claude-flow agent spawn --type reviewer --capabilities "security,audit,compliance"169170 # QA and testing171 npx claude-flow agent spawn --type tester --capabilities "testing,automation,coverage"172 ```173174 **Backend Developer** builds:175 - REST/GraphQL API with comprehensive endpoints176 - Authentication system (OAuth 2.0, JWT)177 - Business logic layer with validation178 - Payment gateway integration179 - Database integration and ORM setup180181 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-2/backend-developer/{api-spec,schema,implementation}`182183 **Frontend Developer** builds:184 - React/Vue web application with responsive design185 - Component library following design system186 - State management (Redux/Context/Zustand)187 - API integration layer with error handling188 - Progressive Web App (PWA) capabilities189190 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-2/frontend-developer/{components,architecture}`191192 **Mobile Developer** builds:193 - React Native applications (iOS + Android)194 - Native modules for device features195 - Offline-first architecture with sync196 - Push notifications integration197 - Deep linking and analytics198199 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-2/mobile-developer/{builds,native-modules}`200201 **Database Architect** designs:202 - Optimized schema for scalability203 - Indexing strategy for performance204 - Query optimization and stored procedures205 - Data migration strategy206 - Backup, recovery, and disaster recovery plans207208 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-2/database-architect/{schema,indexes,migrations}`209210 **Security Specialist** implements:211 - OAuth 2.0 + JWT authentication212 - Role-based access control (RBAC)213 - Data encryption (at rest and in transit)214 - Security audit and penetration testing215 - Compliance validation (GDPR, CCPA, SOC2)216217 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-2/security-specialist/{audit,compliance}`218219 **QA Engineer** creates:220 - Unit test suite (target: 90%+ coverage)221 - Integration test scenarios222 - End-to-end test workflows223 - Performance benchmarks224 - Automated test pipeline225226 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-2/qa-engineer/{test-plan,coverage-report}`2272283. **Integration & Testing** (Week 7-8)229230 Sequential integration after parallel development:231 ```bash232 npx claude-flow task orchestrate --strategy sequential --task "system-integration"233 ```234235 - Integrate all components (backend + frontend + mobile)236 - Run full integration test suite237 - Performance optimization (< 200ms API response, < 2s page load)238 - Final security audit239240 **Coordination Scripts**:241 ```bash242 npx claude-flow hooks post-edit --file "src/**/*.{ts,tsx}" \243 --memory-key "product-launch/${LAUNCH_ID}/phase-2/integration/status"244 npx claude-flow hooks notify --message "Phase 2 development complete"245 ```246247**Outputs**:248- Production-ready web application249- Native mobile applications (iOS + Android)250- API documentation (OpenAPI spec)251- Security audit report252- Performance benchmark results253- Test coverage report (>90%)254255**Success Criteria**:256- [ ] All applications functional and integrated257- [ ] Test coverage exceeds 90%258- [ ] Security audit passed with no critical issues259- [ ] Performance benchmarks met (API < 200ms, UI < 2s)260- [ ] All deliverables stored in memory for next phase261262---263264### Phase 3: Marketing & Sales Preparation (Week 5-9, Parallel Execution)265266**Duration**: 4-5 weeks (overlaps with development)267**Execution Mode**: Parallel marketing campaigns268**Agents**: `marketing-specialist`, `sales-specialist`, `content-creator`, `seo-specialist`269270**Process**:2712721. **Initialize Marketing Swarm** (Week 5)273 ```bash274 npx claude-flow swarm init --topology star --max-agents 4 --strategy specialized275 npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-1/product-manager/plan"276 ```2772782. **Parallel Campaign Creation** (Week 5-7)279280 Spawn all marketing agents concurrently:281 ```bash282 npx claude-flow task orchestrate --strategy parallel --priority high283 ```284285 **Marketing Specialist** creates:286 - Multi-channel campaign strategy (email, social, paid ads, PR)287 - Audience segmentation and targeting288 - Campaign timeline aligned with launch date289 - Budget allocation across channels290 - KPI tracking and analytics setup291292 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-3/marketing-specialist/{campaign,metrics}`293294 **Content Creator** produces:295 - Product landing page copy (hero, features, testimonials, CTA)296 - Blog posts (3-5 pre-launch, 10+ post-launch schedule)297 - Social media content calendar (50+ posts across platforms)298 - Email sequences (welcome, onboarding, nurture, re-engagement)299 - Video demos, tutorials, and explainer videos300301 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-3/content-creator/{landing-page,blog,social,email}`302303 **SEO Specialist** optimizes:304 - Keyword research and mapping (primary, secondary, long-tail)305 - On-page SEO (meta tags, headers, schema markup)306 - Content optimization for search intent307 - Link building strategy and outreach plan308 - Technical SEO audit and fixes309310 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-3/seo-specialist/{keywords,seo-plan}`3113123. **Sales Enablement** (Week 7-9)313314 **Sales Specialist** prepares:315 - Product demo scripts and presentation decks316 - Sales playbook with objection handling317 - Pricing calculator and proposal templates318 - CRM configuration and automation workflows319 - Sales pipeline stages and conversion targets320321 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-3/sales-specialist/{enablement,pipeline}`3223234. **Support Infrastructure** (Week 8-9)324325 **Customer Support Specialist** sets up:326 - Help desk software and ticket workflows327 - Knowledge base articles (50+ FAQ entries)328 - Support team training materials329 - Escalation procedures and SLAs330 - Self-service resources (docs, videos, troubleshooting)331332 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-3/customer-support-specialist/{knowledge-base,workflows}`333334 **Coordination**:335 ```bash336 npx claude-flow hooks post-task --task-id "phase-3-marketing-prep"337 npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/phase-3/*"338 ```339340**Outputs**:341- Multi-channel marketing campaign (ready to execute)342- Complete content library (landing page, blog, social, email)343- SEO optimization plan with keyword targeting344- Sales enablement kit with playbooks and tools345- Support infrastructure and knowledge base346347**Success Criteria**:348- [ ] Marketing campaigns ready for launch day349- [ ] Content calendar planned for 3 months post-launch350- [ ] SEO foundation established (technical + content)351- [ ] Sales team trained and equipped with materials352- [ ] Support infrastructure tested and operational353354---355356### Phase 4: Launch Execution (Week 10, Sequential + Parallel)357358**Duration**: 1 week359**Execution Mode**: Sequential validation, parallel launch activities360**Agents**: `production-validator`, `devops-engineer`, `marketing-specialist`, `sales-specialist`361362**Process**:3633641. **Pre-Launch Validation** (Day 1-2)365 ```bash366 npx claude-flow hooks pre-task --description "Final production validation"367 npx claude-flow agent spawn --type production-validator368 ```369370 **Production Validator** verifies:371 - All tests passing (unit, integration, E2E)372 - Security audit complete with zero critical issues373 - Performance benchmarks met or exceeded374 - Monitoring and alerting systems active375 - Backup and recovery procedures tested376 - Rollback plan documented and rehearsed377378 Generate go/no-go report:379 ```bash380 npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-4/production-validator/final-check"381 ```3823832. **Production Deployment** (Day 2-3)384 ```bash385 npx claude-flow agent spawn --type cicd-engineer386 ```387388 **DevOps Engineer** executes:389 - Blue-green deployment to production390 - Frontend deployment to CDN (global distribution)391 - Mobile app submission (App Store + Google Play)392 - Production database configuration and migration393 - Monitoring, logging, and alerting activation394395 **Deployment Script**:396 ```bash397 npx claude-flow workflow create --name "production-deployment" \398 --steps '["backend","frontend","mobile","monitoring"]'399 npx claude-flow workflow execute --workflow-id "prod-deploy-${LAUNCH_ID}"400 ```401402 **Memory Pattern**: `product-launch/${LAUNCH_ID}/phase-4/devops-engineer/{deployment-log,status}`4034043. **Launch Day Marketing Blitz** (Day 3-5, Parallel)405 ```bash406 npx claude-flow task orchestrate --strategy parallel --max-agents 4407 ```408409 Parallel campaign execution:410 - **Email Marketing**: Launch announcement to existing list, automated sequences411 - **Social Media**: Coordinated posts across all platforms, engagement monitoring412 - **Paid Advertising**: Google Ads, Facebook/Instagram, LinkedIn campaigns live413 - **PR Outreach**: Press releases, influencer partnerships, Product Hunt launch414415 **Marketing Coordination**:416 ```bash417 npx claude-flow hooks notify --message "Launch campaigns live"418 npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-4/marketing/campaign-metrics"419 ```4204214. **Real-Time Monitoring** (Day 3-7)422 ```bash423 npx claude-flow agent spawn --type performance-monitor424 ```425426 **Performance Monitor** tracks:427 - Application uptime and performance metrics428 - User signups, activation, and conversion rates429 - Marketing campaign ROI across all channels430 - Support ticket volume and response times431 - Revenue and transaction tracking432433 Generate hourly reports during launch week:434 ```bash435 npx claude-flow hooks post-task --task-id "launch-monitoring" --export-metrics true436 ```437438**Outputs**:439- Live production application (web + mobile)440- Active marketing campaigns across all channels441- Sales team actively engaging leads442- Support team handling customer inquiries443- Real-time monitoring dashboards444445**Success Criteria**:446- [ ] Production deployment successful with zero downtime447- [ ] All marketing campaigns launched on schedule448- [ ] Monitoring shows healthy system metrics449- [ ] First customer conversions recorded450- [ ] Support team responding within SLA451452---453454### Phase 5: Post-Launch Monitoring & Optimization (Week 11+, Continuous)455456**Duration**: Ongoing457**Execution Mode**: Weekly reviews with adaptive optimization458**Agents**: `performance-monitor`, `business-analyst`, Various optimization agents459460**Process**:4614621. **Weekly Performance Review** (Every Monday)463 ```bash464 npx claude-flow hooks session-restore --session-id "launch-${LAUNCH_ID}"465 npx claude-flow agent spawn --type analyst466 ```467468 **Business Analyst** aggregates:469 - User acquisition metrics (signups, activations, churn)470 - Marketing performance (campaigns, channels, ROI)471 - Sales pipeline progress (leads, opportunities, revenue)472 - Support metrics (tickets, resolution time, satisfaction)473 - Product usage analytics (features, engagement, retention)474475 Retrieve all metrics:476 ```bash477 npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/phase-5/week-${WEEK_NUM}/*"478 ```479480 Generate insights and recommendations:481 ```bash482 npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/phase-5/weekly-report/week-${WEEK_NUM}"483 ```4844852. **Adaptive Optimization** (Continuous)486487 Based on weekly insights, spawn specialist agents for targeted improvements:488489 **If conversion rate is low**:490 ```bash491 npx claude-flow agent spawn --type optimizer --focus "conversion-optimization"492 ```493 - A/B testing on landing page elements494 - Funnel analysis and friction point identification495 - Pricing experiment variations496 - Checkout flow optimization497498 **If support volume is high**:499 ```bash500 npx claude-flow agent spawn --type planner --focus "support-optimization"501 ```502 - Identify common issues and root causes503 - Create self-service solutions and documentation504 - Proactive user education (tooltips, guides, videos)505 - Product improvements to prevent issues506507 **If marketing ROI is below target**:508 ```bash509 npx claude-flow agent spawn --type researcher --focus "marketing-optimization"510 ```511 - Channel performance analysis512 - Audience segment refinement513 - Ad creative and copy testing514 - Budget reallocation to high-performing channels5155163. **Continuous Improvement Cycle**517 ```bash518 npx claude-flow hooks post-task --task-id "weekly-optimization-${WEEK_NUM}"519 npx claude-flow hooks session-end --export-metrics true520 ```521522 Store learnings for future launches:523 ```bash524 npx claude-flow memory store --key "product-launch/learnings/${LAUNCH_ID}" \525 --value "${LESSONS_LEARNED_JSON}"526 ```527528**Outputs**:529- Weekly performance reports with trends530- Continuous product improvements and iterations531- Optimized marketing campaigns (improved ROI)532- Enhanced customer experience (reduced friction)533- Documented learnings for future launches534535**Success Criteria**:536- [ ] Weekly reports delivered on schedule537- [ ] Key metrics trending positively week-over-week538- [ ] Customer satisfaction scores improving539- [ ] Product-market fit validated through usage data540- [ ] Launch learnings documented for knowledge sharing541542---543544## Memory Coordination545546### Namespace Convention547548All workflow data follows this hierarchical pattern:549550```551product-launch/{launch-id}/phase-{N}/{agent-type}/{deliverable-type}552```553554**Examples**:555- `product-launch/saas-app-v1/phase-1/market-researcher/analysis`556- `product-launch/saas-app-v1/phase-2/backend-developer/api-spec`557- `product-launch/saas-app-v1/phase-3/marketing-specialist/campaign`558- `product-launch/saas-app-v1/phase-4/devops-engineer/deployment-log`559- `product-launch/saas-app-v1/phase-5/weekly-report/week-1`560561### Cross-Phase Data Flow562563**Phase 1 → Phase 2**:564```bash565# Phase 2 agents retrieve Phase 1 strategy566npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-1/product-manager/plan"567```568569**Phase 2 → Phase 3**:570```bash571# Marketing agents retrieve product specs572npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-2/backend-developer/api-spec"573```574575**Phase 3 → Phase 4**:576```bash577# Deployment retrieves marketing timeline578npx claude-flow memory retrieve --key "product-launch/${LAUNCH_ID}/phase-3/marketing-specialist/campaign"579```580581**Phase 4 → Phase 5**:582```bash583# Monitoring retrieves launch metrics baseline584npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/phase-4/*/metrics"585```586587---588589## Scripts & Automation590591### Pre-Workflow Initialization592593```bash594#!/bin/bash595# Initialize product launch workflow596597PRODUCT_NAME="$1"598LAUNCH_ID="${PRODUCT_NAME}-$(date +%Y%m%d)"599600# Setup coordination601npx claude-flow hooks pre-task --description "Product launch: ${PRODUCT_NAME}"602603# Initialize hierarchical swarm604npx claude-flow swarm init --topology hierarchical --max-agents 15 --strategy adaptive605606# Store launch metadata607npx claude-flow memory store --key "product-launch/${LAUNCH_ID}/metadata" --value '{608 "product_name": "'"${PRODUCT_NAME}"'",609 "launch_id": "'"${LAUNCH_ID}"'",610 "start_date": "'"$(date -I)"'",611 "timeline_weeks": 10,612 "phases": 5613}'614615echo "✅ Product launch initialized: ${LAUNCH_ID}"616```617618### Per-Phase Coordination619620```bash621#!/bin/bash622# Execute specific phase623624LAUNCH_ID="$1"625PHASE="$2"626627# Restore session context628npx claude-flow hooks session-restore --session-id "launch-${LAUNCH_ID}"629630# Retrieve prior phase outputs631if [ "$PHASE" -gt 1 ]; then632 PREV_PHASE=$((PHASE - 1))633 npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/phase-${PREV_PHASE}/*"634fi635636# Execute phase-specific workflow637case $PHASE in638 1)639 echo "🔬 Executing Phase 1: Research & Planning"640 npx claude-flow task orchestrate --strategy sequential --task "market-research"641 ;;642 2)643 echo "⚙️ Executing Phase 2: Product Development"644 npx claude-flow task orchestrate --strategy parallel --max-agents 6645 ;;646 3)647 echo "📢 Executing Phase 3: Marketing & Sales Prep"648 npx claude-flow task orchestrate --strategy parallel --max-agents 4649 ;;650 4)651 echo "🚀 Executing Phase 4: Launch Execution"652 npx claude-flow task orchestrate --strategy sequential --priority critical653 ;;654 5)655 echo "📊 Executing Phase 5: Post-Launch Monitoring"656 npx claude-flow task orchestrate --strategy adaptive657 ;;658esac659660# Store phase completion661npx claude-flow hooks post-task --task-id "phase-${PHASE}-complete"662```663664### Post-Workflow Summary665666```bash667#!/bin/bash668# Generate launch summary report669670LAUNCH_ID="$1"671672# Retrieve all phase data673npx claude-flow memory retrieve --pattern "product-launch/${LAUNCH_ID}/*" > "/tmp/${LAUNCH_ID}-data.json"674675# Generate summary676npx claude-flow hooks post-task --task-id "launch-${LAUNCH_ID}" --export-metrics true677678# Export workflow for future reference679npx claude-flow hooks session-end --export-workflow "/tmp/${LAUNCH_ID}-workflow.json"680681echo "✅ Product launch complete: ${LAUNCH_ID}"682echo "📊 Summary report: /tmp/${LAUNCH_ID}-data.json"683echo "📈 Workflow export: /tmp/${LAUNCH_ID}-workflow.json"684```685686---687688## Success Metrics689690### Technical Metrics (Phase 2 & 4)691- **Uptime**: 99.9%+ during launch week692- **API Response Time**: < 200ms (p95)693- **Page Load Time**: < 2 seconds694- **Error Rate**: < 0.1%695- **Test Coverage**: > 90%696- **Mobile App Ratings**: > 4.0 stars697698### Business Metrics (Phase 5)699- **User Signups**: Target defined in Phase 1 strategy700- **Activation Rate**: > 40% (activated within 7 days)701- **Conversion Rate**: > 2.5% (free to paid)702- **Customer Acquisition Cost (CAC)**: Within budget703- **Monthly Recurring Revenue (MRR)**: Target growth trajectory704- **Churn Rate**: < 5% monthly705- **Net Promoter Score (NPS)**: > 50706707### Marketing Metrics (Phase 3 & 4)708- **Campaign ROI**: > 3:1 across all channels709- **Email Open Rate**: > 25%710- **Social Engagement**: > 5% (likes, comments, shares)711- **Paid Ad CTR**: > 2%712- **Organic Traffic Growth**: > 20% month-over-month713- **Press Coverage**: 5+ publications714715### Support Metrics (Phase 5)716- **First Response Time**: < 2 hours717- **Resolution Time**: < 24 hours718- **Customer Satisfaction (CSAT)**: > 4.5/5719- **Self-Service Rate**: > 60% (resolved without ticket)720- **Ticket Volume**: Declining trend721722---723724## Usage Examples725726### Example 1: SaaS Product Launch727728```bash729# Initialize launch730PRODUCT="TaskFlow AI"731LAUNCH_ID="taskflow-ai-20250101"732733# Phase 1: Market Research (Week 1-2)734npx claude-flow agent spawn --type researcher735# Output: Market size $2B TAM, 50k potential customers identified736737# Phase 2: Development (Week 3-8)738npx claude-flow swarm init --topology mesh --max-agents 6739# Output: Web app + mobile apps + API complete with 93% test coverage740741# Phase 3: Marketing (Week 5-9)742npx claude-flow task orchestrate --strategy parallel743# Output: Campaign across 5 channels, 100+ content pieces created744745# Phase 4: Launch (Week 10)746npx claude-flow workflow execute --workflow-id "prod-deploy-${LAUNCH_ID}"747# Output: Deployed successfully, 1,000 signups in first week748749# Phase 5: Optimization (Week 11+)750npx claude-flow hooks session-restore --session-id "launch-${LAUNCH_ID}"751# Output: Weekly reports, 15% improvement in conversion rate752```753754### Example 2: Mobile App Launch755756```bash757# Focus on mobile-first approach758LAUNCH_ID="fitness-tracker-20250201"759760# Phase 2: Prioritize mobile development761npx claude-flow agent spawn --type mobile-dev --priority high762npx claude-flow agent spawn --type backend-dev --priority high763# Output: React Native app (iOS + Android) with offline-first architecture764765# Phase 3: App store optimization766npx claude-flow agent spawn --type seo-specialist --focus "app-store-optimization"767# Output: ASO strategy, 50+ keywords, compelling app store listings768769# Phase 4: Soft launch to beta users770npx claude-flow workflow execute --workflow-id "beta-deploy-${LAUNCH_ID}"771# Output: 500 beta users, 4.8 star rating, feedback incorporated772```773774### Example 3: Enterprise B2B Launch775776```bash777# Enterprise focus with sales-led approach778LAUNCH_ID="enterprise-analytics-20250301"779780# Phase 1: Enterprise market research781npx claude-flow agent spawn --type researcher --focus "enterprise-b2b"782# Output: Target 500 enterprise accounts, decision-maker personas783784# Phase 3: Sales enablement priority785npx claude-flow agent spawn --type sales-specialist --priority critical786# Output: Enterprise sales playbook, ROI calculator, case studies787788# Phase 4: Account-based marketing launch789npx claude-flow task orchestrate --strategy "account-based-marketing"790# Output: 50 target accounts engaged, 10 pilot customers secured791```792793---794795## GraphViz Process Diagram796797See `when-releasing-new-product-orchestrate-product-launch-process.dot` for visual workflow representation showing:798- 5 phases with sequential and parallel execution patterns799- 15+ agent interactions and data flows800- Memory coordination points between phases801- Decision gates and validation checkpoints802- Optimization loops in Phase 5803804---805806## Quality Checklist807808Before considering launch complete, verify:809810- [ ] **Phase 1**: Market validated, strategy approved, business case solid811- [ ] **Phase 2**: All applications deployed, tests passing, security audited812- [ ] **Phase 3**: Marketing campaigns ready, sales team trained, support operational813- [ ] **Phase 4**: Production stable, first customers acquired, monitoring active814- [ ] **Phase 5**: Metrics tracking positively, optimization loops running815816**All phase deliverables stored in memory following namespace convention**:817- [ ] `product-launch/${LAUNCH_ID}/phase-1/*` - Research and strategy818- [ ] `product-launch/${LAUNCH_ID}/phase-2/*` - Development artifacts819- [ ] `product-launch/${LAUNCH_ID}/phase-3/*` - Marketing materials820- [ ] `product-launch/${LAUNCH_ID}/phase-4/*` - Launch metrics821- [ ] `product-launch/${LAUNCH_ID}/phase-5/*` - Weekly reports822823---824825**Workflow Complexity**: High (15+ agents, 10 weeks, 5 phases)826**Coordination Pattern**: Hierarchical with adaptive parallel execution827**Memory Footprint**: ~50-100 memory entries per launch828**Typical Use Case**: Major product launches requiring comprehensive coordination829830---831> Converted and distributed by [TomeVault](https://tomevault.io/claim/dnyoussef) — claim your Tome and manage your conversions.832<!-- tomevault:4.0:skill_md:2026-04-13 -->