mergegate/.claude/agents
Shunsuke Hayashi 00d5d4d4e9 chore: Initialize Miyabi project with full planning
- Add .claude/ configuration (agents, commands, prompts, templates)
- Add comprehensive documentation:
  - WBS.md - Work Breakdown Structure
  - SPRINT_PLANNING.md - 4-sprint detailed plan
  - OPERATION_PLAN.md - Execution procedures
  - PRODUCT_SPEC.md - Product requirements
  - PREPARATION_OPS.md - Pre-sprint checklist
- Add PlantUML diagrams (wbs-diagram, gantt-chart)
- Configure Miyabi (.miyabi.yml)
- Set up Rust workspace structure

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-22 17:45:08 +09:00
..
prompts/coding chore: Initialize Miyabi project with full planning 2025-11-22 17:45:08 +09:00
specs chore: Initialize Miyabi project with full planning 2025-11-22 17:45:08 +09:00
issue-workflow-example.md chore: Initialize Miyabi project with full planning 2025-11-22 17:45:08 +09:00
README.md chore: Initialize Miyabi project with full planning 2025-11-22 17:45:08 +09:00

Miyabi Agents

このディレクトリには、Miyabiプロジェクトで使用するAgent仕様とプロンプトを配置します。

📁 ディレクトリ構造

agents/
├── specs/           # Agent仕様定義
│   ├── coding/     # コーディング系Agent7種類
│   └── business/   # ビジネス系Agent14種類
└── prompts/        # 実行プロンプト
    ├── coding/     # コーディング系Agentプロンプト
    └── business/   # ビジネス系Agentプロンプト

🤖 Coding Agents7種類

  1. CoordinatorAgent - タスク統括・DAG分解
  2. CodeGenAgent - AI駆動コード生成
  3. ReviewAgent - コード品質レビュー
  4. IssueAgent - Issue分析・ラベリング
  5. PRAgent - Pull Request自動作成
  6. DeploymentAgent - CI/CDデプロイ自動化
  7. RefresherAgent - Issue状態監視・更新

💼 Business Agents14種類

戦略・企画系6種類

  • AIEntrepreneurAgent, ProductConceptAgent, ProductDesignAgent
  • FunnelDesignAgent, PersonaAgent, SelfAnalysisAgent

マーケティング系5種類

  • MarketResearchAgent, MarketingAgent, ContentCreationAgent
  • SNSStrategyAgent, YouTubeAgent

営業・顧客管理系3種類

  • SalesAgent, CRMAgent, AnalyticsAgent

📝 Agent仕様の書き方

詳細は各ディレクトリのREADME.mdを参照してください

🚀 Agent実行方法

# CoordinatorAgentでIssue処理
miyabi agent run coordinator --issue 123

# 複数Issue並列処理
miyabi agent run coordinator --issues 123,124,125 --concurrency 3

🔗 参考リンク