oh-my-githubcopilot 1.4.0

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 (86) hide show
  1. package/.claude-plugin/plugin.json +41 -0
  2. package/AGENTS.md +107 -0
  3. package/CHANGELOG.md +104 -0
  4. package/LICENSE +190 -0
  5. package/README.de.md +53 -0
  6. package/README.es.md +53 -0
  7. package/README.fr.md +53 -0
  8. package/README.it.md +53 -0
  9. package/README.ja.md +53 -0
  10. package/README.ko.md +53 -0
  11. package/README.md +139 -0
  12. package/README.pt.md +53 -0
  13. package/README.ru.md +53 -0
  14. package/README.tr.md +53 -0
  15. package/README.vi.md +53 -0
  16. package/README.zh.md +53 -0
  17. package/bin/omp.mjs +59 -0
  18. package/bin/omp.mjs.map +7 -0
  19. package/dist/hooks/delegation-enforcer.mjs +96 -0
  20. package/dist/hooks/delegation-enforcer.mjs.map +7 -0
  21. package/dist/hooks/hud-emitter.mjs +167 -0
  22. package/dist/hooks/hud-emitter.mjs.map +7 -0
  23. package/dist/hooks/keyword-detector.mjs +134 -0
  24. package/dist/hooks/keyword-detector.mjs.map +7 -0
  25. package/dist/hooks/model-router.mjs +79 -0
  26. package/dist/hooks/model-router.mjs.map +7 -0
  27. package/dist/hooks/stop-continuation.mjs +83 -0
  28. package/dist/hooks/stop-continuation.mjs.map +7 -0
  29. package/dist/hooks/token-tracker.mjs +181 -0
  30. package/dist/hooks/token-tracker.mjs.map +7 -0
  31. package/dist/mcp/server.mjs +28492 -0
  32. package/dist/mcp/server.mjs.map +7 -0
  33. package/dist/skills/mcp-setup.mjs +42 -0
  34. package/dist/skills/mcp-setup.mjs.map +7 -0
  35. package/dist/skills/setup.mjs +38 -0
  36. package/dist/skills/setup.mjs.map +7 -0
  37. package/hooks/hooks.json +47 -0
  38. package/package.json +70 -0
  39. package/skills/autopilot/SKILL.md +35 -0
  40. package/skills/configure-notifications/SKILL.md +35 -0
  41. package/skills/deep-interview/SKILL.md +35 -0
  42. package/skills/ecomode/SKILL.md +35 -0
  43. package/skills/graph-provider/SKILL.md +77 -0
  44. package/skills/graphify/SKILL.md +51 -0
  45. package/skills/graphwiki/SKILL.md +66 -0
  46. package/skills/hud/SKILL.md +35 -0
  47. package/skills/learner/SKILL.md +35 -0
  48. package/skills/mcp-setup/SKILL.md +34 -0
  49. package/skills/note/SKILL.md +35 -0
  50. package/skills/omp-plan/SKILL.md +35 -0
  51. package/skills/omp-setup/SKILL.md +37 -0
  52. package/skills/pipeline/SKILL.md +35 -0
  53. package/skills/psm/SKILL.md +35 -0
  54. package/skills/ralph/SKILL.md +35 -0
  55. package/skills/release/SKILL.md +35 -0
  56. package/skills/setup/SKILL.md +43 -0
  57. package/skills/spending/SKILL.md +86 -0
  58. package/skills/swarm/SKILL.md +35 -0
  59. package/skills/swe-bench/SKILL.md +35 -0
  60. package/skills/team/SKILL.md +35 -0
  61. package/skills/trace/SKILL.md +35 -0
  62. package/skills/ultrawork/SKILL.md +35 -0
  63. package/skills/wiki/SKILL.md +35 -0
  64. package/src/agents/analyst.md +103 -0
  65. package/src/agents/architect.md +169 -0
  66. package/src/agents/code-reviewer.md +135 -0
  67. package/src/agents/critic.md +196 -0
  68. package/src/agents/debugger.md +132 -0
  69. package/src/agents/designer.md +103 -0
  70. package/src/agents/document-specialist.md +111 -0
  71. package/src/agents/executor.md +120 -0
  72. package/src/agents/explorer.md +98 -0
  73. package/src/agents/git-master.md +92 -0
  74. package/src/agents/orchestrator.md +125 -0
  75. package/src/agents/planner.md +106 -0
  76. package/src/agents/qa-tester.md +129 -0
  77. package/src/agents/researcher.md +102 -0
  78. package/src/agents/reviewer.md +100 -0
  79. package/src/agents/scientist.md +150 -0
  80. package/src/agents/security-reviewer.md +132 -0
  81. package/src/agents/simplifier.md +109 -0
  82. package/src/agents/test-engineer.md +124 -0
  83. package/src/agents/tester.md +102 -0
  84. package/src/agents/tracer.md +160 -0
  85. package/src/agents/verifier.md +100 -0
  86. package/src/agents/writer.md +96 -0
package/README.ja.md ADDED
@@ -0,0 +1,53 @@
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)
2
+
3
+ # oh-my-githubcopilot
4
+ <p align="center">
5
+ <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
6
+ </p>
7
+
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)
11
+
12
+ **Oh-My-Copilot (OMP)** は、GitHub Copilot にモダンなワークフローオーケストレーションとエージェント型 AI 機能を追加するプラグインおよび拡張機能です。
13
+
14
+ <p align="center">
15
+ <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
16
+ </p>
17
+ ---
18
+
19
+ ## クイックスタート
20
+
21
+ ```bash
22
+ # インストール
23
+ npm install -g oh-my-githubcopilot
24
+
25
+ # 設定
26
+ omp setup
27
+ ```
28
+ <p align="center">
29
+ <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
30
+ </p>
31
+
32
+ ---
33
+
34
+ ## 機能
35
+
36
+ - **マルチエージェントオーケストレーション** - 様々なタスクに対応する18の specialized エージェント
37
+ - **MCP サーバー統合** - 外部サービスやツールへの接続
38
+ - **HUD ディスプレイ** - リアルタイムの状態とコンテキスト追跡
39
+ - **Plugin State Manager** - セッション間で信頼性の高い状態管理
40
+ - **30+ スキル** - 拡張機能のための遅延ロード
41
+
42
+ ---
43
+
44
+ ## ドキュメント
45
+
46
+ - [AGENTS.md](./AGENTS.md) - エージェント登録と委任ルール
47
+ - [spec/](./spec/) - コンポーネント仕様
48
+
49
+ ---
50
+
51
+ ## ライセンス
52
+
53
+ MIT
package/README.ko.md ADDED
@@ -0,0 +1,53 @@
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)
2
+
3
+ # oh-my-githubcopilot
4
+ <p align="center">
5
+ <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
6
+ </p>
7
+
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)
11
+
12
+ **Oh-My-Copilot (OMP)** 은 GitHub Copilot에 모던한 워크플로 오케스트레이션과 에이전트 AI 기능을 추가하는 플러그인 및 확장 기능입니다.
13
+
14
+ <p align="center">
15
+ <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
16
+ </p>
17
+ ---
18
+
19
+ ## 빠른 시작
20
+
21
+ ```bash
22
+ # 설치
23
+ npm install -g oh-my-githubcopilot
24
+
25
+ # 설정
26
+ omp setup
27
+ ```
28
+ <p align="center">
29
+ <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
30
+ </p>
31
+
32
+ ---
33
+
34
+ ## 기능
35
+
36
+ - **멀티 에이전트 오케스트레이션** - 다양한 작업을 위한 18개의 전문 에이전트
37
+ - **MCP 서버 통합** - 외부 서비스 및 도구 연결
38
+ - **HUD 디스플레이** - 실시간 상태 및 컨텍스트 추적
39
+ - **Plugin State Manager** - 세션 전반의 신뢰할 수 있는 상태 관리
40
+ - **30+ 스킬** - 확장 기능의 지연 로딩
41
+
42
+ ---
43
+
44
+ ## 문서
45
+
46
+ - [AGENTS.md](./AGENTS.md) - 에이전트 등록 및 위임 규칙
47
+ - [spec/](./spec/) - 컴포넌트 사양
48
+
49
+ ---
50
+
51
+ ## 라이선스
52
+
53
+ MIT
package/README.md ADDED
@@ -0,0 +1,139 @@
1
+ # oh-my-githubcopilot (OMP)
2
+
3
+ <p align="center">
4
+ <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
5
+ </p>
6
+
7
+ <p align="center">
8
+ Multi-agent orchestration for GitHub Copilot CLI — powered by 23 specialized agents, 25 skills, and a real-time HUD.
9
+ </p>
10
+
11
+ [![npm version](https://img.shields.io/npm/v/oh-my-githubcopilot?color=red)](https://npmjs.com/package/oh-my-githubcopilot)
12
+ [![npm downloads](https://img.shields.io/npm/dm/oh-my-githubcopilot?color=blue)](https://npmjs.com/package/oh-my-githubcopilot)
13
+ [![License: MIT](https://img.shields.io/npm/l/oh-my-githubcopilot?color=green)](LICENSE)
14
+ [![Sponsor](https://img.shields.io/static/v1?label=Sponsor&message=r3dlex&color=EA4949&logo=github-sponsors)](https://github.com/sponsors/r3dlex)
15
+
16
+ ---
17
+
18
+ ## Why OMP?
19
+
20
+ 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
+
22
+ | What you get | Why it matters |
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`, `plan` — trigger with a slash command |
26
+ | **6 hooks** | Keyword detection, delegation routing, model selection, token tracking, HUD emission, stop-continuation |
27
+ | **MCP server** | 10 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
+
32
+ <p align="center">
33
+ <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
34
+ </p>
35
+
36
+ ## Quick Start
37
+
38
+ ```bash
39
+ # Install
40
+ npm install -g oh-my-githubcopilot
41
+
42
+ # Initialize (creates ~/.omp/ config)
43
+ omp setup
44
+
45
+ # Start using OMP skills
46
+ /omp-setup
47
+ ```
48
+
49
+ <p align="center">
50
+ <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
51
+ </p>
52
+
53
+ ## Architecture
54
+
55
+ ```
56
+ ┌─────────────────────────────────────────────────────────┐
57
+ │ oh-my-githubcopilot │
58
+ ├─────────────────────────────────────────────────────────┤
59
+ │ Agents │ Hooks │ PSM (SQLite) │
60
+ │ ───────────── │ ────────── │ ────────────── │
61
+ │ executor │ keyword- │ Cross-session │
62
+ │ architect │ detector │ state persistence │
63
+ │ planner │ delegation- │ │
64
+ │ reviewer │ enforcer │ MCP Server │
65
+ │ debugger │ model-router │ ───────────── │
66
+ │ ... (23 total) │ token-tracker│ 10 tools exposed │
67
+ │ │ hud-emitter │ │
68
+ │ │ stop-contin. │ HUD Display │
69
+ ├─────────────────┴───────────────┴─────────────────────┤
70
+ │ ~/.omp/ (user) + .omp/ (workspace) configs │
71
+ └─────────────────────────────────────────────────────────┘
72
+ ```
73
+
74
+ ### Agents
75
+
76
+ OMP provides 23 specialized agents via Claude Code subagents:
77
+
78
+ | Agent | Tier | Use Case |
79
+ |-------|------|----------|
80
+ | executor | opus | Implementation, testing |
81
+ | architect | opus | Architecture, security |
82
+ | planner | sonnet | Strategic planning |
83
+ | document-specialist | sonnet | Documentation |
84
+ | reviewer | sonnet | Code review |
85
+ | verifier | sonnet | Verification |
86
+
87
+ _See [AGENTS.md](AGENTS.md) for the full registry._
88
+
89
+ ### Hooks
90
+
91
+ Six hooks power the orchestration pipeline:
92
+
93
+ - **keyword-detector** — triggers OMP skills on magic keywords
94
+ - **delegation-enforcer** — routes tasks to appropriate agents
95
+ - **model-router** — selects optimal model tier per task
96
+ - **token-tracker** — monitors usage and cost
97
+ - **hud-emitter** — streams session context to HUD
98
+ - **stop-continuation** — graceful cancellation handling
99
+
100
+ ### PSM (Plugin State Manager)
101
+
102
+ Cross-session persistence via SQLite:
103
+
104
+ ```javascript
105
+ // State persists across sessions
106
+ await state.write({ mode: 'autopilot', iteration: 3 });
107
+ const state = await state.read();
108
+ ```
109
+
110
+ ### MCP Server
111
+
112
+ 10 tools exposed for extended capabilities. See [spec/MCP.md](spec/MCP.md).
113
+
114
+ ## Documentation
115
+
116
+ - [AGENTS.md](AGENTS.md) — Agent registry and delegation rules
117
+ - [spec/AGENTS_SPEC.md](spec/AGENTS_SPEC.md) — Agent capabilities table
118
+ - [spec/SKILLS.md](spec/SKILLS.md) — Skill catalog
119
+ - [spec/HOOKS.md](spec/HOOKS.md) — Hook system
120
+ - [spec/HUD.md](spec/HUD.md) — HUD display
121
+ - [spec/PSM.md](spec/PSM.md) — Plugin State Manager
122
+ - [spec/MCP.md](spec/MCP.md) — MCP server
123
+
124
+ ## Requirements
125
+
126
+ - Node.js >= 22.0.0
127
+ - GitHub Copilot CLI
128
+
129
+ ---
130
+
131
+ ## 💛 Love this project? [Sponsor r3dlex](https://github.com/sponsors/r3dlex)
132
+
133
+ If OMP saves you time, consider sponsoring the maintainer:
134
+
135
+ [![Sponsor r3dlex](https://github.githubassets.com/assets/images/modules/sponsors/modules/SponsorButton--glyph-sm-b5211212fc9306694a295e37672660c1.gif)](https://github.com/sponsors/r3dlex)
136
+
137
+ Every sponsorship helps keep development going.
138
+
139
+ MIT License | [GitHub](https://github.com/r3dlex/oh-my-githubcopilot)
package/README.pt.md ADDED
@@ -0,0 +1,53 @@
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)
2
+
3
+ # oh-my-githubcopilot
4
+ <p align="center">
5
+ <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
6
+ </p>
7
+
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)
11
+
12
+ **Oh-My-Copilot (OMP)** e um plugin e extensao para GitHub Copilot que adiciona orquestracao moderna de workflows e capacidades de IA agentica sobre o Copilot.
13
+
14
+ ---
15
+
16
+ ## Inicio Rapido
17
+
18
+ ```bash
19
+ # Instalacao
20
+ npm install -g oh-my-githubcopilot
21
+
22
+ # Configuracao
23
+ omp setup
24
+ ```
25
+ <p align="center">
26
+ <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
27
+ </p>
28
+
29
+ <p align="center">
30
+ <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
31
+ </p>
32
+ ---
33
+
34
+ ## Funcionalidades
35
+
36
+ - **Orquestracao Multi-Agente** - 18 agentes especializados para diferentes tarefas
37
+ - **Integracao Servidor MCP** - Conexao com servicos e ferramentas externos
38
+ - **Display HUD** - Rastreamento de estado e contexto em tempo real
39
+ - **Plugin State Manager** - Estado confiavel entre sessoes
40
+ - **30+ Skills** - Carregamento lento para funcionalidade estendida
41
+
42
+ ---
43
+
44
+ ## Documentacao
45
+
46
+ - [AGENTS.md](./AGENTS.md) - Registro de agentes e regras de delegacao
47
+ - [spec/](./spec/) - Especificacoes de componentes
48
+
49
+ ---
50
+
51
+ ## Licenca
52
+
53
+ MIT
package/README.ru.md ADDED
@@ -0,0 +1,53 @@
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)
2
+
3
+ # oh-my-githubcopilot
4
+ <p align="center">
5
+ <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
6
+ </p>
7
+
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)
11
+
12
+ **Oh-My-Copilot (OMP)** - eto plugin i rasshirenie dlya GitHub Copilot, kotoroye dobavlyayet sovremennuyu orkestraciyu workflow i vozmozhnosti agentnogo II poverkh Copilot.
13
+
14
+ ---
15
+
16
+ ## Bystryy start
17
+
18
+ ```bash
19
+ # Ustanovka
20
+ npm install -g oh-my-githubcopilot
21
+
22
+ # Nastroyka
23
+ omp setup
24
+ ```
25
+ <p align="center">
26
+ <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
27
+ </p>
28
+
29
+ ---
30
+
31
+ ## Funkcii
32
+
33
+ - **Multi-Agent Orkestraciya** - 18 specializirovannykh agentov dlya razlichnykh zadach
34
+ - **Integraciya MCP Server** - Podklyuchenie k vneshnim servisam i instrumentam
35
+ - **HUD Display** - Otslezhivaniye sostoyaniya i konteksta v realnom vremeni
36
+ - **Plugin State Manager** - Nadezhnoe upravleniye sostoyaniyem mezhdu sessionami
37
+ - **30+ Skills** - Lenivaya zagruzka dlya rashirennykh vozmozhnostey
38
+
39
+ <p align="center">
40
+ <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
41
+ </p>
42
+ ---
43
+
44
+ ## Dokumentaciya
45
+
46
+ - [AGENTS.md](./AGENTS.md) - Registraciya agentov i pravila delegirovaniya
47
+ - [spec/](./spec/) - Specifikacii komponentov
48
+
49
+ ---
50
+
51
+ ## Licenziya
52
+
53
+ MIT
package/README.tr.md ADDED
@@ -0,0 +1,53 @@
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)
2
+
3
+ # oh-my-githubcopilot
4
+ <p align="center">
5
+ <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
6
+ </p>
7
+
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)
11
+
12
+ **Oh-My-Copilot (OMP)**, GitHub Copilot uzerine modern is akisi orkestrasyonu ve ajan yonlu yapay zeka yetenekleri ekleyen bir eklenti ve uzantidir.
13
+
14
+ ---
15
+
16
+ ## Hizli Baslangic
17
+
18
+ ```bash
19
+ # Kurulum
20
+ npm install -g oh-my-githubcopilot
21
+
22
+ # Yapilandirma
23
+ omp setup
24
+ ```
25
+ <p align="center">
26
+ <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
27
+ </p>
28
+
29
+ <p align="center">
30
+ <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
31
+ </p>
32
+ ---
33
+
34
+ ## Ozellikler
35
+
36
+ - **Coklu Ajan Orkestrasyonu** - Cesitli gorevler icin 18 uzmanlastirilmis ajan
37
+ - **MCP Sunucu Entegrasyonu** - Harici hizmetler ve araclara baglanti
38
+ - **HUD Ekrani** - Gercek zamanli durum ve baglam izleme
39
+ - **Plugin State Manager** - Oturumlar arasi guvenilir durum yonetimi
40
+ - **30+ Beceri** - Genisletilmis islevsellik icin tembel yukleme
41
+
42
+ ---
43
+
44
+ ## Dokumantasyon
45
+
46
+ - [AGENTS.md](./AGENTS.md) - Ajan kayit ve devretme kurallari
47
+ - [spec/](./spec/) - Bilesen belirtimleri
48
+
49
+ ---
50
+
51
+ ## Lisans
52
+
53
+ MIT
package/README.vi.md ADDED
@@ -0,0 +1,53 @@
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)
2
+
3
+ # oh-my-githubcopilot
4
+ <p align="center">
5
+ <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
6
+ </p>
7
+
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)
11
+
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.
13
+
14
+ <p align="center">
15
+ <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
16
+ </p>
17
+ ---
18
+
19
+ ## Khoi Dau Nhanh
20
+
21
+ ```bash
22
+ # Cai dat
23
+ npm install -g oh-my-githubcopilot
24
+
25
+ # Cau hinh
26
+ omp setup
27
+ ```
28
+ <p align="center">
29
+ <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
30
+ </p>
31
+
32
+ ---
33
+
34
+ ## Tinh Nang
35
+
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
41
+
42
+ ---
43
+
44
+ ## Tai Lieu
45
+
46
+ - [AGENTS.md](./AGENTS.md) - Dang ky tac nhan va quy tac uy nhiem
47
+ - [spec/](./spec/) - Chi tiet thanh phan
48
+
49
+ ---
50
+
51
+ ## Ban Quyen
52
+
53
+ MIT
package/README.zh.md ADDED
@@ -0,0 +1,53 @@
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)
2
+
3
+ # oh-my-githubcopilot
4
+ <p align="center">
5
+ <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
6
+ </p>
7
+
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)
11
+
12
+ **Oh-My-Copilot (OMP)** 是一个为 GitHub Copilot 添加现代工作流编排和代理型 AI 功能的插件和扩展。
13
+
14
+ <p align="center">
15
+ <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
16
+ </p>
17
+ ---
18
+
19
+ ## 快速开始
20
+
21
+ ```bash
22
+ # 安装
23
+ npm install -g oh-my-githubcopilot
24
+
25
+ # 配置
26
+ omp setup
27
+ ```
28
+ <p align="center">
29
+ <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
30
+ </p>
31
+
32
+ ---
33
+
34
+ ## 功能
35
+
36
+ - **多代理编排** - 18 个专业代理处理不同任务
37
+ - **MCP 服务器集成** - 连接外部服务和工具
38
+ - **HUD 显示** - 实时状态和上下文跟踪
39
+ - **Plugin State Manager** - 跨会话的可靠状态管理
40
+ - **30+ 技能** - 扩展功能的延迟加载
41
+
42
+ ---
43
+
44
+ ## 文档
45
+
46
+ - [AGENTS.md](./AGENTS.md) - 代理注册和委托规则
47
+ - [spec/](./spec/) - 组件规格
48
+
49
+ ---
50
+
51
+ ## 许可证
52
+
53
+ MIT
package/bin/omp.mjs ADDED
@@ -0,0 +1,59 @@
1
+ // src/index.mts
2
+ import { parseArgs } from "util";
3
+ var { positionals } = parseArgs({
4
+ args: process.argv.slice(2),
5
+ options: {
6
+ help: { type: "boolean", default: false },
7
+ version: { type: "boolean", default: false }
8
+ },
9
+ allowPositionals: true
10
+ });
11
+ var subcommand = positionals[0] || "hud";
12
+ async function main() {
13
+ switch (subcommand) {
14
+ case "hud":
15
+ await printHud();
16
+ break;
17
+ case "version":
18
+ console.log("oh-my-githubcopilot v1.0.0");
19
+ break;
20
+ case "psm":
21
+ await runPsm(positionals.slice(1));
22
+ break;
23
+ case "bench":
24
+ await runBench(positionals.slice(1));
25
+ break;
26
+ default:
27
+ console.error(`Unknown subcommand: ${subcommand}`);
28
+ console.error("Usage: omp [hud|version|psm|bench]");
29
+ process.exit(1);
30
+ }
31
+ }
32
+ async function printHud() {
33
+ try {
34
+ const { readFileSync } = await import("fs");
35
+ const { join } = await import("path");
36
+ const { homedir } = await import("os");
37
+ const hudPath = join(homedir(), ".omp", "hud.line");
38
+ const line = readFileSync(hudPath, "utf-8").trim();
39
+ console.log(line);
40
+ } catch {
41
+ console.log("OMP v1.0.0 | hud: no active session");
42
+ }
43
+ }
44
+ async function runPsm(_args) {
45
+ console.log("PSM commands:");
46
+ console.log(" /oh-my-githubcopilot:psm create <name> Create isolated worktree session");
47
+ console.log(" /oh-my-githubcopilot:psm list List active sessions");
48
+ console.log(" /oh-my-githubcopilot:psm switch <name> Switch to session");
49
+ console.log(" /oh-my-githubcopilot:psm destroy <name> Destroy session");
50
+ }
51
+ async function runBench(_args) {
52
+ console.log("SWE-bench requires Node.js subprocess with Python evaluation harness.");
53
+ console.log("Usage: /oh-my-githubcopilot:swe-bench --suite lite --compare baseline");
54
+ }
55
+ main().catch((err) => {
56
+ console.error(err);
57
+ process.exit(1);
58
+ });
59
+ //# sourceMappingURL=omp.mjs.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../src/index.mts"],
4
+ "sourcesContent": ["/**\n * omp CLI companion tool\n * Entry point: bin/omp.mjs\n *\n * Subcommands:\n * omp hud \u2014 print current HUD line\n * omp version \u2014 show OMP version\n * omp psm \u2014 shorthand for PSM commands\n * omp bench \u2014 run SWE-bench suite\n */\n\nimport { parseArgs } from \"util\";\n\nconst { positionals } = parseArgs({\n args: process.argv.slice(2),\n options: {\n help: { type: \"boolean\", default: false },\n version: { type: \"boolean\", default: false },\n },\n allowPositionals: true,\n});\n\nconst subcommand = positionals[0] || \"hud\";\n\nasync function main() {\n switch (subcommand) {\n case \"hud\":\n await printHud();\n break;\n case \"version\":\n console.log(\"oh-my-githubcopilot v1.0.0\");\n break;\n case \"psm\":\n await runPsm(positionals.slice(1));\n break;\n case \"bench\":\n await runBench(positionals.slice(1));\n break;\n default:\n console.error(`Unknown subcommand: ${subcommand}`);\n console.error(\"Usage: omp [hud|version|psm|bench]\");\n process.exit(1);\n }\n}\n\nasync function printHud() {\n try {\n const { readFileSync } = await import(\"fs\");\n const { join } = await import(\"path\");\n const { homedir } = await import(\"os\");\n const hudPath = join(homedir(), \".omp\", \"hud.line\");\n const line = readFileSync(hudPath, \"utf-8\").trim();\n console.log(line);\n } catch {\n console.log(\"OMP v1.0.0 | hud: no active session\");\n }\n}\n\nasync function runPsm(_args: string[]) {\n // Delegate to PSM skill \u2014 just print guidance\n console.log(\"PSM commands:\");\n console.log(\" /oh-my-githubcopilot:psm create <name> Create isolated worktree session\");\n console.log(\" /oh-my-githubcopilot:psm list List active sessions\");\n console.log(\" /oh-my-githubcopilot:psm switch <name> Switch to session\");\n console.log(\" /oh-my-githubcopilot:psm destroy <name> Destroy session\");\n}\n\nasync function runBench(_args: string[]) {\n console.log(\"SWE-bench requires Node.js subprocess with Python evaluation harness.\");\n console.log(\"Usage: /oh-my-githubcopilot:swe-bench --suite lite --compare baseline\");\n}\n\nmain().catch((err) => {\n console.error(err);\n process.exit(1);\n});\n"],
5
+ "mappings": ";AAWA,SAAS,iBAAiB;AAE1B,IAAM,EAAE,YAAY,IAAI,UAAU;AAAA,EAChC,MAAM,QAAQ,KAAK,MAAM,CAAC;AAAA,EAC1B,SAAS;AAAA,IACP,MAAM,EAAE,MAAM,WAAW,SAAS,MAAM;AAAA,IACxC,SAAS,EAAE,MAAM,WAAW,SAAS,MAAM;AAAA,EAC7C;AAAA,EACA,kBAAkB;AACpB,CAAC;AAED,IAAM,aAAa,YAAY,CAAC,KAAK;AAErC,eAAe,OAAO;AACpB,UAAQ,YAAY;AAAA,IAClB,KAAK;AACH,YAAM,SAAS;AACf;AAAA,IACF,KAAK;AACH,cAAQ,IAAI,4BAA4B;AACxC;AAAA,IACF,KAAK;AACH,YAAM,OAAO,YAAY,MAAM,CAAC,CAAC;AACjC;AAAA,IACF,KAAK;AACH,YAAM,SAAS,YAAY,MAAM,CAAC,CAAC;AACnC;AAAA,IACF;AACE,cAAQ,MAAM,uBAAuB,UAAU,EAAE;AACjD,cAAQ,MAAM,oCAAoC;AAClD,cAAQ,KAAK,CAAC;AAAA,EAClB;AACF;AAEA,eAAe,WAAW;AACxB,MAAI;AACF,UAAM,EAAE,aAAa,IAAI,MAAM,OAAO,IAAI;AAC1C,UAAM,EAAE,KAAK,IAAI,MAAM,OAAO,MAAM;AACpC,UAAM,EAAE,QAAQ,IAAI,MAAM,OAAO,IAAI;AACrC,UAAM,UAAU,KAAK,QAAQ,GAAG,QAAQ,UAAU;AAClD,UAAM,OAAO,aAAa,SAAS,OAAO,EAAE,KAAK;AACjD,YAAQ,IAAI,IAAI;AAAA,EAClB,QAAQ;AACN,YAAQ,IAAI,qCAAqC;AAAA,EACnD;AACF;AAEA,eAAe,OAAO,OAAiB;AAErC,UAAQ,IAAI,eAAe;AAC3B,UAAQ,IAAI,6EAA6E;AACzF,UAAQ,IAAI,gEAAgE;AAC5E,UAAQ,IAAI,6DAA6D;AACzE,UAAQ,IAAI,2DAA2D;AACzE;AAEA,eAAe,SAAS,OAAiB;AACvC,UAAQ,IAAI,uEAAuE;AACnF,UAAQ,IAAI,uEAAuE;AACrF;AAEA,KAAK,EAAE,MAAM,CAAC,QAAQ;AACpB,UAAQ,MAAM,GAAG;AACjB,UAAQ,KAAK,CAAC;AAChB,CAAC;",
6
+ "names": []
7
+ }