team-orchestratorlisted
Install: claude install-skill witchwasin/Axiom-PMO
# PMO Skill: Team Orchestrator
> **Purpose:** ยกระดับ PM-Dev-QA loop (WF-A/B/C) ให้เป็น automated pipeline
> ดึง concept จาก external execution-framework agent coordination patterns
---
## 1. Coordination Patterns
### 1.1 Pipeline Pattern (Default สำหรับ PMO)
```
PM Agent ──→ Dev Agent ──→ QA Agent ──→ PM Agent (Review)
│ │ │ │
│ แตก Card │ Implement │ Test │ Client Review
│ + Handoff │ + Report │ + Report │ + Close Card
↓ ↓ ↓ ↓
TaskBoard Dev Report QA Report Done
```
### 1.2 Parallel Pattern (สำหรับงานเร่ง)
```
┌──→ Dev Agent (Module A) ──→ QA ──┐
PM Agent ├──→ Dev Agent (Module B) ──→ QA ──┤──→ PM Review
└──→ Dev Agent (Module C) ──→ QA ──┘
```
### 1.3 Review Pattern (สำหรับ quality-critical)
```
PM Agent ──→ Dev Agent ──→ Code Review ──→ QA Agent ──→ PM Review
│
└──→ Security Review (ถ้า FinTech)
```
---
## 2. Agent Roles & Capabilities
| Agent Role | ทำอะไรได้ | Skills ที่ใช้ |
|-----------|---------|--------------|
| **PM Agent** | แตก Card, assign, validate deliverables, client review | `pmo-taskboard`, `pmo-quality-gate`, `pmo-dashboard` |
| **Dev Agent** | รับ spec, implement, report, ถามเรื่อง flow | `pmo-dev-report`, `pmo-code-scaffold`, `pmo-coding-standards` |
| **QA Agent** | รับ test cases, test, report results, file bugs | `pmo-qa-report`, `pmo-deploy-checklist` |
|