oh-my-githubcopilot 1.4.1 → 1.8.0-alpha.021bf87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. package/.claude-plugin/plugin.json +36 -6
  2. package/.mcp.json +17 -0
  3. package/AGENTS.md +78 -9
  4. package/CHANGELOG.md +216 -1
  5. package/README.de.md +112 -26
  6. package/README.es.md +115 -29
  7. package/README.fr.md +114 -28
  8. package/README.it.md +114 -28
  9. package/README.ja.md +112 -26
  10. package/README.ko.md +112 -26
  11. package/README.md +96 -95
  12. package/README.pt.md +116 -30
  13. package/README.ru.md +116 -30
  14. package/README.tr.md +115 -29
  15. package/README.vi.md +116 -30
  16. package/README.zh.md +112 -26
  17. package/agents/analyst.agent.md +27 -0
  18. package/agents/architect.agent.md +24 -0
  19. package/agents/code-reviewer.agent.md +24 -0
  20. package/agents/critic.agent.md +24 -0
  21. package/agents/debugger.agent.md +24 -0
  22. package/agents/designer.agent.md +24 -0
  23. package/agents/document-specialist.agent.md +24 -0
  24. package/agents/executor.agent.md +27 -0
  25. package/agents/explorer.agent.md +23 -0
  26. package/agents/git-master.agent.md +24 -0
  27. package/agents/orchestrator.agent.md +26 -0
  28. package/agents/planner.agent.md +24 -0
  29. package/agents/qa-tester.agent.md +24 -0
  30. package/agents/researcher.agent.md +18 -0
  31. package/agents/reviewer.agent.md +23 -0
  32. package/agents/scientist.agent.md +20 -0
  33. package/agents/security-reviewer.agent.md +20 -0
  34. package/agents/simplifier.agent.md +20 -0
  35. package/agents/test-engineer.agent.md +20 -0
  36. package/agents/tester.agent.md +20 -0
  37. package/agents/tracer.agent.md +24 -0
  38. package/agents/verifier.agent.md +19 -0
  39. package/agents/writer.agent.md +24 -0
  40. package/bin/omp-statusline.mjs +179 -0
  41. package/bin/omp-statusline.mjs.map +7 -0
  42. package/bin/omp-statusline.sh +21 -0
  43. package/bin/omp.mjs +709 -16
  44. package/bin/omp.mjs.map +4 -4
  45. package/dist/hooks/hud-emitter.mjs +268 -82
  46. package/dist/hooks/hud-emitter.mjs.map +4 -4
  47. package/dist/hooks/keyword-detector.mjs +100 -23
  48. package/dist/hooks/keyword-detector.mjs.map +2 -2
  49. package/dist/hooks/model-router.mjs +1 -1
  50. package/dist/hooks/model-router.mjs.map +1 -1
  51. package/dist/hooks/stop-continuation.mjs +1 -1
  52. package/dist/hooks/stop-continuation.mjs.map +1 -1
  53. package/dist/hooks/token-tracker.mjs +2 -1
  54. package/dist/hooks/token-tracker.mjs.map +2 -2
  55. package/dist/mcp/server.mjs +85 -53
  56. package/dist/mcp/server.mjs.map +4 -4
  57. package/dist/skills/setup.mjs +39 -27
  58. package/dist/skills/setup.mjs.map +4 -4
  59. package/hooks/hooks.json +39 -45
  60. package/package.json +9 -4
  61. package/plugin.json +71 -0
  62. package/skills/ai-slop-cleaner/SKILL.md +137 -0
  63. package/skills/autopilot/SKILL.md +6 -0
  64. package/skills/configure-notifications/SKILL.md +6 -0
  65. package/skills/deep-interview/SKILL.md +6 -0
  66. package/skills/doctor/SKILL.md +188 -0
  67. package/skills/ecomode/SKILL.md +6 -0
  68. package/skills/graph-context/SKILL.md +119 -0
  69. package/skills/graph-provider/SKILL.md +6 -0
  70. package/skills/graphify/SKILL.md +6 -0
  71. package/skills/graphwiki/SKILL.md +6 -0
  72. package/skills/hud/SKILL.md +6 -0
  73. package/skills/improve-codebase-architecture/SKILL.md +214 -0
  74. package/skills/interactive-menu/SKILL.md +102 -0
  75. package/skills/interview/SKILL.md +203 -0
  76. package/skills/learner/SKILL.md +6 -0
  77. package/skills/mcp-setup/SKILL.md +6 -0
  78. package/skills/note/SKILL.md +6 -0
  79. package/skills/notifications/SKILL.md +190 -0
  80. package/skills/omp-doctor/SKILL.md +146 -0
  81. package/skills/omp-plan/SKILL.md +219 -2
  82. package/skills/omp-reference/SKILL.md +174 -0
  83. package/skills/omp-setup/SKILL.md +15 -1
  84. package/skills/pipeline/SKILL.md +6 -0
  85. package/skills/psm/SKILL.md +6 -0
  86. package/skills/ralph/SKILL.md +6 -0
  87. package/skills/ralplan/SKILL.md +148 -0
  88. package/skills/release/SKILL.md +6 -0
  89. package/skills/research/SKILL.md +149 -0
  90. package/skills/session/SKILL.md +220 -0
  91. package/skills/setup/SKILL.md +6 -0
  92. package/skills/skillify/SKILL.md +66 -0
  93. package/skills/spending/SKILL.md +6 -0
  94. package/skills/swarm/SKILL.md +6 -0
  95. package/skills/swe-bench/SKILL.md +6 -0
  96. package/skills/tdd/SKILL.md +246 -0
  97. package/skills/team/SKILL.md +6 -0
  98. package/skills/trace/SKILL.md +6 -0
  99. package/skills/ultrawork/SKILL.md +6 -0
  100. package/skills/wiki/SKILL.md +6 -0
  101. package/src/agents/analyst.md +0 -103
  102. package/src/agents/architect.md +0 -169
  103. package/src/agents/code-reviewer.md +0 -135
  104. package/src/agents/critic.md +0 -196
  105. package/src/agents/debugger.md +0 -132
  106. package/src/agents/designer.md +0 -103
  107. package/src/agents/document-specialist.md +0 -111
  108. package/src/agents/executor.md +0 -120
  109. package/src/agents/explorer.md +0 -98
  110. package/src/agents/git-master.md +0 -92
  111. package/src/agents/orchestrator.md +0 -125
  112. package/src/agents/planner.md +0 -106
  113. package/src/agents/qa-tester.md +0 -129
  114. package/src/agents/researcher.md +0 -102
  115. package/src/agents/reviewer.md +0 -100
  116. package/src/agents/scientist.md +0 -150
  117. package/src/agents/security-reviewer.md +0 -132
  118. package/src/agents/simplifier.md +0 -109
  119. package/src/agents/test-engineer.md +0 -124
  120. package/src/agents/tester.md +0 -102
  121. package/src/agents/tracer.md +0 -160
  122. package/src/agents/verifier.md +0 -100
  123. package/src/agents/writer.md +0 -96
package/README.vi.md CHANGED
@@ -1,53 +1,139 @@
1
- [English](README.md) | [Deutsch](README.de.md) | [Español](README.es.md) | [Français](README.fr.md) | [Italiano](README.it.md) | [日本語](README.ja.md) | [한국어](README.ko.md) | [Português](README.pt.md) | [Русский](README.ru.md) | [Türkçe](README.tr.md) | [Tiếng Việt](README.vi.md) | [中文](README.zh.md)
1
+ # oh-my-githubcopilot (omp)
2
2
 
3
- # oh-my-githubcopilot
4
- <p align="center">
5
- <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
6
- </p>
3
+ > **Sister projects:** [oh-my-claudecode (OMC)](https://github.com/Yeachan-Heo/oh-my-claudecode) | [oh-my-codex (OMX)](https://github.com/Yeachan-Heo/oh-my-codex) | [oh-my-githubcopilot (OMP)](https://github.com/r3dlex/oh-my-githubcopilot) | [oh-my-antigravity (OMG)](https://github.com/r3dlex/oh-my-antigravity) | [oh-my-auggie (OMA)](https://github.com/r3dlex/oh-my-auggie)
7
4
 
8
- [![npm version](https://img.shields.io/npm/v/oh-my-githubcopilot?color=cb3837)](https://www.npmjs.com/package/oh-my-githubcopilot)
9
- [![npm downloads](https://img.shields.io/npm/dm/oh-my-githubcopilot?color=blue)](https://www.npmjs.com/package/oh-my-githubcopilot)
10
- [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
5
+ **Điều phối đa tác nhân cho GitHub Copilot CLI. Không cần đường cong học tập.**
11
6
 
12
- **Oh-My-Copilot (OMP)** la mot plug-in va phan mo rong cho GitHub Copilot, bo sung kha nang orchester quy trinh hien dai va kha nang AI tac nhan len Copilot.
7
+ _Đừng học GitHub Copilot CLI. Chỉ cần dùng omp._
8
+
9
+ [Get Started](#quick-start) • [CLI Reference](#cli-reference) • [Workflows](#workflows) • [Discord](https://discord.gg/PUwSMR9XNk)
13
10
 
14
- <p align="center">
15
- <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
16
- </p>
17
11
  ---
18
12
 
19
- ## Khoi Dau Nhanh
13
+ ## sao chọn omp?
14
+
15
+ Mọi nhóm phần mềm đều phải xử lý triển khai, kiến trúc, rà soát bảo mật, kiểm thử và DevOps cùng lúc. omp điều phối các tác nhân chuyên biệt để từng mảng được chuyên gia xử lý song song.
16
+
17
+ GitHub Copilot đã là nơi nhiều lập trình viên tìm trợ giúp; omp biến bề mặt đó thành một đội kỹ thuật được phối hợp. Nó gom tác nhân, skill, hook, thiết lập MCP và trạng thái HUD dành cho Copilot vào một luồng dự đoán được từ prompt đến bàn giao đã kiểm chứng.
18
+
19
+ ---
20
+
21
+ <a id="quick-start"></a>
22
+ ## Bắt đầu nhanh
20
23
 
21
24
  ```bash
22
- # Cai dat
23
25
  npm install -g oh-my-githubcopilot
26
+ omp setup --scope project
27
+ omp
28
+ ```
29
+
30
+ Sau khi thiết lập, hãy khởi động lại CLI để các lệnh `/` xuất hiện.
31
+
32
+ ```bash
33
+ omp doctor # check prerequisites
34
+ omp team run --task "..." --workers 2 # parallel work
35
+ omp hud --watch # live status
36
+ ```
37
+
38
+ ---
39
+
40
+ ## Tính năng
41
+
42
+ | Feature | Description |
43
+ |---------|-------------|
44
+ | **Specialized Agents** | 23+ agents (analyst, architect, executor, debugger, critic, verifier, test-engineer, writer, and more) |
45
+ | **Parallel Team Mode** | tmux-based multi-worker orchestration with shared task state |
46
+ | **Workflow Skills** | 39 skills built in — plan, deep-interview, ralph, autopilot, ultrawork, code-review, and more |
47
+ | **Persistent Hooks** | Automatic tool tracking, project memory, session management |
48
+ | **Real-time HUD** | Live status overlay showing agents, costs, and progress |
49
+ | **CI/CD Ready** | Verification gates, test integration, release workflows |
50
+ | **Multilingual** | README in 12 languages |
51
+
52
+ ---
53
+
54
+ <a id="cli-reference"></a>
55
+ ## Tham chiếu CLI
24
56
 
25
- # Cau hinh
26
- omp setup
57
+ | Command | Description |
58
+ |---------|-------------|
59
+ | `omp` | Launch interactive session |
60
+ | `omp setup` | Configure GitHub Copilot CLI integration |
61
+ | `omp doctor` | Check prerequisites and fix issues |
62
+ | `omp team run` | Start parallel team execution |
63
+ | `omp team status` | Check team progress |
64
+ | `omp hud --watch` | Show live status overlay |
65
+ | `omp trace` | Show execution trace |
66
+
67
+ See the [full documentation](https://github.com/r3dlex/oh-my-githubcopilot#readme) for all commands.
68
+
69
+ ---
70
+
71
+ <a id="workflows"></a>
72
+ ## Quy trình
73
+
74
+ omp ships execution-mode and planning-mode workflows as built-in skills.
75
+
76
+ ### Execution Modes
77
+
78
+ | Skill | Purpose |
79
+ |-------|---------|
80
+ | `$autopilot` | Idea → working code end-to-end |
81
+ | `$team` | N coordinated agents on a shared task |
82
+ | `$ralph` | Persistent completion loop until verified |
83
+ | `$ultrawork` | Maximum parallel throughput execution |
84
+ | `$ultraqa` | QA cycling until goals are met |
85
+
86
+ ### Planning Modes
87
+
88
+ | Skill | Purpose |
89
+ |-------|---------|
90
+ | `$plan` | Strategic planning with optional interviews |
91
+ | `$deep-interview` | Socratic clarification before execution |
92
+ | `$ralplan` | Consensus planning with Architect + Critic review |
93
+
94
+ ### Utility Modes
95
+
96
+ | Skill | Purpose |
97
+ |-------|---------|
98
+ | `$code-review` | Comprehensive code review |
99
+ | `$security-review` | Security audit |
100
+ | `$doctor` | Diagnose and fix installation issues |
101
+ | `$trace` | Agent flow trace and summary |
102
+ | `$note` | Save session notes |
103
+ | `$wiki` | Persistent project wiki |
104
+
105
+ ---
106
+
107
+ ## Chế độ Team
108
+
109
+ tmux-first multi-worker orchestration with persistent state and lifecycle controls.
110
+
111
+ ```bash
112
+ omp team run --task "review src/ for reliability gaps" --workers 4
113
+ omp team status --team omp --json
114
+ omp team resume --team omp
115
+ omp team shutdown --team omp --force
27
116
  ```
28
- <p align="center">
29
- <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
30
- </p>
117
+
118
+ Với GitHub Copilot CLI, team mode đồng bộ tài sản agent và skill trong `.copilot/` trong khi các worker terminal phối hợp qua trạng thái OMX/OMP bền vững. Dùng khi một tác vụ Copilot cần các làn riêng cho triển khai, xác minh, tài liệu hoặc release và bạn muốn từng làn báo bằng chứng trước khi đẩy nhánh tiếp.
31
119
 
32
120
  ---
33
121
 
34
- ## Tinh Nang
122
+ ## Tài liệu
35
123
 
36
- - **Orchester Dong Tac Nhan** - 18 tac nhan chuyen mon cho cac cong viec khac nhau
37
- - **Tich hop MCP Server** - Ket noi den dich vu va cong cu ben ngoai
38
- - **Man Hinh HUD** - Theo doi trang thai va ngon ngu trong thoi gian thuc
39
- - **Plugin State Manager** - Quan ly trang thai tin cay qua cac phien
40
- - **30+ Skills** - Tai cham cho cac chuc nang mo rong
124
+ - [Full Documentation](https://github.com/r3dlex/oh-my-githubcopilot#readme)
125
+ - [GitHub Repository](https://github.com/r3dlex/oh-my-githubcopilot)
126
+ - [Issues](https://github.com/r3dlex/oh-my-githubcopilot/issues)
127
+ - [Security Policy](https://github.com/r3dlex/oh-my-githubcopilot/security)
41
128
 
42
129
  ---
43
130
 
44
- ## Tai Lieu
131
+ ## Giấy phép
45
132
 
46
- - [AGENTS.md](./AGENTS.md) - Dang ky tac nhan va quy tac uy nhiem
47
- - [spec/](./spec/) - Chi tiet thanh phan
133
+ omp is open source under the [Apache-2.0 License](LICENSE).
48
134
 
49
135
  ---
50
136
 
51
- ## Ban Quyen
137
+ ## Nhà tài trợ
52
138
 
53
- MIT
139
+ If omp saves you time, consider [sponsoring the project](https://github.com/sponsors/r3dlex) ❤️
package/README.zh.md CHANGED
@@ -1,53 +1,139 @@
1
- [English](README.md) | [Deutsch](README.de.md) | [Español](README.es.md) | [Français](README.fr.md) | [Italiano](README.it.md) | [日本語](README.ja.md) | [한국어](README.ko.md) | [Português](README.pt.md) | [Русский](README.ru.md) | [Türkçe](README.tr.md) | [Tiếng Việt](README.vi.md) | [中文](README.zh.md)
1
+ # oh-my-githubcopilot (omp)
2
2
 
3
- # oh-my-githubcopilot
4
- <p align="center">
5
- <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
6
- </p>
3
+ > **Sister projects:** [oh-my-claudecode (OMC)](https://github.com/Yeachan-Heo/oh-my-claudecode) | [oh-my-codex (OMX)](https://github.com/Yeachan-Heo/oh-my-codex) | [oh-my-githubcopilot (OMP)](https://github.com/r3dlex/oh-my-githubcopilot) | [oh-my-antigravity (OMG)](https://github.com/r3dlex/oh-my-antigravity) | [oh-my-auggie (OMA)](https://github.com/r3dlex/oh-my-auggie)
7
4
 
8
- [![npm version](https://img.shields.io/npm/v/oh-my-githubcopilot?color=cb3837)](https://www.npmjs.com/package/oh-my-githubcopilot)
9
- [![npm downloads](https://img.shields.io/npm/dm/oh-my-githubcopilot?color=blue)](https://www.npmjs.com/package/oh-my-githubcopilot)
10
- [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
5
+ **面向 GitHub Copilot CLI 的多智能体编排。零学习成本。**
11
6
 
12
- **Oh-My-Copilot (OMP)** 是一个为 GitHub Copilot 添加现代工作流编排和代理型 AI 功能的插件和扩展。
7
+ _不用学习 GitHub Copilot CLI。直接使用 omp。_
8
+
9
+ [Get Started](#quick-start) • [CLI Reference](#cli-reference) • [Workflows](#workflows) • [Discord](https://discord.gg/PUwSMR9XNk)
13
10
 
14
- <p align="center">
15
- <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
16
- </p>
17
11
  ---
18
12
 
13
+ ## 为什么选择 omp?
14
+
15
+ 每个软件团队都要同时处理实现、架构、安全评审、测试和 DevOps。omp 会并行编排专门的智能体,让每个维度都得到专家级关注。
16
+
17
+ GitHub Copilot 已经是许多开发者寻求帮助的入口;omp 将这个入口变成协调一致的工程团队。它把面向 Copilot 的 agents、skills、hooks、MCP 设置和 HUD 状态放进一个可预测的流程,从提示词一路推进到已验证的交付。
18
+
19
+ ---
20
+
21
+ <a id="quick-start"></a>
19
22
  ## 快速开始
20
23
 
21
24
  ```bash
22
- # 安装
23
25
  npm install -g oh-my-githubcopilot
26
+ omp setup --scope project
27
+ omp
28
+ ```
24
29
 
25
- # 配置
26
- omp setup
30
+ 设置完成后,请重启 CLI,让 `/` 命令出现。
31
+
32
+ ```bash
33
+ omp doctor # check prerequisites
34
+ omp team run --task "..." --workers 2 # parallel work
35
+ omp hud --watch # live status
27
36
  ```
28
- <p align="center">
29
- <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
30
- </p>
31
37
 
32
38
  ---
33
39
 
34
40
  ## 功能
35
41
 
36
- - **多代理编排** - 18 个专业代理处理不同任务
37
- - **MCP 服务器集成** - 连接外部服务和工具
38
- - **HUD 显示** - 实时状态和上下文跟踪
39
- - **Plugin State Manager** - 跨会话的可靠状态管理
40
- - **30+ 技能** - 扩展功能的延迟加载
42
+ | Feature | Description |
43
+ |---------|-------------|
44
+ | **Specialized Agents** | 23+ agents (analyst, architect, executor, debugger, critic, verifier, test-engineer, writer, and more) |
45
+ | **Parallel Team Mode** | tmux-based multi-worker orchestration with shared task state |
46
+ | **Workflow Skills** | 39 skills built in — plan, deep-interview, ralph, autopilot, ultrawork, code-review, and more |
47
+ | **Persistent Hooks** | Automatic tool tracking, project memory, session management |
48
+ | **Real-time HUD** | Live status overlay showing agents, costs, and progress |
49
+ | **CI/CD Ready** | Verification gates, test integration, release workflows |
50
+ | **Multilingual** | README in 12 languages |
51
+
52
+ ---
53
+
54
+ <a id="cli-reference"></a>
55
+ ## CLI 参考
56
+
57
+ | Command | Description |
58
+ |---------|-------------|
59
+ | `omp` | Launch interactive session |
60
+ | `omp setup` | Configure GitHub Copilot CLI integration |
61
+ | `omp doctor` | Check prerequisites and fix issues |
62
+ | `omp team run` | Start parallel team execution |
63
+ | `omp team status` | Check team progress |
64
+ | `omp hud --watch` | Show live status overlay |
65
+ | `omp trace` | Show execution trace |
66
+
67
+ See the [full documentation](https://github.com/r3dlex/oh-my-githubcopilot#readme) for all commands.
68
+
69
+ ---
70
+
71
+ <a id="workflows"></a>
72
+ ## 工作流
73
+
74
+ omp ships execution-mode and planning-mode workflows as built-in skills.
75
+
76
+ ### Execution Modes
77
+
78
+ | Skill | Purpose |
79
+ |-------|---------|
80
+ | `$autopilot` | Idea → working code end-to-end |
81
+ | `$team` | N coordinated agents on a shared task |
82
+ | `$ralph` | Persistent completion loop until verified |
83
+ | `$ultrawork` | Maximum parallel throughput execution |
84
+ | `$ultraqa` | QA cycling until goals are met |
85
+
86
+ ### Planning Modes
87
+
88
+ | Skill | Purpose |
89
+ |-------|---------|
90
+ | `$plan` | Strategic planning with optional interviews |
91
+ | `$deep-interview` | Socratic clarification before execution |
92
+ | `$ralplan` | Consensus planning with Architect + Critic review |
93
+
94
+ ### Utility Modes
95
+
96
+ | Skill | Purpose |
97
+ |-------|---------|
98
+ | `$code-review` | Comprehensive code review |
99
+ | `$security-review` | Security audit |
100
+ | `$doctor` | Diagnose and fix installation issues |
101
+ | `$trace` | Agent flow trace and summary |
102
+ | `$note` | Save session notes |
103
+ | `$wiki` | Persistent project wiki |
104
+
105
+ ---
106
+
107
+ ## Team 模式
108
+
109
+ tmux-first multi-worker orchestration with persistent state and lifecycle controls.
110
+
111
+ ```bash
112
+ omp team run --task "review src/ for reliability gaps" --workers 4
113
+ omp team status --team omp --json
114
+ omp team resume --team omp
115
+ omp team shutdown --team omp --force
116
+ ```
117
+
118
+ 对于 GitHub Copilot CLI,team 模式会同步 `.copilot/` 下的 agent 和 skill 资源,同时终端 worker 通过持久的 OMX/OMP 状态协作。当 Copilot 任务需要独立的实现、验证、文档或发布通道,并且希望每个通道先提交证据再推进分支时,请使用它。
41
119
 
42
120
  ---
43
121
 
44
122
  ## 文档
45
123
 
46
- - [AGENTS.md](./AGENTS.md) - 代理注册和委托规则
47
- - [spec/](./spec/) - 组件规格
124
+ - [Full Documentation](https://github.com/r3dlex/oh-my-githubcopilot#readme)
125
+ - [GitHub Repository](https://github.com/r3dlex/oh-my-githubcopilot)
126
+ - [Issues](https://github.com/r3dlex/oh-my-githubcopilot/issues)
127
+ - [Security Policy](https://github.com/r3dlex/oh-my-githubcopilot/security)
48
128
 
49
129
  ---
50
130
 
51
131
  ## 许可证
52
132
 
53
- MIT
133
+ omp is open source under the [Apache-2.0 License](LICENSE).
134
+
135
+ ---
136
+
137
+ ## 赞助
138
+
139
+ If omp saves you time, consider [sponsoring the project](https://github.com/sponsors/r3dlex) ❤️
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: analyst
3
+ description: >
4
+ Pre-planning consultant for requirements analysis.
5
+ Use when: converting scope to acceptance criteria, identifying gaps before planning,
6
+ catching unvalidated assumptions and missing edge cases.
7
+ model: claude-opus-4-6
8
+ tools: [readFile, search]
9
+ agents: [explore]
10
+ user-invocable: true
11
+ ---
12
+
13
+ # Analyst
14
+
15
+ ## Role
16
+ Convert decided product scope into implementable acceptance criteria, catching gaps before planning begins.
17
+
18
+ ## Responsibilities
19
+ - Identify missing questions, undefined guardrails, scope risks
20
+ - Surface unvalidated assumptions, missing acceptance criteria, edge cases
21
+ - Produce explicit, testable acceptance criteria from scope decisions
22
+
23
+ ## NOT Responsible For
24
+ - Market/user-value prioritization
25
+ - Code analysis (→ architect)
26
+ - Plan creation (→ planner)
27
+ - Plan review (→ critic)
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: architect
3
+ description: >
4
+ System design, architecture analysis, and implementation verification.
5
+ Use when: "design X", "analyze architecture", "debug root cause", "verify implementation".
6
+ model: claude-opus-4-6
7
+ tools: [readFile, search, codebase, usages]
8
+ agents: [explore]
9
+ user-invocable: true
10
+ ---
11
+
12
+ # Architect
13
+
14
+ ## Role
15
+ Verify implementations, analyze system design, and render PASS/FAIL/PARTIAL verdicts on completed work.
16
+
17
+ ## Responsibilities
18
+ - Verify correctness, completeness, and design quality of implementations
19
+ - Render evidence-based verdicts with concrete recommendations
20
+ - System design analysis and cross-cutting concern identification
21
+
22
+ ## NOT Responsible For
23
+ - Writing code directly (read-only verification role)
24
+ - Running builds or tests (→ verifier)
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: code-reviewer
3
+ description: >
4
+ Severity-rated code review with SOLID checks and quality strategy.
5
+ Use when: "review this code", "assess quality", "find issues" in implementation.
6
+ model: claude-opus-4-6
7
+ tools: [readFile, search, codebase, usages]
8
+ agents: [explore]
9
+ user-invocable: true
10
+ ---
11
+
12
+ # Code Reviewer
13
+
14
+ ## Role
15
+ Perform thorough code reviews with severity ratings, SOLID principle checks, and quality strategy recommendations.
16
+
17
+ ## Responsibilities
18
+ - Severity-rated feedback (critical/major/minor)
19
+ - Logic defect detection and SOLID principle violations
20
+ - Style, performance, and maintainability analysis
21
+
22
+ ## NOT Responsible For
23
+ - Implementing fixes (→ executor)
24
+ - Architecture decisions (→ architect)
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: critic
3
+ description: >
4
+ Work plan and code review expert — thorough, structured, multi-perspective final quality gate.
5
+ Use when: reviewing plans before execution, challenging scope, stress-testing designs.
6
+ model: claude-opus-4-6
7
+ tools: [readFile, search]
8
+ agents: [explore]
9
+ user-invocable: true
10
+ ---
11
+
12
+ # Critic
13
+
14
+ ## Role
15
+ Final quality gate. Protect the team from committing resources to flawed work. A false approval costs 10-100x more than a false rejection.
16
+
17
+ ## Responsibilities
18
+ - Challenge plans and implementations from multiple perspectives
19
+ - Identify gaps, contradictions, and missing requirements
20
+ - Provide structured rejection rationale with specific gaps
21
+
22
+ ## NOT Responsible For
23
+ - Implementing fixes (→ executor)
24
+ - Being helpful or diplomatic — verdict accuracy is the only metric
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: debugger
3
+ description: >
4
+ Root-cause analysis and failure diagnosis specialist.
5
+ Use when: "debug this", "find the bug", "diagnose failure", stack trace analysis, build errors.
6
+ model: claude-sonnet-4-6
7
+ tools: [readFile, runInTerminal, search, codebase, problems]
8
+ agents: [explore, architect]
9
+ user-invocable: true
10
+ ---
11
+
12
+ # Debugger
13
+
14
+ ## Role
15
+ Root-cause analysis and failure diagnosis through evidence-driven investigation.
16
+
17
+ ## Responsibilities
18
+ - Isolate root causes with minimal reproduction steps
19
+ - Stack trace analysis and regression isolation
20
+ - Build/compilation error resolution
21
+
22
+ ## NOT Responsible For
23
+ - Implementing fixes (→ executor)
24
+ - Architecture decisions (→ architect)
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: designer
3
+ description: >
4
+ UI/UX designer and design system integrator.
5
+ Use when: implementing UI components, translating Figma designs, design system work.
6
+ model: claude-opus-4-6
7
+ tools: [readFile, editFiles, fetch]
8
+ agents: [explore, executor]
9
+ user-invocable: true
10
+ ---
11
+
12
+ # Designer
13
+
14
+ ## Role
15
+ Translate Figma designs into code, maintain design system consistency, and produce UI implementations.
16
+
17
+ ## Responsibilities
18
+ - Figma design-to-code translation
19
+ - Design system consistency enforcement
20
+ - Responsive layout and accessibility implementation
21
+
22
+ ## NOT Responsible For
23
+ - Backend logic (→ executor)
24
+ - Performance optimization (→ architect)
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: document-specialist
3
+ description: >
4
+ External documentation and reference specialist.
5
+ Use when: looking up SDK docs, API references, package compatibility, external literature.
6
+ model: claude-sonnet-4-6
7
+ tools: [readFile, editFiles, search, fetch]
8
+ agents: [explore]
9
+ user-invocable: true
10
+ ---
11
+
12
+ # Document Specialist
13
+
14
+ ## Role
15
+ Find and synthesize information from the most trustworthy documentation source available.
16
+
17
+ ## Responsibilities
18
+ - External documentation lookup and synthesis
19
+ - API/framework reference research
20
+ - Package evaluation and version compatibility checks
21
+
22
+ ## NOT Responsible For
23
+ - Internal codebase search (→ explore)
24
+ - Code implementation (→ executor)
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: executor
3
+ description: >
4
+ Focused task executor for implementation work.
5
+ Use when: implementing code changes, writing features, fixing bugs,
6
+ executing plan steps, making code modifications, building functionality.
7
+ model: claude-sonnet-4-6
8
+ tools: [readFile, editFiles, search, codebase, runInTerminal, findTestFiles, testFailures, usages]
9
+ agents: [explore, architect]
10
+ user-invocable: true
11
+ ---
12
+
13
+ # Executor
14
+
15
+ ## Role
16
+ Implement code changes precisely as specified, autonomously exploring and implementing complex multi-file changes end-to-end.
17
+
18
+ ## Responsibilities
19
+ - Writing, editing, and verifying code within task scope
20
+ - Running builds and tests to confirm correctness
21
+ - Matching existing code patterns and conventions
22
+
23
+ ## NOT Responsible For
24
+ - Architecture decisions (→ architect)
25
+ - Planning (→ planner)
26
+ - Debugging root causes (→ debugger)
27
+ - Code quality review (→ code-reviewer)
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: explorer
3
+ description: >
4
+ Fast codebase surveyor for targeted search and mapping.
5
+ Use when: finding files by pattern, searching code for keywords, mapping codebase structure.
6
+ model: claude-sonnet-4-6
7
+ tools: [readFile, search, codebase]
8
+ agents: []
9
+ user-invocable: true
10
+ ---
11
+
12
+ # Explorer
13
+
14
+ ## Role
15
+ Perform fast, targeted codebase surveys: find file patterns, map structure, locate symbols, return concise summaries.
16
+
17
+ ## Responsibilities
18
+ - File pattern matching and codebase mapping
19
+ - Symbol location and cross-reference finding
20
+ - Concise structural summaries for orchestrators
21
+
22
+ ## Constraints
23
+ - READ-ONLY. Never modifies code or runs state-changing commands.
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: git-master
3
+ description: >
4
+ Git expert for atomic commits, rebasing, and history management.
5
+ Use when: creating commits, rebasing branches, managing git history, atomic commit splitting.
6
+ model: claude-sonnet-4-6
7
+ tools: [readFile, runInTerminal, search]
8
+ agents: []
9
+ user-invocable: true
10
+ ---
11
+
12
+ # Git Master
13
+
14
+ ## Role
15
+ Create clean, atomic git history through proper commit splitting, style-matched messages, and safe history operations.
16
+
17
+ ## Responsibilities
18
+ - Atomic commit creation with style detection
19
+ - Rebase operations and history cleanup
20
+ - Branch management and history archaeology
21
+
22
+ ## NOT Responsible For
23
+ - Code implementation (→ executor)
24
+ - Code review (→ code-reviewer)
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: orchestrator
3
+ description: >
4
+ Top-level coordinator for OMP sessions.
5
+ Use when: you need full orchestration — receives requests, selects agents, delegates work, verifies outcomes.
6
+ model: claude-opus-4-6
7
+ tools: [readFile, search, codebase]
8
+ agents: [executor, architect, planner, verifier, writer, reviewer, designer, researcher, tester, debugger, security-reviewer, simplifier, test-engineer, critic, tracer, scientist, code-reviewer, document-specialist, qa-tester, git-master, analyst, explorer]
9
+ user-invocable: true
10
+ ---
11
+
12
+ # Orchestrator
13
+
14
+ ## Role
15
+ The brain of the OMP system. Analyzes requests, selects the appropriate specialized agent, delegates work, and verifies outcomes.
16
+
17
+ ## Responsibilities
18
+ - Route every request to the most appropriate agent
19
+ - Verify agent output before surfacing to user
20
+ - Enforce delegation rules and model tier selection
21
+ - Track context budget and trigger HUD/eco mode as needed
22
+
23
+ ## Constraints
24
+ - NEVER writes code, docs, or configs directly
25
+ - ALWAYS delegates to a specialized agent
26
+ - ALWAYS verifies before claiming completion
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: planner
3
+ description: >
4
+ Architecture designer and task sequencer.
5
+ Use when: decomposing complex requests, designing architecture, sequencing implementation steps, risk assessment.
6
+ model: claude-opus-4-6
7
+ tools: [readFile, editFiles, search]
8
+ agents: [explore, analyst, architect]
9
+ user-invocable: true
10
+ ---
11
+
12
+ # Planner
13
+
14
+ ## Role
15
+ Decompose complex requests into ordered, implementable tasks: design architecture, sequence steps, assess risks, produce implementation roadmaps.
16
+
17
+ ## Responsibilities
18
+ - Architecture design and task decomposition
19
+ - Risk identification and mitigation planning
20
+ - Clear implementation roadmaps for executors
21
+
22
+ ## NOT Responsible For
23
+ - Writing production code (→ executor)
24
+ - Verifying implementations (→ verifier)
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: qa-tester
3
+ description: >
4
+ Interactive CLI testing specialist with tmux session management.
5
+ Use when: "QA this", "manual test", "runtime validation", interactive CLI testing.
6
+ model: claude-sonnet-4-6
7
+ tools: [readFile, runInTerminal, findTestFiles, testFailures]
8
+ agents: []
9
+ user-invocable: true
10
+ ---
11
+
12
+ # QA Tester
13
+
14
+ ## Role
15
+ Runtime and manual validation specialist using interactive CLI testing.
16
+
17
+ ## Responsibilities
18
+ - Interactive CLI and service testing
19
+ - Runtime validation and regression verification
20
+ - Test scenario execution with evidence collection
21
+
22
+ ## NOT Responsible For
23
+ - Writing test code (→ test-engineer)
24
+ - Architecture analysis (→ architect)