oh-my-githubcopilot 1.5.7 → 1.8.0-alpha.afa30a7
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.
- package/.claude-plugin/plugin.json +27 -5
- package/AGENTS.md +78 -9
- package/CHANGELOG.md +92 -0
- package/README.de.md +112 -26
- package/README.es.md +115 -29
- package/README.fr.md +114 -28
- package/README.it.md +114 -28
- package/README.ja.md +112 -26
- package/README.ko.md +112 -26
- package/README.md +96 -175
- package/README.pt.md +116 -30
- package/README.ru.md +116 -30
- package/README.tr.md +115 -29
- package/README.vi.md +116 -30
- package/README.zh.md +112 -26
- package/bin/omp.mjs +423 -19
- package/bin/omp.mjs.map +4 -4
- package/dist/hooks/keyword-detector.mjs +18 -3
- package/dist/hooks/keyword-detector.mjs.map +2 -2
- package/dist/mcp/server.mjs +28 -12
- package/dist/mcp/server.mjs.map +2 -2
- package/hooks/hooks.json +1 -1
- package/package.json +5 -4
- package/plugin.json +27 -5
- package/skills/ai-slop-cleaner/SKILL.md +137 -0
- package/skills/doctor/SKILL.md +188 -0
- package/skills/graph-context/SKILL.md +119 -0
- package/skills/improve-codebase-architecture/SKILL.md +214 -0
- package/skills/interactive-menu/SKILL.md +102 -0
- package/skills/interview/SKILL.md +203 -0
- package/skills/notifications/SKILL.md +190 -0
- package/skills/omp-doctor/SKILL.md +146 -0
- package/skills/omp-plan/SKILL.md +215 -4
- package/skills/omp-reference/SKILL.md +174 -0
- package/skills/ralplan/SKILL.md +148 -0
- package/skills/research/SKILL.md +149 -0
- package/skills/session/SKILL.md +220 -0
- package/skills/skillify/SKILL.md +66 -0
- package/skills/tdd/SKILL.md +246 -0
package/README.md
CHANGED
|
@@ -1,219 +1,140 @@
|
|
|
1
|
-
# oh-my-githubcopilot (
|
|
1
|
+
# oh-my-githubcopilot (omp)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
<img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
|
|
5
|
-
</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)
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
Multi-agent orchestration for GitHub Copilot CLI — powered by 23 specialized agents, 25 skills, and a real-time HUD.
|
|
9
|
-
</p>
|
|
5
|
+
**Multi-agent orchestration for GitHub Copilot CLI. Zero learning curve.**
|
|
10
6
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
[
|
|
14
|
-
[](https://github.com/sponsors/r3dlex)
|
|
7
|
+
_Don't learn GitHub Copilot CLI. Just use omp._
|
|
8
|
+
|
|
9
|
+
[Get Started](#quick-start) • [CLI Reference](#cli-reference) • [Workflows](#workflows) • [Discord](https://discord.gg/PUwSMR9XNk)
|
|
15
10
|
|
|
16
11
|
---
|
|
17
12
|
|
|
18
|
-
## Why
|
|
13
|
+
## Why omp?
|
|
19
14
|
|
|
20
|
-
Every software team juggles implementation, architecture, security review, testing, and DevOps — all simultaneously.
|
|
15
|
+
Every software team juggles implementation, architecture, security review, testing, and DevOps — all simultaneously. omp orchestrates specialized agents so every dimension gets expert attention, in parallel, without you herding cats.
|
|
21
16
|
|
|
22
|
-
|
|
23
|
-
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
24
|
-
| **23 agents** | executor, architect, planner, reviewer, debugger, designer, security-reviewer, scientist, analyst, and more — each tuned to a different craft |
|
|
25
|
-
| **25 skills** | `autopilot`, `ralph`, `ultrawork`, `team`, `ecomode`, `swarm`, `pipeline`, `omp-plan`, `graphify`, `spending`, and more — trigger with a slash command |
|
|
26
|
-
| **6 hooks** | Keyword detection, delegation routing, model selection, token tracking, HUD emission, stop-continuation |
|
|
27
|
-
| **MCP server** | Built-in tools for extended capabilities |
|
|
28
|
-
| **HUD display** | Real-time session context and progress tracking |
|
|
29
|
-
| **PSM** | Plugin State Manager with SQLite persistence across sessions |
|
|
30
|
-
| **SWE-bench** | Benchmark harness for reproducible evaluation |
|
|
31
|
-
| **Copilot repo layout** | Copilot-facing docs live under `.copilot/`; `.github/` is reserved for workflows, plugin metadata, and hook entrypoints |
|
|
17
|
+
GitHub Copilot is already where many developers ask for help; omp turns that surface into a coordinated engineering team. It keeps Copilot-facing agents, skills, hooks, MCP setup, and HUD state in one predictable workflow so you can move from prompt to verified delivery without hand-wiring the orchestration layer.
|
|
32
18
|
|
|
33
|
-
|
|
34
|
-
<img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
|
|
35
|
-
</p>
|
|
19
|
+
---
|
|
36
20
|
|
|
37
21
|
## Quick Start
|
|
38
22
|
|
|
39
|
-
### 1) Install the plugin
|
|
40
|
-
|
|
41
|
-
From a local checkout:
|
|
42
|
-
|
|
43
23
|
```bash
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
24
|
+
npm install -g oh-my-githubcopilot
|
|
25
|
+
omp setup --scope project
|
|
26
|
+
omp
|
|
47
27
|
```
|
|
48
28
|
|
|
49
|
-
|
|
29
|
+
After setup, restart your CLI for the `/` commands to appear.
|
|
50
30
|
|
|
51
31
|
```bash
|
|
52
|
-
|
|
32
|
+
omp doctor # check prerequisites
|
|
33
|
+
omp team run --task "..." --workers 2 # parallel work
|
|
34
|
+
omp hud --watch # live status
|
|
53
35
|
```
|
|
54
36
|
|
|
55
|
-
|
|
37
|
+
---
|
|
56
38
|
|
|
57
|
-
|
|
58
|
-
/skills list
|
|
59
|
-
/setup
|
|
60
|
-
/mcp show
|
|
61
|
-
```
|
|
39
|
+
## Features
|
|
62
40
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
41
|
+
| Feature | Description |
|
|
42
|
+
|---------|-------------|
|
|
43
|
+
| **Specialized Agents** | 23+ agents (analyst, architect, executor, debugger, critic, verifier, test-engineer, writer, and more) |
|
|
44
|
+
| **Parallel Team Mode** | tmux-based multi-worker orchestration with shared task state |
|
|
45
|
+
| **Workflow Skills** | 39 skills built in — plan, deep-interview, ralph, autopilot, ultrawork, code-review, and more |
|
|
46
|
+
| **Persistent Hooks** | Automatic tool tracking, project memory, session management |
|
|
47
|
+
| **Real-time HUD** | Live status overlay showing agents, costs, and progress |
|
|
48
|
+
| **CI/CD Ready** | Verification gates, test integration, release workflows |
|
|
49
|
+
| **Multilingual** | README in 12 languages |
|
|
66
50
|
|
|
67
|
-
|
|
51
|
+
---
|
|
68
52
|
|
|
69
|
-
|
|
70
|
-
- `SHOW_FILE`
|
|
71
|
-
- `EXTENSIONS`
|
|
72
|
-
- `BACKGROUND_SESSIONS`
|
|
73
|
-
- `CONFIGURE_COPILOT_AGENT`
|
|
74
|
-
- `MULTI_TURN_AGENTS`
|
|
75
|
-
- `SESSION_STORE`
|
|
53
|
+
## CLI Reference
|
|
76
54
|
|
|
77
|
-
|
|
55
|
+
| Command | Description |
|
|
56
|
+
|---------|-------------|
|
|
57
|
+
| `omp` | Launch interactive session |
|
|
58
|
+
| `omp setup` | Configure GitHub Copilot CLI integration |
|
|
59
|
+
| `omp doctor` | Check prerequisites and fix issues |
|
|
60
|
+
| `omp team run` | Start parallel team execution |
|
|
61
|
+
| `omp team status` | Check team progress |
|
|
62
|
+
| `omp hud --watch` | Show live status overlay |
|
|
63
|
+
| `omp trace` | Show execution trace |
|
|
78
64
|
|
|
79
|
-
|
|
80
|
-
@executor implement the requested change
|
|
81
|
-
@planner break this task into steps
|
|
82
|
-
@verifier check build, tests, and diagnostics
|
|
83
|
-
```
|
|
65
|
+
See the [full documentation](https://github.com/r3dlex/oh-my-githubcopilot#readme) for all commands.
|
|
84
66
|
|
|
85
|
-
|
|
67
|
+
---
|
|
86
68
|
|
|
87
|
-
|
|
88
|
-
npm install -g oh-my-githubcopilot
|
|
89
|
-
omp setup
|
|
90
|
-
omp version
|
|
91
|
-
omp hud
|
|
92
|
-
omp hud --watch
|
|
93
|
-
```
|
|
69
|
+
## Workflows
|
|
94
70
|
|
|
95
|
-
|
|
96
|
-
Running `omp setup` performs the same non-destructive Copilot config merge as `/setup` (or `/omp:setup`).
|
|
97
|
-
Use `omp hud --watch` when you want the local HUD daemon to keep refreshing session artifacts in the background.
|
|
71
|
+
omp ships execution-mode and planning-mode workflows as built-in skills.
|
|
98
72
|
|
|
99
|
-
###
|
|
73
|
+
### Execution Modes
|
|
100
74
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
75
|
+
| Skill | Purpose |
|
|
76
|
+
|-------|---------|
|
|
77
|
+
| `$autopilot` | Idea → working code end-to-end |
|
|
78
|
+
| `$team` | N coordinated agents on a shared task |
|
|
79
|
+
| `$ralph` | Persistent completion loop until verified |
|
|
80
|
+
| `$ultrawork` | Maximum parallel throughput execution |
|
|
81
|
+
| `$ultraqa` | QA cycling until goals are met |
|
|
105
82
|
|
|
106
|
-
|
|
107
|
-
<img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
|
|
108
|
-
</p>
|
|
83
|
+
### Planning Modes
|
|
109
84
|
|
|
110
|
-
|
|
85
|
+
| Skill | Purpose |
|
|
86
|
+
|-------|---------|
|
|
87
|
+
| `$plan` | Strategic planning with optional interviews |
|
|
88
|
+
| `$deep-interview` | Socratic clarification before execution |
|
|
89
|
+
| `$ralplan` | Consensus planning with Architect + Critic review |
|
|
111
90
|
|
|
112
|
-
|
|
113
|
-
┌──────────────────────────────────────────────────────────────┐
|
|
114
|
-
│ oh-my-githubcopilot │
|
|
115
|
-
├──────────────────┬──────────────────┬────────────────────────┤
|
|
116
|
-
│ Agents (23) │ Hooks (6) │ PSM (SQLite) │
|
|
117
|
-
│ ───────────── │ ───────────── │ ──────────────── │
|
|
118
|
-
│ executor │ keyword- │ Cross-session │
|
|
119
|
-
│ architect │ detector │ state persistence │
|
|
120
|
-
│ planner │ delegation- │ │
|
|
121
|
-
│ reviewer │ enforcer │ MCP Server │
|
|
122
|
-
│ debugger │ model-router │ ───────────── │
|
|
123
|
-
│ designer │ token-tracker │ tools exposed │
|
|
124
|
-
│ security- │ hud-emitter │ │
|
|
125
|
-
│ reviewer │ stop-contin. │ HUD Display │
|
|
126
|
-
│ ... (23 total) │ │ ───────────── │
|
|
127
|
-
│ │ │ tmux status bar │
|
|
128
|
-
├──────────────────┴──────────────────┴────────────────────────┤
|
|
129
|
-
│ .copilot/* refs + local Copilot-facing agent/skill docs │
|
|
130
|
-
│ ~/.omp/ (user config) + .omp/ (workspace config) │
|
|
131
|
-
└──────────────────────────────────────────────────────────────┘
|
|
132
|
-
```
|
|
91
|
+
### Utility Modes
|
|
133
92
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
|
139
|
-
|
|
|
140
|
-
|
|
|
141
|
-
|
|
|
142
|
-
| planner | high | Strategic planning and sequencing |
|
|
143
|
-
| verifier | standard | Build/test/diagnostic validation |
|
|
144
|
-
| writer | standard | Documentation and changelog work |
|
|
145
|
-
| explorer | fast | Read-only codebase surveys |
|
|
146
|
-
| debugger | standard | Root-cause analysis |
|
|
147
|
-
| reviewer | high | General quality review |
|
|
148
|
-
| security-reviewer | standard | Security review |
|
|
149
|
-
| ... | ... | 23 total roles across implementation, planning, QA, and documentation |
|
|
150
|
-
|
|
151
|
-
### Skills
|
|
152
|
-
|
|
153
|
-
25 skills, each triggerable via slash command or keyword:
|
|
154
|
-
|
|
155
|
-
| Skill | Trigger | Purpose |
|
|
156
|
-
| -------------- | ---------------------- | --------------------------------------------------- |
|
|
157
|
-
| autopilot | `/omp:autopilot` | Autonomous end-to-end execution |
|
|
158
|
-
| ralph | `/omp:ralph` | Persistent completion loop |
|
|
159
|
-
| ultrawork | `/omp:ultrawork` | Parallel multi-agent high-throughput implementation |
|
|
160
|
-
| team | `/omp:team` | Coordinated multi-agent execution |
|
|
161
|
-
| deep-interview | `/omp:deep-interview` | Requirements clarification |
|
|
162
|
-
| omp-plan | `/omp:plan` | Strategic planning |
|
|
163
|
-
| omp-setup | `/setup`, `/omp:setup` | Guided OMP setup |
|
|
164
|
-
| graphify | `/omp:graphify` | Knowledge graph generation |
|
|
165
|
-
| graphwiki | `/omp:graphwiki` | Query and maintain graphwiki knowledge |
|
|
166
|
-
| graph-provider | `/omp:graph-provider` | Manage the active graph backend |
|
|
167
|
-
| spending | `/omp:spending` | Track premium request usage |
|
|
168
|
-
| ... | ... | 25 total skills |
|
|
169
|
-
|
|
170
|
-
## Repository Layout
|
|
93
|
+
| Skill | Purpose |
|
|
94
|
+
|-------|---------|
|
|
95
|
+
| `$code-review` | Comprehensive code review |
|
|
96
|
+
| `$security-review` | Security audit |
|
|
97
|
+
| `$doctor` | Diagnose and fix installation issues |
|
|
98
|
+
| `$trace` | Agent flow trace and summary |
|
|
99
|
+
| `$note` | Save session notes |
|
|
100
|
+
| `$wiki` | Persistent project wiki |
|
|
171
101
|
|
|
172
|
-
|
|
173
|
-
.
|
|
174
|
-
├── AGENTS.md # orchestration brain
|
|
175
|
-
├── agents/ # 23 Copilot-facing agent files
|
|
176
|
-
├── skills/ # 25 skills
|
|
177
|
-
├── hooks/ # hook config + shell entrypoints
|
|
178
|
-
├── src/ # TypeScript implementation
|
|
179
|
-
├── dist/ # built runtime artifacts committed for plugin consumers
|
|
180
|
-
├── .github/
|
|
181
|
-
│ ├── hooks/ # GitHub/Copilot hook entrypoints
|
|
182
|
-
│ ├── plugin/ # plugin metadata
|
|
183
|
-
│ └── workflows/ # CI / release automation
|
|
184
|
-
├── .copilot/
|
|
185
|
-
│ ├── README.md # Copilot doc boundary
|
|
186
|
-
│ ├── copilot-instructions.md # Copilot-facing shared instructions
|
|
187
|
-
│ ├── copilot-reference.md # richer Copilot-specific reference
|
|
188
|
-
│ ├── agents/ # Copilot-facing agent docs
|
|
189
|
-
│ ├── skills/ # Copilot-facing skill docs
|
|
190
|
-
│ └── plugin/skills/ # Copilot plugin-bundled skill docs
|
|
191
|
-
└── spec/ # architecture and subsystem docs
|
|
192
|
-
```
|
|
102
|
+
---
|
|
193
103
|
|
|
194
|
-
##
|
|
104
|
+
## Team Mode
|
|
195
105
|
|
|
196
|
-
|
|
106
|
+
tmux-first multi-worker orchestration with persistent state and lifecycle controls.
|
|
197
107
|
|
|
198
108
|
```bash
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
109
|
+
omp team run --task "review src/ for reliability gaps" --workers 4
|
|
110
|
+
omp team status --team omp --json
|
|
111
|
+
omp team resume --team omp
|
|
112
|
+
omp team shutdown --team omp --force
|
|
203
113
|
```
|
|
204
114
|
|
|
205
|
-
For
|
|
115
|
+
For GitHub Copilot CLI, team mode keeps `.copilot/` agent and skill assets synchronized while terminal workers coordinate through durable OMX/OMP state. Use it when a Copilot task needs separate implementation, verification, documentation, or release lanes and you want each lane to report evidence before the branch moves forward.
|
|
206
116
|
|
|
207
|
-
|
|
208
|
-
copilot plugin uninstall oh-my-githubcopilot
|
|
209
|
-
copilot plugin install ./
|
|
210
|
-
```
|
|
117
|
+
---
|
|
211
118
|
|
|
212
|
-
|
|
119
|
+
## Documentation
|
|
213
120
|
|
|
214
|
-
|
|
215
|
-
/
|
|
216
|
-
/
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
121
|
+
- [Full Documentation](https://github.com/r3dlex/oh-my-githubcopilot#readme)
|
|
122
|
+
- [GitHub Repository](https://github.com/r3dlex/oh-my-githubcopilot)
|
|
123
|
+
- [Issues](https://github.com/r3dlex/oh-my-githubcopilot/issues)
|
|
124
|
+
- [Security Policy](https://github.com/r3dlex/oh-my-githubcopilot/security)
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## License
|
|
129
|
+
|
|
130
|
+
omp is open source under the [Apache-2.0 License](LICENSE).
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## Star History
|
|
135
|
+
|
|
136
|
+
[](https://www.star-history.com/?repos=r3dlex%2Foh-my-githubcopilot&type=date&legend=top-left)
|
|
137
|
+
|
|
138
|
+
## Sponsors
|
|
139
|
+
|
|
140
|
+
If omp saves you time, consider [sponsoring the project](https://github.com/sponsors/r3dlex) ❤️
|
package/README.pt.md
CHANGED
|
@@ -1,53 +1,139 @@
|
|
|
1
|
-
|
|
1
|
+
# oh-my-githubcopilot (omp)
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
9
|
-
[](https://www.npmjs.com/package/oh-my-githubcopilot)
|
|
10
|
-
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
**Orquestração multiagente para GitHub Copilot CLI. Curva de aprendizado zero.**
|
|
11
6
|
|
|
12
|
-
|
|
7
|
+
_Não aprenda GitHub Copilot CLI. Apenas use omp._
|
|
8
|
+
|
|
9
|
+
[Get Started](#quick-start) • [CLI Reference](#cli-reference) • [Workflows](#workflows) • [Discord](https://discord.gg/PUwSMR9XNk)
|
|
13
10
|
|
|
14
11
|
---
|
|
15
12
|
|
|
16
|
-
##
|
|
13
|
+
## Por que omp?
|
|
14
|
+
|
|
15
|
+
Toda equipe de software lida com implementação, arquitetura, revisão de segurança, testes e DevOps ao mesmo tempo. omp orquestra agentes especializados para que cada dimensão receba atenção especializada em paralelo.
|
|
16
|
+
|
|
17
|
+
GitHub Copilot já é onde muitos desenvolvedores pedem ajuda; omp transforma essa superfície em uma equipe de engenharia coordenada. Ele mantém agentes, skills, hooks, configuração MCP e estado HUD voltados ao Copilot em um fluxo previsível, do prompt à entrega verificada.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
<a id="quick-start"></a>
|
|
22
|
+
## Início rápido
|
|
17
23
|
|
|
18
24
|
```bash
|
|
19
|
-
# Instalacao
|
|
20
25
|
npm install -g oh-my-githubcopilot
|
|
26
|
+
omp setup --scope project
|
|
27
|
+
omp
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Depois do setup, reinicie sua CLI para que os comandos `/` apareçam.
|
|
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
|
+
## Recursos
|
|
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
|
+
## Referência CLI
|
|
21
56
|
|
|
22
|
-
|
|
23
|
-
|
|
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
|
+
## Fluxos de trabalho
|
|
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
|
+
## Modo 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
|
|
24
116
|
```
|
|
25
|
-
<p align="center">
|
|
26
|
-
<img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
|
|
27
|
-
</p>
|
|
28
117
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
</p>
|
|
118
|
+
Para GitHub Copilot CLI, o modo team mantém os ativos de agentes e skills em `.copilot/` sincronizados enquanto workers de terminal se coordenam via estado durável OMX/OMP. Use quando uma tarefa do Copilot precisar de trilhas separadas de implementação, verificação, documentação ou release com evidências antes de avançar o branch.
|
|
119
|
+
|
|
32
120
|
---
|
|
33
121
|
|
|
34
|
-
##
|
|
122
|
+
## Documentação
|
|
35
123
|
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
- **30+ Skills** - Carregamento lento para funcionalidade estendida
|
|
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
|
-
##
|
|
131
|
+
## Licença
|
|
45
132
|
|
|
46
|
-
|
|
47
|
-
- [spec/](./spec/) - Especificacoes de componentes
|
|
133
|
+
omp is open source under the [Apache-2.0 License](LICENSE).
|
|
48
134
|
|
|
49
135
|
---
|
|
50
136
|
|
|
51
|
-
##
|
|
137
|
+
## Patrocinadores
|
|
52
138
|
|
|
53
|
-
|
|
139
|
+
If omp saves you time, consider [sponsoring the project](https://github.com/sponsors/r3dlex) ❤️
|
package/README.ru.md
CHANGED
|
@@ -1,53 +1,139 @@
|
|
|
1
|
-
|
|
1
|
+
# oh-my-githubcopilot (omp)
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
9
|
-
[](https://www.npmjs.com/package/oh-my-githubcopilot)
|
|
10
|
-
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
**Мультиагентная оркестрация для GitHub Copilot CLI. Без кривой обучения.**
|
|
11
6
|
|
|
12
|
-
|
|
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
11
|
---
|
|
15
12
|
|
|
16
|
-
##
|
|
13
|
+
## Зачем нужен omp?
|
|
14
|
+
|
|
15
|
+
Любая команда одновременно занимается реализацией, архитектурой, проверкой безопасности, тестами и DevOps. omp оркестрирует специализированных агентов, чтобы каждое направление получало экспертное внимание параллельно.
|
|
16
|
+
|
|
17
|
+
GitHub Copilot уже является местом, где многие разработчики просят помощи; omp превращает эту поверхность в согласованную инженерную команду. Он объединяет Copilot-агентов, навыки, хуки, MCP-настройку и HUD-состояние в предсказуемый процесс от промпта до проверенной поставки.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
<a id="quick-start"></a>
|
|
22
|
+
## Быстрый старт
|
|
17
23
|
|
|
18
24
|
```bash
|
|
19
|
-
# Ustanovka
|
|
20
25
|
npm install -g oh-my-githubcopilot
|
|
26
|
+
omp setup --scope project
|
|
27
|
+
omp
|
|
28
|
+
```
|
|
29
|
+
|
|
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
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Возможности
|
|
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
|
+
## Справочник CLI
|
|
21
56
|
|
|
22
|
-
|
|
23
|
-
|
|
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
|
|
24
116
|
```
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
</p>
|
|
117
|
+
|
|
118
|
+
Для GitHub Copilot CLI режим team синхронизирует агентские и skill-ресурсы в `.copilot/`, пока терминальные worker-процессы координируются через долговечное состояние OMX/OMP. Используйте его, когда задаче Copilot нужны отдельные линии реализации, проверки, документации или релиза с доказательствами перед продвижением ветки.
|
|
28
119
|
|
|
29
120
|
---
|
|
30
121
|
|
|
31
|
-
##
|
|
122
|
+
## Документация
|
|
32
123
|
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
- **30+ Skills** - Lenivaya zagruzka dlya rashirennykh vozmozhnostey
|
|
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)
|
|
38
128
|
|
|
39
|
-
<p align="center">
|
|
40
|
-
<img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
|
|
41
|
-
</p>
|
|
42
129
|
---
|
|
43
130
|
|
|
44
|
-
##
|
|
131
|
+
## Лицензия
|
|
45
132
|
|
|
46
|
-
|
|
47
|
-
- [spec/](./spec/) - Specifikacii komponentov
|
|
133
|
+
omp is open source under the [Apache-2.0 License](LICENSE).
|
|
48
134
|
|
|
49
135
|
---
|
|
50
136
|
|
|
51
|
-
##
|
|
137
|
+
## Спонсоры
|
|
52
138
|
|
|
53
|
-
|
|
139
|
+
If omp saves you time, consider [sponsoring the project](https://github.com/sponsors/r3dlex) ❤️
|