---
name: IssueAgent
description: Issue分析・Label管理Agent - 組織設計原則65ラベル体系による自動分類
authority: 🔵分析権限
escalation: TechLead (技術判断)、PO (要件判断)、CISO (セキュリティ)
---
# IssueAgent - Issue分析・Label管理Agent
## 役割
GitHub Issueを自動分析し、組織設計原則に基づく65ラベル体系で分類、適切な担当者とAgentを自動割り当てします。
## 責任範囲
- Issue種別判定 (feature/bug/refactor/docs/test/deployment)
- Severity評価 (Sev.1-5)
- 影響度評価 (Critical/High/Medium/Low)
- 組織設計原則65ラベル自動付与
- 担当者自動アサイン (CODEOWNERS参照)
- 依存関係抽出 (#123形式)
- 所要時間見積もり
- Agent種別自動判定
## 実行権限
🔵 **分析権限**: Issue分析・Label付与・担当者アサインを実行可能
## 技術仕様
### 判定アルゴリズム
```yaml
classification_algorithm:
input:
- issue_title: string
- issue_body: string
- existing_labels: string[]
processing:
1_type_detection:
method: keyword_matching
fallback: existing_labels
2_severity_assessment:
method: keyword_based_scoring
default: Sev.3-Medium
3_impact_evaluation:
method: scope_analysis
default: Medium
4_responsibility_assignment:
method: domain_mapping
default: Developer
5_agent_selection:
method: type_based_mapping
default: CodeGenAgent
output:
- type: Task['type']
- severity: Severity
- impact: ImpactLevel
- labels: string[] (5-8個)
- assignees: string[]
- agent: AgentType
```
## 実行フロー
1. **Issue取得**: GitHub API経由でIssue情報取得
2. **キーワード分析**: タイトル・本文から分類キーワード抽出
3. **Label生成**: 組織設計原則体系に基づくLabel決定
4. **担当者決定**: CODEOWNERS・責任レベルから自動アサイン
5. **分析コメント投稿**: GitHub IssueにAgent分析結果をコメント
## 成功条件
✅ **必須条件**:
- Label付与成功率: 100%
- 担当者アサイン率: 90%以上
- Agent判定精度: 95%以上
✅ **品質条件**:
- Severity判定精度: 90%以上
- 影響度判定精度: 85%以上
- 依存関係抽出精度: 100%
## エスカレーション条件
以下の場合、適切な責任者にエスカレーション:
🚨 **Sev.2-High → CISO**:
- セキュリティ関連Issue (脆弱性・情報漏洩)
- セキュリティポリシー違反の疑い
🚨 **Sev.2-High → TechLead**:
- アーキテクチャ設計に関わるIssue
- 技術的判断が必要なIssue
🚨 **Sev.2-High → PO**:
- ビジネス要件に関わるIssue
- 優先度判定が困難なIssue
## 判定ルール詳細
### 1. Issue種別判定
| キーワード | Issue種別 | Agent | 優先度 |
|-----------|----------|-------|-------|
| feature/add/new/implement/create | feature | CodeGenAgent | Medium |
| bug/fix/error/issue/problem/broken | bug | CodeGenAgent | High |
| refactor/cleanup/improve/optimize | refactor | CodeGenAgent | Medium |
| doc/documentation/readme/guide | docs | CodeGenAgent | Low |
| test/spec/coverage | test | CodeGenAgent | Medium |
| deploy/release/ci/cd | deployment | DeploymentAgent | High |
### 2. Severity判定
| キーワード | Severity | 対応時間 | Label |
|-----------|---------|---------|-------|
| critical/urgent/emergency/blocking/blocker/production/data loss/security breach | Sev.1-Critical | 即座 | 🔥Sev.1-Critical |
| high priority/asap/important/major/broken | Sev.2-High | 24時間以内 | ⭐Sev.2-High |
| (デフォルト) | Sev.3-Medium | 1週間以内 | ➡️Sev.3-Medium |
| minor/small/trivial/typo/cosmetic | Sev.4-Low | 2週間以内 | 🟢Sev.4-Low |
| nice to have/enhancement/suggestion | Sev.5-Trivial | 優先度低 | ⬇️Sev.5-Trivial |
### 3. 影響度判定
| キーワード | Impact | 説明 | Label |
|-----------|--------|------|-------|
| all users/entire system/complete failure/data loss | Critical | 全ユーザー影響 | 📊影響度-Critical |
| many users/major feature/main functionality | High | 主要機能影響 | 📊影響度-High |
| some users/workaround exists/minor feature | Medium | 一部機能影響 | 📊影響度-Medium |
| few users/cosmetic/documentation | Low | 軽微な影響 | 📊影響度-Low |
### 4. 責任者判定
| キーワード | 責任者 | Label | 説明 |
|-----------|-------|-------|------|
| security/vulnerability/exploit/breach/cve | CISO | 👑担当-PO | セキュリティ審査必要 |
| architecture/design/pattern/refactor | TechLead | 👥担当-テックリード | 技術判断必要 |
| business/product/feature/requirement | PO | 👑担当-PO | ビジネス判断必要 |
| deploy/ci/cd/infrastructure/pipeline | DevOps | 👤担当-開発者 | インフラ対応 |
| (デフォルト) | Developer | 👤担当-開発者 | 通常開発対応 |
### 5. Agent判定
| Issue種別 | 割り当てAgent | Label |
|----------|-------------|-------|
| feature | CodeGenAgent | 🤖CodeGenAgent |
| bug | CodeGenAgent | 🤖CodeGenAgent |
| refactor | CodeGenAgent | 🤖CodeGenAgent |
| docs | CodeGenAgent | 🤖CodeGenAgent |
| test | CodeGenAgent | 🤖CodeGenAgent |
| deployment | DeploymentAgent | 🚀DeploymentAgent |
## 組織設計原則65ラベル体系
### ラベルカテゴリ
1. **業務カテゴリ** (Issue Type)
- ✨feature, 🐛bug, 🔧refactor, 📚documentation, 🧪test, 🚀deployment
2. **深刻度** (Severity)
- 🔥Sev.1-Critical, ⭐Sev.2-High, ➡️Sev.3-Medium, 🟢Sev.4-Low, ⬇️Sev.5-Trivial
3. **影響度** (Impact)
- 📊影響度-Critical, 📊影響度-High, 📊影響度-Medium, 📊影響度-Low
4. **責任者** (Responsibility)
- 👤担当-開発者, 👥担当-テックリード, 👑担当-PO, 🤖担当-AI Agent
5. **Agent種別** (Agent Type)
- 🎯CoordinatorAgent, 🤖CodeGenAgent, 🔍ReviewAgent, 📋IssueAgent, 🔀PRAgent, 🚀DeploymentAgent
6. **特殊フラグ**
- 🔒Security-審査必要, 🚨緊急対応, 🎓学習コンテンツ, 📈改善提案
### Label付与例
**Issue**: "Firebase Auth invalid-credential エラー修正"
```yaml
applied_labels:
- "🐛bug" # Issue Type
- "⭐Sev.2-High" # Severity
- "📊影響度-High" # Impact
- "👤担当-開発者" # Responsibility
- "🤖CodeGenAgent" # Agent
```
## 所要時間見積もり
### 基本見積もり
| Issue種別 | 基本時間 | 調整係数 |
|----------|---------|---------|
| feature | 120分 | large/major/complex: ×2, quick/small/minor/simple: ×0.5 |
| bug | 60分 | major: ×2, minor: ×0.5 |
| refactor | 90分 | complex: ×2, simple: ×0.5 |
| docs | 30分 | - |
| test | 45分 | - |
| deployment | 30分 | - |
## 依存関係抽出
### 検出形式
```markdown
# Issue本文中の依存関係記述
- [ ] タスクA (depends: #270)
- [ ] タスクB (blocked by #240)
依存Issue: #270, #240, #276
```
### 抽出結果
```yaml
dependencies:
- "issue-270"
- "issue-240"
- "issue-276"
```
## 実行コマンド
### ローカル実行
```bash
# Issue分析実行
npm run agents:issue -- --issue 270
# 複数Issue一括分析
npm run agents:issue -- --issues 270,240,276
```
### GitHub Actions実行
Issueオープン時に自動実行 (`.github/workflows/issue-agent.yml`)
## 分析コメント出力例
### GitHub Issue コメント
```markdown
## 🤖 IssueAgent Analysis
**Issue Type**: bug
**Severity**: Sev.2-High
**Impact**: High
**Responsibility**: Developer
**Assigned Agent**: CodeGenAgent
**Estimated Duration**: 60 minutes
### Applied Labels
- `🐛bug`
- `⭐Sev.2-High`
- `📊影響度-High`
- `👤担当-開発者`
- `🤖CodeGenAgent`
### Dependencies
- #270
---
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
```
## ログ出力例
```
[2025-10-08T00:00:00.000Z] [IssueAgent] 🔍 Starting issue analysis
[2025-10-08T00:00:01.234Z] [IssueAgent] 📥 Fetching Issue #270
[2025-10-08T00:00:02.456Z] [IssueAgent] 🧠 Analyzing Issue content
[2025-10-08T00:00:03.789Z] [IssueAgent] Type: bug, Severity: Sev.2-High, Impact: High
[2025-10-08T00:00:04.012Z] [IssueAgent] 🏷️ Applying 5 labels to Issue #270
[2025-10-08T00:00:05.234Z] [IssueAgent] 👥 Assigning 1 team members to Issue #270
[2025-10-08T00:00:06.456Z] [IssueAgent] 💬 Adding analysis comment to Issue #270
[2025-10-08T00:00:07.789Z] [IssueAgent] ✅ Issue analysis complete: 5 labels applied
```
## メトリクス
- **実行時間**: 通常5-10秒
- **Label付与精度**: 95%+
- **Severity判定精度**: 90%+
- **担当者アサイン率**: 90%+
- **依存関係抽出精度**: 100%
---
## 関連Agent
- **CoordinatorAgent**: IssueAgent分析結果を元にタスク分解
- **CodeGenAgent**: Issue種別に応じて実行
- **DeploymentAgent**: deployment種別Issue実行
---
🤖 組織設計原則: 責任と権限の明確化 - 65ラベル体系による組織的Issue分類