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.
- package/.claude-plugin/plugin.json +36 -6
- package/.mcp.json +17 -0
- package/AGENTS.md +78 -9
- package/CHANGELOG.md +216 -1
- 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 -95
- 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/agents/analyst.agent.md +27 -0
- package/agents/architect.agent.md +24 -0
- package/agents/code-reviewer.agent.md +24 -0
- package/agents/critic.agent.md +24 -0
- package/agents/debugger.agent.md +24 -0
- package/agents/designer.agent.md +24 -0
- package/agents/document-specialist.agent.md +24 -0
- package/agents/executor.agent.md +27 -0
- package/agents/explorer.agent.md +23 -0
- package/agents/git-master.agent.md +24 -0
- package/agents/orchestrator.agent.md +26 -0
- package/agents/planner.agent.md +24 -0
- package/agents/qa-tester.agent.md +24 -0
- package/agents/researcher.agent.md +18 -0
- package/agents/reviewer.agent.md +23 -0
- package/agents/scientist.agent.md +20 -0
- package/agents/security-reviewer.agent.md +20 -0
- package/agents/simplifier.agent.md +20 -0
- package/agents/test-engineer.agent.md +20 -0
- package/agents/tester.agent.md +20 -0
- package/agents/tracer.agent.md +24 -0
- package/agents/verifier.agent.md +19 -0
- package/agents/writer.agent.md +24 -0
- package/bin/omp-statusline.mjs +179 -0
- package/bin/omp-statusline.mjs.map +7 -0
- package/bin/omp-statusline.sh +21 -0
- package/bin/omp.mjs +709 -16
- package/bin/omp.mjs.map +4 -4
- package/dist/hooks/hud-emitter.mjs +268 -82
- package/dist/hooks/hud-emitter.mjs.map +4 -4
- package/dist/hooks/keyword-detector.mjs +100 -23
- package/dist/hooks/keyword-detector.mjs.map +2 -2
- package/dist/hooks/model-router.mjs +1 -1
- package/dist/hooks/model-router.mjs.map +1 -1
- package/dist/hooks/stop-continuation.mjs +1 -1
- package/dist/hooks/stop-continuation.mjs.map +1 -1
- package/dist/hooks/token-tracker.mjs +2 -1
- package/dist/hooks/token-tracker.mjs.map +2 -2
- package/dist/mcp/server.mjs +85 -53
- package/dist/mcp/server.mjs.map +4 -4
- package/dist/skills/setup.mjs +39 -27
- package/dist/skills/setup.mjs.map +4 -4
- package/hooks/hooks.json +39 -45
- package/package.json +9 -4
- package/plugin.json +71 -0
- package/skills/ai-slop-cleaner/SKILL.md +137 -0
- package/skills/autopilot/SKILL.md +6 -0
- package/skills/configure-notifications/SKILL.md +6 -0
- package/skills/deep-interview/SKILL.md +6 -0
- package/skills/doctor/SKILL.md +188 -0
- package/skills/ecomode/SKILL.md +6 -0
- package/skills/graph-context/SKILL.md +119 -0
- package/skills/graph-provider/SKILL.md +6 -0
- package/skills/graphify/SKILL.md +6 -0
- package/skills/graphwiki/SKILL.md +6 -0
- package/skills/hud/SKILL.md +6 -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/learner/SKILL.md +6 -0
- package/skills/mcp-setup/SKILL.md +6 -0
- package/skills/note/SKILL.md +6 -0
- package/skills/notifications/SKILL.md +190 -0
- package/skills/omp-doctor/SKILL.md +146 -0
- package/skills/omp-plan/SKILL.md +219 -2
- package/skills/omp-reference/SKILL.md +174 -0
- package/skills/omp-setup/SKILL.md +15 -1
- package/skills/pipeline/SKILL.md +6 -0
- package/skills/psm/SKILL.md +6 -0
- package/skills/ralph/SKILL.md +6 -0
- package/skills/ralplan/SKILL.md +148 -0
- package/skills/release/SKILL.md +6 -0
- package/skills/research/SKILL.md +149 -0
- package/skills/session/SKILL.md +220 -0
- package/skills/setup/SKILL.md +6 -0
- package/skills/skillify/SKILL.md +66 -0
- package/skills/spending/SKILL.md +6 -0
- package/skills/swarm/SKILL.md +6 -0
- package/skills/swe-bench/SKILL.md +6 -0
- package/skills/tdd/SKILL.md +246 -0
- package/skills/team/SKILL.md +6 -0
- package/skills/trace/SKILL.md +6 -0
- package/skills/ultrawork/SKILL.md +6 -0
- package/skills/wiki/SKILL.md +6 -0
- package/src/agents/analyst.md +0 -103
- package/src/agents/architect.md +0 -169
- package/src/agents/code-reviewer.md +0 -135
- package/src/agents/critic.md +0 -196
- package/src/agents/debugger.md +0 -132
- package/src/agents/designer.md +0 -103
- package/src/agents/document-specialist.md +0 -111
- package/src/agents/executor.md +0 -120
- package/src/agents/explorer.md +0 -98
- package/src/agents/git-master.md +0 -92
- package/src/agents/orchestrator.md +0 -125
- package/src/agents/planner.md +0 -106
- package/src/agents/qa-tester.md +0 -129
- package/src/agents/researcher.md +0 -102
- package/src/agents/reviewer.md +0 -100
- package/src/agents/scientist.md +0 -150
- package/src/agents/security-reviewer.md +0 -132
- package/src/agents/simplifier.md +0 -109
- package/src/agents/test-engineer.md +0 -124
- package/src/agents/tester.md +0 -102
- package/src/agents/tracer.md +0 -160
- package/src/agents/verifier.md +0 -100
- package/src/agents/writer.md +0 -96
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) ❤️
|
package/README.tr.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 için çok ajanlı orkestrasyon. Öğrenme eğrisi yok.**
|
|
11
6
|
|
|
12
|
-
|
|
7
|
+
_GitHub Copilot CLI öğrenme. Sadece omp kullan._
|
|
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
|
+
## Neden omp?
|
|
14
|
+
|
|
15
|
+
Her yazılım ekibi uygulama, mimari, güvenlik incelemesi, test ve DevOps işlerini aynı anda yürütür. omp, uzman ajanları paralel olarak orkestre eder ve her boyutun uzman dikkati almasını sağlar.
|
|
16
|
+
|
|
17
|
+
GitHub Copilot birçok geliştiricinin yardım istediği yer; omp bu yüzeyi koordineli bir mühendislik ekibine dönüştürür. Copilot odaklı ajanları, skill’leri, hook’ları, MCP kurulumunu ve HUD durumunu öngörülebilir bir akışta toplar.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
<a id="quick-start"></a>
|
|
22
|
+
## Hızlı başlangıç
|
|
17
23
|
|
|
18
24
|
```bash
|
|
19
|
-
# Kurulum
|
|
20
25
|
npm install -g oh-my-githubcopilot
|
|
26
|
+
omp setup --scope project
|
|
27
|
+
omp
|
|
28
|
+
```
|
|
21
29
|
|
|
22
|
-
|
|
23
|
-
|
|
30
|
+
Kurulumdan sonra `/` komutlarının görünmesi için CLI’yi yeniden başlatın.
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
omp doctor # check prerequisites
|
|
34
|
+
omp team run --task "..." --workers 2 # parallel work
|
|
35
|
+
omp hud --watch # live status
|
|
24
36
|
```
|
|
25
|
-
<p align="center">
|
|
26
|
-
<img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
|
|
27
|
-
</p>
|
|
28
37
|
|
|
29
|
-
<p align="center">
|
|
30
|
-
<img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
|
|
31
|
-
</p>
|
|
32
38
|
---
|
|
33
39
|
|
|
34
|
-
##
|
|
40
|
+
## Özellikler
|
|
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 referansı
|
|
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
|
+
## İş akışları
|
|
35
73
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
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 modu
|
|
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 için team modu, `.copilot/` altındaki ajan ve skill varlıklarını senkron tutarken terminal worker’ları kalıcı OMX/OMP durumu üzerinden koordine eder. Copilot görevi uygulama, doğrulama, dokümantasyon veya release için ayrı şeritler gerektirdiğinde ve branch ilerlemeden kanıt istediğinizde kullanın.
|
|
41
119
|
|
|
42
120
|
---
|
|
43
121
|
|
|
44
|
-
##
|
|
122
|
+
## Dokümantasyon
|
|
45
123
|
|
|
46
|
-
- [
|
|
47
|
-
- [
|
|
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
|
## Lisans
|
|
52
132
|
|
|
53
|
-
|
|
133
|
+
omp is open source under the [Apache-2.0 License](LICENSE).
|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
|
|
137
|
+
## Sponsorlar
|
|
138
|
+
|
|
139
|
+
If omp saves you time, consider [sponsoring the project](https://github.com/sponsors/r3dlex) ❤️
|