oh-my-githubcopilot 1.4.0 → 1.5.7
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 +11 -3
- package/.mcp.json +17 -0
- package/CHANGELOG.md +132 -1
- package/README.md +162 -82
- 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 +309 -15
- 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 +83 -21
- 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 +57 -41
- 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 +7 -3
- package/plugin.json +49 -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/ecomode/SKILL.md +6 -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/learner/SKILL.md +6 -0
- package/skills/mcp-setup/SKILL.md +6 -0
- package/skills/note/SKILL.md +6 -0
- package/skills/omp-plan/SKILL.md +6 -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/release/SKILL.md +6 -0
- package/skills/setup/SKILL.md +6 -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/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
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"schemaVersion": "1.0",
|
|
2
3
|
"name": "oh-my-githubcopilot",
|
|
4
|
+
"version": "1.5.7",
|
|
3
5
|
"description": "Multi-agent orchestration for GitHub Copilot CLI. 23 agents, 25 skills, parallel execution, HUD, PSM, SWE-bench.",
|
|
4
|
-
"version": "1.4.0",
|
|
5
6
|
"author": {
|
|
6
7
|
"name": "r3dlex"
|
|
7
8
|
},
|
|
8
9
|
"repository": "https://github.com/r3dlex/oh-my-githubcopilot",
|
|
9
10
|
"license": "Apache-2.0",
|
|
10
|
-
"keywords": [
|
|
11
|
-
|
|
11
|
+
"keywords": [
|
|
12
|
+
"orchestration",
|
|
13
|
+
"multi-agent",
|
|
14
|
+
"autopilot",
|
|
15
|
+
"swe-bench",
|
|
16
|
+
"hud",
|
|
17
|
+
"copilot-cli"
|
|
18
|
+
],
|
|
19
|
+
"agents": ["./agents"],
|
|
12
20
|
"skills": [
|
|
13
21
|
"./skills/autopilot",
|
|
14
22
|
"./skills/ralph",
|
package/.mcp.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "1.0",
|
|
3
|
+
"mcpServers": {
|
|
4
|
+
"oh-my-githubcopilot": {
|
|
5
|
+
"type": "stdio",
|
|
6
|
+
"command": "node",
|
|
7
|
+
"args": ["./dist/mcp/server.mjs"],
|
|
8
|
+
"env": {
|
|
9
|
+
"OMP_STATE_DB": "~/.omp/state/omp.db",
|
|
10
|
+
"OMP_FLEET_DB": "~/.omp/fleet/fleet.db",
|
|
11
|
+
"OMP_LOG_LEVEL": "info",
|
|
12
|
+
"OMP_COPILOT_REQUIRED_EXPERIMENTAL_FEATURES": "STATUS_LINE,SHOW_FILE,EXTENSIONS,BACKGROUND_SESSIONS,CONFIGURE_COPILOT_AGENT,MULTI_TURN_AGENTS,SESSION_STORE",
|
|
13
|
+
"OMP_COPILOT_STATUS_LINE_COMMAND": "./bin/omp-statusline.sh"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,139 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
All notable changes to **oh-my-githubcopilot** are documented here, ordered newest first.
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## [v1.5.7] — Release readiness refresh
|
|
8
|
+
|
|
9
|
+
### Release readiness
|
|
10
|
+
|
|
11
|
+
- **Version manifests advanced** — `package.json`, `package-lock.json`, `plugin.json`, `.github/plugin/plugin.json`, `.github/plugin/marketplace.json`, and `.claude-plugin/plugin.json` now all target `1.5.7` for the next publishable release.
|
|
12
|
+
- **Release docs aligned** — README, RELEASING, and build/release notes stay aligned with the current release workflow: bracketed changelog headings, root `plugin.json` → `.claude-plugin/plugin.json` sync, and coverage as a required release verification step.
|
|
13
|
+
|
|
14
|
+
### Verification
|
|
15
|
+
|
|
16
|
+
- **UltraQA release gate** — fresh verification on the release candidate remains green: `npm run build`, `npm run typecheck`, `npm test`, and `npm run test:coverage` all pass, with coverage still above the required floor (statements `89.35%`, branches `80.65%`, functions `93.65%`, lines `89.35%`).
|
|
17
|
+
|
|
18
|
+
## [v1.5.6] — HUD watch daemon and model/budget fixes
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
- **HUD background watch daemon** — `omp hud --watch` (or `npm run hud:watch`) launches a daemon that polls session state every 2 seconds (configurable via `OMP_HUD_INTERVAL`), shows a real-time elapsed timer, and refreshes all three HUD artifacts on every cycle. SIGINT and SIGTERM are handled gracefully.
|
|
23
|
+
|
|
24
|
+
### Fixes
|
|
25
|
+
|
|
26
|
+
- **HUD model fallback** — corrected default model fallback from `claude-sonnet-4.5` to `claude-sonnet-4.6`.
|
|
27
|
+
- **HUD token budget** — token budget is now resolved per-model from the `MODEL_CONTEXTS` map instead of using a fixed constant.
|
|
28
|
+
- **HUD premium requests total** — total premium request count is now configurable via the `OMP_PREMIUM_REQUESTS_TOTAL` environment variable.
|
|
29
|
+
- **HUD skills total** — `skillsTotal` corrected from 21 to 25, matching the actual number of shipped skills.
|
|
30
|
+
- **Model router advisory** — updated the model-router advisory string to reference `claude-sonnet-4.6`.
|
|
31
|
+
- **CLI coverage harness** — the `src/index.mts` test suite now executes the real `hud`, `hud --watch`, `version`, `psm`, `bench`, and unknown-subcommand flows so release coverage thresholds are protected by behavior-level assertions instead of placeholder checks.
|
|
32
|
+
|
|
33
|
+
### Documentation
|
|
34
|
+
|
|
35
|
+
- **Release docs aligned with current repo state** — README, release instructions, and build notes now agree on the bracketed changelog heading format, the root `plugin.json` → `.claude-plugin/plugin.json` sync step, and the need to run coverage as part of release verification.
|
|
36
|
+
|
|
37
|
+
### Verification
|
|
38
|
+
|
|
39
|
+
- **Fresh coverage evidence** — `npm run test:coverage` now reports `89.35%` statements, `80.65%` branches, `93.65%` functions, and `89.35%` lines.
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## [v1.5.5] — Copilot docs move and release refresh
|
|
44
|
+
|
|
45
|
+
### Documentation
|
|
46
|
+
|
|
47
|
+
- **Copilot docs moved to `.copilot/`** — relocated Copilot-facing instructions, agent docs, skill docs, and plugin skill docs out of `.github/` so `.copilot/` is now the single home for Copilot-specific documentation.
|
|
48
|
+
- **Adoption flow updated** — `scripts/omp-adopt.sh` now installs Copilot docs under `.copilot/` while leaving `.github/` focused on workflows, plugin metadata, and hook entrypoints.
|
|
49
|
+
|
|
50
|
+
### Release readiness
|
|
51
|
+
|
|
52
|
+
- **Next release metadata advanced** — package, plugin, marketplace, and Claude plugin manifests move to `1.5.5` so the post-STATUS_LINE and post-doc-relocation state is ready for the next release cut.
|
|
53
|
+
- **Release notes refreshed** — changelog and release docs now reflect the `.copilot/` doc boundary and the new release target.
|
|
54
|
+
- **GitHub CI stability** — switched Vitest from `vmThreads` to `forks` single-process execution to avoid the segmentation faults seen in GitHub Actions on the `1.5.5` prep branch while preserving the same local coverage thresholds.
|
|
55
|
+
|
|
56
|
+
## [v1.5.4] — Experimental Copilot setup and STATUS_LINE integration
|
|
57
|
+
|
|
58
|
+
### Features
|
|
59
|
+
|
|
60
|
+
- **Experimental Copilot defaults in setup** — `omp setup` now merges the required Copilot experimental feature flags into `~/.copilot/config.json`, preserves existing flags and custom status-line commands, and writes the packaged OMP status-line command when needed.
|
|
61
|
+
- **Packaged STATUS_LINE support** — added a dedicated `src/hud/statusline.mts` entrypoint plus `bin/omp-statusline.sh` wrapper so Copilot CLI can render OMP session state directly from the installed plugin.
|
|
62
|
+
- **HUD artifact export for status line rendering** — `hud-emitter` now writes the minimal status-line artifacts needed by the STATUS_LINE command in addition to the legacy HUD line output.
|
|
63
|
+
|
|
64
|
+
### Fixes
|
|
65
|
+
|
|
66
|
+
- **Setup verification harness** — added direct temp-HOME setup tests so Copilot config merging is exercised without depending on the limited top-level `omp` CLI subcommand surface.
|
|
67
|
+
- **STATUS_LINE verification harness** — updated HUD/statusline tests so temp-HOME artifact paths are asserted correctly and lint-cleanly under the new status-line flow.
|
|
68
|
+
|
|
69
|
+
### Verification
|
|
70
|
+
|
|
71
|
+
- **Coverage remains above release floor** — fresh coverage evidence remains above the required 80% thresholds: statements `88.26%`, branches `83.98%`, functions `92.4%`.
|
|
72
|
+
- **Focused addendum verification** — setup and status-line focused suites, typecheck, lint, build, and wrapper smoke all pass on the merged leader tree, with the remaining skipped integration setup test called out as pre-existing infrastructure debt rather than an addendum regression.
|
|
73
|
+
|
|
74
|
+
## [v1.5.3] — Release readiness and CI enforcement
|
|
75
|
+
|
|
76
|
+
### Fixes
|
|
77
|
+
|
|
78
|
+
- **Version bump for the next publishable release** — advanced package, plugin, marketplace, and Claude plugin manifests to `1.5.3`, which clears the existing `v1.5.1` / `v1.5.2` tag history and avoids the next release colliding with already-used versions.
|
|
79
|
+
- **Real CI test failures** — removed the `|| true` bypasses from the main CI test and coverage jobs so GitHub Actions now fails when tests or coverage regress.
|
|
80
|
+
- **Claude plugin manifest sync** — normalized `.claude-plugin/plugin.json` to a single version field by re-syncing it from the root `plugin.json`.
|
|
81
|
+
|
|
82
|
+
### Verification
|
|
83
|
+
|
|
84
|
+
- **Fresh coverage evidence** — `npm run test:coverage` now reports `88.26%` statements, `83.96%` branches, and `92.4%` functions, satisfying the repo's `80%` thresholds.
|
|
85
|
+
- **Fresh local CI parity run** — `npm run typecheck`, `npm run lint`, `npm test`, `npm run build`, `npx archgate check`, and `npm pack --dry-run` all pass on the release candidate branch.
|
|
86
|
+
|
|
87
|
+
### Documentation
|
|
88
|
+
|
|
89
|
+
- **Release process clarified** — `RELEASING.md` now calls out syncing all plugin manifests plus marketplace metadata and choosing the next unreleased semver before tagging.
|
|
90
|
+
|
|
91
|
+
## [v1.5.0] — Copilot CLI release alignment
|
|
92
|
+
|
|
93
|
+
### Features
|
|
94
|
+
|
|
95
|
+
- **Copilot-ready agent metadata** — normalized `src/agents/*.md` frontmatter for Copilot-compatible agent loading fields while preserving the existing prompt bodies.
|
|
96
|
+
- **Copilot instructions refresh** — rewrote the Copilot instructions with an OMP overview, delegation guidance, agent catalog, skill catalog, HUD reference, and keyword quick reference, now carried under the Copilot-facing docs set instead of `.github/` docs.
|
|
97
|
+
- **README quick start refresh** — replaced the install flow with `copilot plugin install ...`, `/omp:setup`, and first-run Copilot commands.
|
|
98
|
+
|
|
99
|
+
### Fixes
|
|
100
|
+
|
|
101
|
+
- **Version sync to `1.5.0`** — aligned `package.json`, `package-lock.json`, root/plugin manifests, and marketplace metadata on the release target.
|
|
102
|
+
- **Plugin manifest agent path** — `.github/plugin/plugin.json` now points at `./agents` so the manifest matches the Copilot-facing agent bundle.
|
|
103
|
+
- **Release notes alignment** — consolidated the current Copilot CLI packaging/runtime fixes under the `v1.5.0` release line for a single consumer-facing release target.
|
|
104
|
+
|
|
105
|
+
### Documentation
|
|
106
|
+
|
|
107
|
+
- **Release expectations clarified** — release docs now call out the committed `dist/` expectation for plugin consumers.
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## [v1.4.2] — Dynamic version in HUD emitter
|
|
112
|
+
|
|
113
|
+
### Fixes
|
|
114
|
+
|
|
115
|
+
- **HUD version** — `hud-emitter` hook no longer hardcodes `"1.0.0"` as the session state version; reads from `package.json` via `createRequire` so `omp hud` always displays the installed package version
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## [v1.4.1] — CLI shebang fix, dynamic version
|
|
120
|
+
|
|
121
|
+
### Fixes
|
|
122
|
+
|
|
123
|
+
- **CLI shebang** — `bin/omp.mjs` now includes `#!/usr/bin/env node` banner (via esbuild `banner` option); the binary is executable directly without explicit `node` invocation (`550b764`)
|
|
124
|
+
- **Dynamic version** — `omp version` now reads name and version from `package.json` at runtime via `createRequire`; no more hardcoded version string in source (`550b764`)
|
|
5
125
|
|
|
6
126
|
---
|
|
7
127
|
|
|
8
128
|
## [v1.4.0] — Package renamed to oh-my-githubcopilot
|
|
9
129
|
|
|
10
130
|
### Breaking Changes
|
|
131
|
+
|
|
11
132
|
- **Package renamed** — npm package renamed from `oh-my-copilot` to `oh-my-githubcopilot`; GitHub Packages now publishes as `@r3dlex/oh-my-githubcopilot`; install with `npm install oh-my-githubcopilot`
|
|
12
133
|
- **Repository moved** — git remote updated to `git@github.com:r3dlex/oh-my-githubcopilot.git`
|
|
13
134
|
|
|
14
135
|
### Changes
|
|
136
|
+
|
|
15
137
|
- All source files, tests, specs, docs, and manifests updated to reflect the new package name
|
|
16
138
|
- MCP server identity updated to `oh-my-githubcopilot`
|
|
17
139
|
- All 11 localized READMEs, archgate ADRs, and release docs updated
|
|
@@ -24,16 +146,19 @@ Each section corresponds to commits between conceptual version boundaries (no gi
|
|
|
24
146
|
Commits: `fd366e6`…`a26f673`
|
|
25
147
|
|
|
26
148
|
### Features
|
|
149
|
+
|
|
27
150
|
- **Continuous alpha releases** — every push to `main` publishes `X.Y.Z-alpha.<sha>` to the `alpha` dist-tag; tagged commits (`vX.Y.Z`) publish stable to `latest` (`ec8fffa`)
|
|
28
151
|
- **Hybrid dual-registry publish** — publishes to GitHub Packages (`@r3dlex/oh-my-githubcopilot`) always via `GITHUB_TOKEN`; publishes to npmjs.com (`oh-my-githubcopilot`) when `NPM_TOKEN` secret is configured; graceful skip with notice if absent (`ee42604`)
|
|
29
152
|
- **npm release CI pipeline** — `release.yml` with four jobs: `build` (version resolution + artifact), `test` (CHANGELOG gate for stable only), `publish` (dual-registry), `github-release` (stable only, attaches `.tgz`) (`5a3ae67`)
|
|
30
153
|
|
|
31
154
|
### Fixes
|
|
155
|
+
|
|
32
156
|
- **Workflow parse error** — replaced `secrets.NPM_TOKEN != ''` in step `if:` conditions with a dedicated check step outputting `available=true/false` (`e82e807`)
|
|
33
157
|
- **Version-agnostic plugin test assertions** — `plugin-install.test.mts` now reads version from `packageJson().version`; `marketplace.json` metadata.version synced (`7f99f14`)
|
|
34
158
|
- **Stale agent/skill counts** — JSON descriptors and e2e tests corrected to 23 agents / 25 skills (`74c5122`)
|
|
35
159
|
|
|
36
160
|
### Documentation
|
|
161
|
+
|
|
37
162
|
- **CHANGELOG rewritten** — entries now derived from actual git log commit ranges per version (`a26f673`)
|
|
38
163
|
- **Agent and skill docs normalized** — all 23 agent descriptors and 25 skill `SKILL.md` files updated to consistent format (`fd366e6`)
|
|
39
164
|
|
|
@@ -44,6 +169,7 @@ Commits: `fd366e6`…`a26f673`
|
|
|
44
169
|
Commits: `a234799`, `feb5e65` (PR #10)
|
|
45
170
|
|
|
46
171
|
### Features
|
|
172
|
+
|
|
47
173
|
- **GraphProvider abstraction** — new `src/graph/` module with `GraphBuildable` and `GraphWikiClient` interfaces; provider resolved from `.omp/config.json` `graph.provider` with local > global > default (`graphwiki`) resolution
|
|
48
174
|
- **GraphifyAdapter** — extracted graphify CLI wrapper from `src/skills/graphify.mts` into `src/graph/graphify-adapter.mts`; graphify skill now delegates to the adapter (public API unchanged)
|
|
49
175
|
- **GraphwikiAdapter** — new `src/graph/graphwiki-adapter.mts` wrapping the `graphwiki` npm CLI (`npm install -g graphwiki`); implements both `GraphBuildable` and `GraphWikiClient`
|
|
@@ -53,6 +179,7 @@ Commits: `a234799`, `feb5e65` (PR #10)
|
|
|
53
179
|
- **keyword-detector wiring** — 8 new keyword entries: `graphify:`, `graphwiki:`, `graph:`, `spending:`, `/graphify`, `/graphwiki`, `/graph-provider`, `/spending`
|
|
54
180
|
|
|
55
181
|
### Fixes
|
|
182
|
+
|
|
56
183
|
- **plugin.json** — removed non-existent `./agents` path from agents array; added `graphify`, `graphwiki`, `graph-provider`, `spending` to skills list (25 skills total)
|
|
57
184
|
- **gitignore** — untracked `coverage/.tmp`, `.omc/` state files, `devops.md` (`a234799`)
|
|
58
185
|
|
|
@@ -63,10 +190,12 @@ Commits: `a234799`, `feb5e65` (PR #10)
|
|
|
63
190
|
Commits: `ce6f3bd`…`051ac20` (PR #9)
|
|
64
191
|
|
|
65
192
|
### Features
|
|
193
|
+
|
|
66
194
|
- **HUD format: `tools:N` → `tools:N/M`** — all count fields (tools, skills, agents) now display as used/total (e.g., `tools:12/13`, `skills:5/25`, `agents:3/23`); added `toolsTotal`, `skillsTotal`, `agentsTotal` fields to `HudState` and `HudMetrics`
|
|
67
195
|
- **CLI elicitation support** — expanded OMP setup wizard to handle interactive CLI prompts during MCP config generation
|
|
68
196
|
|
|
69
197
|
### Fixes
|
|
198
|
+
|
|
70
199
|
- **CI: zero-install artifact pattern** — build artifact uploaded once in `build` job and downloaded in `test`/`publish` jobs; eliminates redundant `npm install` across CI jobs (`d46f647`)
|
|
71
200
|
- **CI: vitest hanging** — added `< /dev/null` stdin redirect and `timeout 120` to prevent vitest blocking indefinitely in non-TTY environments (`fa9fdfb`)
|
|
72
201
|
- **CI: vitest `--forceExit`** — added flag to ensure process exits after tests complete in CI (`c88c2c7`)
|
|
@@ -83,6 +212,7 @@ Commits: `804fc37`…`0f96d48` (initial implementation + `6ee243f` rename)
|
|
|
83
212
|
Initial release of **oh-my-githubcopilot (OMP)** — a multi-agent orchestration plugin for GitHub Copilot CLI.
|
|
84
213
|
|
|
85
214
|
### Features
|
|
215
|
+
|
|
86
216
|
- **23 specialized agents** via Claude Code subagents: orchestrator, explorer, planner, executor, verifier, writer, reviewer, designer, researcher, tester, debugger, architect, security-reviewer, simplifier, test-engineer, critic, tracer, scientist, code-reviewer, document-specialist, qa-tester, git-master, analyst
|
|
87
217
|
- **22 skills** including: `setup`, `mcp-setup`, `autopilot`, `ralph`, `ultrawork`, `team`, `ecomode`, `swarm`, `pipeline`, `plan`, `omp-plan`, `hud`, `note`, `trace`, `learner`, `swe-bench`, `wiki`, `psm`, `release`, `graphify`, `spending`, `spawn`
|
|
88
218
|
- **6 hooks**: `keyword-detector`, `delegation-enforcer`, `model-router`, `token-tracker`, `hud-emitter`, `stop-continuation`
|
|
@@ -96,6 +226,7 @@ Initial release of **oh-my-githubcopilot (OMP)** — a multi-agent orchestration
|
|
|
96
226
|
- **OMP rename** — project renamed from `oh-my-claudecode (OMC)` to `oh-my-githubcopilot (OMP)` targeting GitHub Copilot CLI (`6ee243f`)
|
|
97
227
|
|
|
98
228
|
### Documentation
|
|
229
|
+
|
|
99
230
|
- `AGENTS.md` — agent registry and delegation rules
|
|
100
231
|
- `CLAUDE.md` — project instructions and quick reference
|
|
101
232
|
- `SECURITY.md` — vulnerability reporting policy
|
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
[](https://npmjs.com/package/oh-my-githubcopilot)
|
|
12
12
|
[](https://npmjs.com/package/oh-my-githubcopilot)
|
|
13
|
-
[](LICENSE)
|
|
14
14
|
[](https://github.com/sponsors/r3dlex)
|
|
15
15
|
|
|
16
16
|
---
|
|
@@ -19,15 +19,16 @@
|
|
|
19
19
|
|
|
20
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
21
|
|
|
22
|
-
| What you get
|
|
23
|
-
|
|
24
|
-
| **23 agents**
|
|
25
|
-
| **25 skills**
|
|
26
|
-
| **6 hooks**
|
|
27
|
-
| **MCP server**
|
|
28
|
-
| **HUD display**
|
|
29
|
-
| **PSM**
|
|
30
|
-
| **SWE-bench**
|
|
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`, `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 |
|
|
31
32
|
|
|
32
33
|
<p align="center">
|
|
33
34
|
<img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
|
|
@@ -35,105 +36,184 @@ Every software team juggles implementation, architecture, security review, testi
|
|
|
35
36
|
|
|
36
37
|
## Quick Start
|
|
37
38
|
|
|
38
|
-
|
|
39
|
-
# Install
|
|
40
|
-
npm install -g oh-my-githubcopilot
|
|
39
|
+
### 1) Install the plugin
|
|
41
40
|
|
|
42
|
-
|
|
43
|
-
omp setup
|
|
41
|
+
From a local checkout:
|
|
44
42
|
|
|
45
|
-
|
|
46
|
-
/
|
|
43
|
+
```bash
|
|
44
|
+
git clone https://github.com/r3dlex/oh-my-githubcopilot.git
|
|
45
|
+
cd oh-my-githubcopilot
|
|
46
|
+
copilot plugin install ./
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
<img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
|
|
51
|
-
</p>
|
|
52
|
-
|
|
53
|
-
## Architecture
|
|
49
|
+
Or install from GitHub directly:
|
|
54
50
|
|
|
51
|
+
```bash
|
|
52
|
+
copilot plugin install r3dlex/oh-my-githubcopilot
|
|
55
53
|
```
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
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
|
-
└─────────────────────────────────────────────────────────┘
|
|
54
|
+
|
|
55
|
+
### 2) Run first-time setup in Copilot
|
|
56
|
+
|
|
57
|
+
```text
|
|
58
|
+
/skills list
|
|
59
|
+
/setup
|
|
60
|
+
/mcp show
|
|
72
61
|
```
|
|
73
62
|
|
|
74
|
-
|
|
63
|
+
`/setup` is the short setup alias, and `/omp:setup` remains available. Both safely merge the required Copilot CLI experimental features into
|
|
64
|
+
`~/.copilot/config.json` and fill in `statusLine` if you have not already configured one.
|
|
65
|
+
After setup completes, restart the Copilot CLI session so the new experimental/status-line settings are picked up.
|
|
75
66
|
|
|
76
|
-
|
|
67
|
+
Required feature flags ensured by setup:
|
|
77
68
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
| verifier | sonnet | Verification |
|
|
69
|
+
- `STATUS_LINE`
|
|
70
|
+
- `SHOW_FILE`
|
|
71
|
+
- `EXTENSIONS`
|
|
72
|
+
- `BACKGROUND_SESSIONS`
|
|
73
|
+
- `CONFIGURE_COPILOT_AGENT`
|
|
74
|
+
- `MULTI_TURN_AGENTS`
|
|
75
|
+
- `SESSION_STORE`
|
|
86
76
|
|
|
87
|
-
|
|
77
|
+
### 3) Start delegating work
|
|
88
78
|
|
|
89
|
-
|
|
79
|
+
```text
|
|
80
|
+
@executor implement the requested change
|
|
81
|
+
@planner break this task into steps
|
|
82
|
+
@verifier check build, tests, and diagnostics
|
|
83
|
+
```
|
|
90
84
|
|
|
91
|
-
|
|
85
|
+
### Optional: install the CLI companion
|
|
92
86
|
|
|
93
|
-
|
|
94
|
-
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
87
|
+
```bash
|
|
88
|
+
npm install -g oh-my-githubcopilot
|
|
89
|
+
omp setup
|
|
90
|
+
omp version
|
|
91
|
+
omp hud
|
|
92
|
+
omp hud --watch
|
|
93
|
+
```
|
|
99
94
|
|
|
100
|
-
|
|
95
|
+
The `omp` CLI is a companion tool for local runtime features; the Copilot plugin works without it.
|
|
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.
|
|
101
98
|
|
|
102
|
-
|
|
99
|
+
### Optional: adopt OMP into another repository
|
|
103
100
|
|
|
104
|
-
```
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
const state = await state.read();
|
|
101
|
+
```bash
|
|
102
|
+
git clone https://github.com/r3dlex/oh-my-githubcopilot.git /tmp/omp
|
|
103
|
+
/tmp/omp/scripts/omp-adopt.sh --target . --mode template
|
|
108
104
|
```
|
|
109
105
|
|
|
110
|
-
|
|
106
|
+
<p align="center">
|
|
107
|
+
<img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
|
|
108
|
+
</p>
|
|
111
109
|
|
|
112
|
-
|
|
110
|
+
## Architecture
|
|
113
111
|
|
|
114
|
-
|
|
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
|
+
```
|
|
115
133
|
|
|
116
|
-
|
|
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
|
|
134
|
+
### Agents
|
|
123
135
|
|
|
124
|
-
|
|
136
|
+
OMP provides 23 specialized agents, each with Copilot-compatible frontmatter for native discovery:
|
|
137
|
+
|
|
138
|
+
| Agent | Model tier | Use case |
|
|
139
|
+
| ----------------- | ---------- | --------------------------------------------------------------------- |
|
|
140
|
+
| executor | standard | Implementation, file edits, testing |
|
|
141
|
+
| architect | high | Architecture decisions and verification |
|
|
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
|
|
125
171
|
|
|
126
|
-
|
|
127
|
-
|
|
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
|
+
```
|
|
128
193
|
|
|
129
|
-
|
|
194
|
+
## Verification
|
|
130
195
|
|
|
131
|
-
|
|
196
|
+
Before release or plugin publication, verify at least:
|
|
197
|
+
|
|
198
|
+
```bash
|
|
199
|
+
npm run build
|
|
200
|
+
npm run typecheck
|
|
201
|
+
npm run test:coverage
|
|
202
|
+
npm test
|
|
203
|
+
```
|
|
132
204
|
|
|
133
|
-
|
|
205
|
+
For plugin smoke checks, reinstall and verify the runtime surfaces:
|
|
134
206
|
|
|
135
|
-
|
|
207
|
+
```bash
|
|
208
|
+
copilot plugin uninstall oh-my-githubcopilot
|
|
209
|
+
copilot plugin install ./
|
|
210
|
+
```
|
|
136
211
|
|
|
137
|
-
|
|
212
|
+
Then check:
|
|
138
213
|
|
|
139
|
-
|
|
214
|
+
```text
|
|
215
|
+
/skills list
|
|
216
|
+
/setup
|
|
217
|
+
@executor
|
|
218
|
+
/mcp show
|
|
219
|
+
```
|
|
@@ -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
|