sop-product-launch
新製品発表に向けて、調査・開発・マーケティング・営業・運用など各部門の担当者15名以上を連携させ、10週間の計画で段階的かつ並行的に業務を進めるSkill。
📜 元の英語説明(参考)
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.
🇯🇵 日本人クリエイター向け解説
新製品発表に向けて、調査・開発・マーケティング・営業・運用など各部門の担当者15名以上を連携させ、10週間の計画で段階的かつ並行的に業務を進めるSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o sop-product-launch.zip https://jpskill.com/download/18777.zip && unzip -o sop-product-launch.zip && rm sop-product-launch.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/18777.zip -OutFile "$d\sop-product-launch.zip"; Expand-Archive "$d\sop-product-launch.zip" -DestinationPath $d -Force; ri "$d\sop-product-launch.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
sop-product-launch.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
sop-product-launchフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
SOP: 製品ローンチのワークフロー
マルチエージェント連携を使用した、エンドツーエンドの製品ローンチプロセスを完了します。
タイムライン: 10週間
フェーズ:
- 調査 & 計画 (1-2週目)
- 製品開発 (3-6週目)
- マーケティング & セールス準備 (5-8週目)
- ローンチ実行 (9週目)
- ローンチ後のモニタリング (10週目以降)
フェーズ 1: 調査 & 計画 (1-2週目)
1週目: 市場調査
シーケンシャルワークフロー:
// ステップ 1: 市場分析
await Task("Market Researcher", `
包括的な市場分析を実施します:
- ターゲット市場規模と人口統計
- 競合分析 (機能、価格設定、ポジショニング)
- 市場動向と機会
- 顧客の課題とニーズ
調査結果をメモリに保存します: market-research/product-launch-2024/analysis
`, "researcher");
// ステップ 2: 結果を取得し、ビジネスアナリストに委任します
const marketData = await memory_retrieve('market-research/product-launch-2024/analysis');
await Task("Business Analyst", `
市場データを使用します: ${marketData}
以下を実行します:
- SWOT分析
- ビジネスモデルの検証
- 収益予測
- リスク評価
結果を保存します: business-analysis/product-launch-2024/strategy
`, "analyst");
// ステップ 3: 製品戦略
await Task("Product Manager", `
以下を使用します:
- 市場分析: market-research/product-launch-2024/analysis
- ビジネス分析: business-analysis/product-launch-2024/strategy
以下を定義します:
- 製品ポジショニング
- 機能の優先順位付け (MVP vs 将来)
- 価格戦略
- Go-to-market戦略
以下に保存します: product-strategy/product-launch-2024/plan
`, "planner");
成果物:
- 市場分析レポート
- SWOT分析
- 製品戦略ドキュメント
- ローンチタイムライン
フェーズ 2: 製品開発 (3-6週目)
3-4週目: 技術アーキテクチャ & 開発
パラレルワークフロー (バックエンド + フロントエンド + モバイル):
// 開発スウォームを初期化します
await mcp__ruv-swarm__swarm_init({
topology: 'mesh',
maxAgents: 6,
strategy: 'adaptive'
});
// 並列エージェントの生成
const [backend, frontend, mobile, database, security, tester] = await Promise.all([
Task("Backend Developer", `
製品要件を使用します: product-strategy/product-launch-2024/plan
以下を構築します:
- 認証付きの REST API
- データベーススキーマと移行
- ビジネスロジック層
- 決済ゲートウェイとの統合
API仕様を保存します: backend-dev/product-launch-2024/api-spec
スキーマを保存します: backend-dev/product-launch-2024/db-schema
`, "backend-dev"),
Task("Frontend Developer", `
API仕様を使用します: backend-dev/product-launch-2024/api-spec
以下を構築します:
- React Webアプリケーション
- コンポーネントライブラリ
- 状態管理 (Redux/Context)
- API統合層
コンポーネントを保存します: frontend-dev/product-launch-2024/components
`, "coder"),
Task("Mobile Developer", `
API仕様を使用します: backend-dev/product-launch-2024/api-spec
以下を構築します:
- React Native モバイルアプリ (iOS + Android)
- デバイス機能用のネイティブモジュール
- オフライン同期機能
- プッシュ通知
ビルドを保存します: mobile-dev/product-launch-2024/builds
`, "mobile-dev"),
Task("Database Architect", `
最適化されたデータベースを設計します:
- スケーラビリティのためのスキーマ設計
- インデックス戦略
- クエリの最適化
- バックアップとリカバリ計画
以下に保存します: database/product-launch-2024/architecture
`, "code-analyzer"),
Task("Security Specialist", `
セキュリティを実装します:
- 認証 (OAuth 2.0 + JWT)
- 認可 (RBAC)
- データ暗号化 (保存時 + 転送時)
- セキュリティ監査と侵入テスト
監査を保存します: security/product-launch-2024/audit
`, "reviewer"),
Task("QA Engineer", `
テストスイートを作成します:
- ユニットテスト (90%以上のカバレッジ)
- 統合テスト
- E2Eテスト
- パフォーマンス テスト
- セキュリティテスト
テスト計画を保存します: testing/product-launch-2024/plan
`, "tester")
]);
// すべての並列タスクが完了するのを待ちます
await Promise.all([backend, frontend, mobile, database, security, tester]);
5-6週目: 統合 & テスト
シーケンシャルワークフロー:
// ステップ 1: システム統合
await Task("System Integrator", `
すべてのコンポーネントを統合します:
- バックエンド API + フロントエンド Web
- バックエンド API + モバイルアプリ
- 決済ゲートウェイの統合
- サードパーティサービス
統合テストを実行します
統合レポートを保存します: integration/product-launch-2024/report
`, "reviewer");
// ステップ 2: パフォーマンス最適化
await Task("Performance Optimizer", `
システムパフォーマンスを最適化します:
- API応答時間 < 200ms
- フロントエンドのロード時間 < 2秒
- モバイルアプリの起動 < 1秒
- データベースクエリの最適化
ベンチマークを実行します
メトリクスを保存します: performance/product-launch-2024/metrics
`, "perf-analyzer");
// ステップ 3: セキュリティ監査
await Task("Security Auditor", `
最終的なセキュリティ監査:
- 脆弱性スキャン
- 侵入テスト
- コンプライアンスチェック (GDPR, CCPA)
- セキュリティのベストプラクティスのレビュー
コンプライアンスレポートを生成します
以下に保存します: security/product-launch-2024/final-audit
`, "security-manager");
成果物:
- 本番環境対応のアプリケーション (Web + モバイル)
- APIドキュメント
- セキュリティ監査レポート
- パフォーマンスベンチマーク
フェーズ 3: マーケティング & セールス準備 (5-8週目)
5-6週目: マーケティングキャンペーン
パラレルワークフロー:
const [campaign, content, seo] = await Promise.all([
Task("Marketing Specialist", `
製品戦略を使用します: product-strategy/product-launch-2024/plan
ローンチキャンペーンを作成します:
- マルチチャネルキャンペーン (メール、ソーシャル、有料広告)
- オーディエンスのセグメンテーションとターゲティング
- キャンペーンのタイムラインと予算
- KPIトラッキングの設定
キャンペーンを保存します: marketing/product-launch-2024/campaign
`, "researcher"), // 注: 書き換え時に marketing-specialist を使用します
Task("Content Creator", `
ローンチコンテンツを作成します:
- 製品ランディングページのコピー
- ブログ投稿 (ローンチ前3-5件、ローンチ後10件以上)
- ソーシャルメディアコンテンツ (50件以上の投稿)
- メールシーケンス (ウェルカム、オンボーディング、ナーチャー)
- ビデオデモとチュートリアル
コンテンツを保存します: marketing/product-launch-2024/content
`, "coder"), // 注: 作成時に content-specialist を使用します
Task("SEO Specialist", `
検索向けに最適化します:
- キーワード調査とマッピング
- オンページSEO (メタタグ、h
(原文はここで切り詰められています) 📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
SOP: Product Launch Workflow
Complete end-to-end product launch process using multi-agent coordination.
Timeline: 10 Weeks
Phases:
- Research & Planning (Week 1-2)
- Product Development (Week 3-6)
- Marketing & Sales Prep (Week 5-8)
- Launch Execution (Week 9)
- Post-Launch Monitoring (Week 10+)
Phase 1: Research & Planning (Week 1-2)
Week 1: Market Research
Sequential Workflow:
// 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):
// 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:
// 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:
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:
// 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:
// 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:
// 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:
- researcher - Market analysis, campaign execution
- analyst - Business analysis, weekly reviews
- planner - Product strategy, sales operations, support setup
- backend-dev - API development
- coder - Frontend development
- mobile-dev - Mobile app development
- code-analyzer - Database architecture, SEO
- reviewer - Security, system integration
- tester - QA and testing
- perf-analyzer - Performance optimization
- security-manager - Security audits
- production-validator - Final validation
- cicd-engineer - Deployment
- performance-monitor - Analytics monitoring
- api-docs - Documentation
Usage
// 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 orchestration