oh-my-githubcopilot 2.0.0-alpha.1cd01f4 → 2.0.0-alpha.7-alpha.73be789

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": "1.0",
3
3
  "name": "oh-my-githubcopilot",
4
- "version": "2.0.0",
4
+ "version": "2.0.0-alpha.7",
5
5
  "description": "Multi-agent orchestration for GitHub Copilot CLI. 19 agents, 59 skills, parallel execution, HUD, PSM, SWE-bench.",
6
6
  "author": {
7
7
  "name": "r3dlex"
package/CHANGELOG.md CHANGED
@@ -1,54 +1,341 @@
1
+ ## oh-my-githubcopilot v1.8.1 — 2026-05-25
2
+
3
+ ### Fixes
4
+
5
+ - **Node.js v26 native addon compatibility** — upgraded `better-sqlite3` from `^11.0.0` to `^12.10.0` to resolve
6
+ V8 API removals (`GetPrototype`, `GetIsolate`, `PropertyCallbackInfo::This`) that broke `npm install -g oh-my-githubcopilot`
7
+ on Node.js v26 (all macOS, Linux, and Windows with V8 >= 12.0)
8
+
9
+ ### Changed
10
+
11
+ - **Dependencies**: `better-sqlite3` ^11.0.0 → ^12.10.0, `@types/better-sqlite3` ^7.0.0 → ^7.6.13
12
+
13
+ ---
14
+
1
15
  # Changelog
2
16
 
3
- All notable changes to oh-my-githubcopilot are documented here.
17
+ All notable changes to **oh-my-githubcopilot** are documented here, ordered newest first.
18
+
19
+ ---
20
+
21
+ ## oh-my-githubcopilot v1.8.0 — 2026-05-25
22
+
23
+ ### Features
24
+
25
+ - **Cross-repo sync**: Aligned README template, Star History chart, sponsor links, and badge shields with OMX/OMC/OMA/OMG
26
+ - **Dual publish**: GitHub Actions release workflow now publishes to both npmjs.com (oh-my-githubcopilot) and GitHub Packages (@r3dlex/oh-my-githubcopilot) with version verification
27
+ - **README updates**: 12 localized README files regenerated from unified template
28
+ - **AI SDLC methodology**: Scaffolded across the repo with Archgate rules, ADR governance, Karpathy guidelines
29
+
30
+ ### Documentation
31
+
32
+ - Updated READMEs across 13 languages (en, de, es, fr, it, ja, ko, pt, ru, tr, vi, zh)
33
+ - Star History chart added for r3dlex/oh-my-githubcopilot
34
+ - Sponsor link updated to github.com/sponsors/r3dlex
35
+
36
+ ---
37
+
38
+ ## oh-my-githubcopilot v1.7.0 — 2026-04-21
39
+
40
+ ### Features
41
+
42
+ - **vscode-omp**: Add VS Code extension for real-time workflow/agent visualization
43
+ - Workflows, Agents, Tasks panels in the activity bar
44
+ - StateReader interface with OmpStateAdapter (reads `.omc/state/*-state.json` and `subagent-tracking.json`)
45
+ - 200ms debounced FileSystemWatcher — prevents UI thrashing during heavy execution
46
+ - Live status bar showing active workflow count and running agents
47
+ - MCP server provider registration
48
+
49
+ ---
50
+
51
+ ## oh-my-githubcopilot v1.6.0 — 2026-04-21
52
+
53
+ ### Features
54
+
55
+ - **14 new skills — 25 → 39 total** — ported and adapted from oh-my-claudecode and oh-my-auggie:
56
+ - `ralplan` — consensus planning mode via `omp-plan --consensus`; triggers `/omp:ralplan`
57
+ - `research` — autonomous autoresearch workflow; triggers `/omp:research`
58
+ - `omp-doctor` — OMP installation diagnostics; triggers `/omp:omp-doctor`
59
+ - `omp-reference` — internal agent catalog (non-invocable)
60
+ - `ai-slop-cleaner` — AI-slop detection and prose cleanup; triggers `deslop`
61
+ - `tdd` — Red-Green-Refactor TDD workflow; triggers `/omp:tdd`
62
+ - `improve-codebase-architecture` — architecture improvement advisor; triggers `/omp:improve-codebase-architecture`
63
+ - `skillify` — convert ad-hoc prompts into reusable skills; triggers `/omp:skillify`
64
+ - `interview` — short-form interview mode (distinct from `deep-interview`); triggers `interview:`
65
+ - `graph-context` — auto-injected knowledge-graph context (non-user-triggered)
66
+ - `interactive-menu` — numbered-choice conversational TUI pattern (non-user-triggered)
67
+ - `notifications` — runtime notification delivery (distinct from `configure-notifications`); triggers `notifications:`
68
+ - `doctor` — general Socratic root-cause analysis (distinct from `omp-doctor`); triggers `doctor:`
69
+ - `session` — worktree/tmux session lifecycle management (distinct from `psm`); triggers `session:`
70
+ - **`omp-plan` extended with consensus mode** — `--consensus` flag added; Planner→Architect→Critic loop (max 5 iterations)
71
+
72
+ ### Fixes
73
+
74
+ - **keyword-detector** — registered all 14 new skill aliases (`doctor:`, `/doctor`, `/omp:doctor`, `interview:`, `/interview`, `/omp:interview`, `notifications:`, `/notifications`, `/omp:notifications`, `session:`, `/session`, `/omp:session`, `/omp:omp-doctor`, `/omp:ralplan`, `/omp:research`, `--consensus`) into `KEYWORD_MAP`
75
+ - **graph-context / interactive-menu SKILL.md** — changed `trigger:` to `invocation:` so the keyword-detector test does not attempt to use their descriptive values as literal aliases
76
+
77
+ ### CI / Release
78
+
79
+ - **npm Trusted Publishing** — replaced long-lived `NPM_TOKEN` secret with OIDC Trusted Publishing on npmjs.com; publish step now relies on `id-token: write` + `--provenance` with no stored secret
80
+
81
+ ### Verification
82
+
83
+ - All 849 tests pass (1 integration test intentionally skipped)
84
+ - Coverage: statements 87.89% / branches 85.49% / functions 94.64% — all above 80% threshold
85
+ - Build, typecheck, and archgate check all pass
86
+
87
+ ## [1.5.9] — 2026-04-17
88
+
89
+ ### Features
90
+
91
+ - **OMP CLI auto-update prompt** — added a launch-time npm update check for `omp` with OMX-style guardrails:
92
+ - interactive TTY only
93
+ - non-fatal failures
94
+ - 12-hour TTL cache at `~/.omp/state/update-check.json`
95
+ - disable via `OMP_AUTO_UPDATE=0` or `OMP_DISABLE_UPDATE_CHECK=true`
96
+ - prompt suppression for low-value commands (for example `omp version`)
97
+ - **CLI front door wiring** — `src/index.mts` now invokes the update checker before command execution and treats
98
+ `--version` as the `version` command.
99
+
100
+ ### Verification
101
+
102
+ - **CLI coverage expanded** — added dedicated update-flow tests under `tests/cli/update.test.mts` and extended
103
+ `tests/cli/index.test.mts` to assert update-check integration at the command entrypoint.
104
+
105
+ ## [1.5.8] — 2026-04-16
106
+
107
+ ### Improved
108
+ - Raised test coverage across hooks, mcp, and psm modules
109
+ - Branch coverage: 80.65% → 85.65% (+5pp above 80% threshold)
110
+ - Statement coverage: 89.35% → 93.95%; Function coverage: 93.65% → 95.23%
111
+ - New test files: stop-continuation, token-tracker (hooks), memory-store, state-manager (mcp), session, worktree (psm)
112
+
113
+ ## [v1.5.7] — Release readiness refresh
114
+
115
+ ### Release readiness
116
+
117
+ - **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.
118
+ - **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.
119
+
120
+ ### Verification
121
+
122
+ - **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%`).
123
+
124
+ ## [v1.5.6] — HUD watch daemon and model/budget fixes
125
+
126
+ ### Features
127
+
128
+ - **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.
129
+
130
+ ### Fixes
131
+
132
+ - **HUD model fallback** — corrected default model fallback from `claude-sonnet-4.5` to `claude-sonnet-4.6`.
133
+ - **HUD token budget** — token budget is now resolved per-model from the `MODEL_CONTEXTS` map instead of using a fixed constant.
134
+ - **HUD premium requests total** — total premium request count is now configurable via the `OMP_PREMIUM_REQUESTS_TOTAL` environment variable.
135
+ - **HUD skills total** — `skillsTotal` corrected from 21 to 25, matching the actual number of shipped skills.
136
+ - **Model router advisory** — updated the model-router advisory string to reference `claude-sonnet-4.6`.
137
+ - **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.
138
+
139
+ ### Documentation
140
+
141
+ - **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.
142
+
143
+ ### Verification
144
+
145
+ - **Fresh coverage evidence** — `npm run test:coverage` now reports `89.35%` statements, `80.65%` branches, `93.65%` functions, and `89.35%` lines.
146
+
147
+ ---
148
+
149
+ ## [v1.5.5] — Copilot docs move and release refresh
150
+
151
+ ### Documentation
152
+
153
+ - **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.
154
+ - **Adoption flow updated** — `scripts/omp-adopt.sh` now installs Copilot docs under `.copilot/` while leaving `.github/` focused on workflows, plugin metadata, and hook entrypoints.
155
+
156
+ ### Release readiness
157
+
158
+ - **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.
159
+ - **Release notes refreshed** — changelog and release docs now reflect the `.copilot/` doc boundary and the new release target.
160
+ - **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.
161
+
162
+ ## [v1.5.4] — Experimental Copilot setup and STATUS_LINE integration
163
+
164
+ ### Features
165
+
166
+ - **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.
167
+ - **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.
168
+ - **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.
169
+
170
+ ### Fixes
171
+
172
+ - **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.
173
+ - **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.
174
+
175
+ ### Verification
176
+
177
+ - **Coverage remains above release floor** — fresh coverage evidence remains above the required 80% thresholds: statements `88.26%`, branches `83.98%`, functions `92.4%`.
178
+ - **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.
4
179
 
5
- ## [2.0.0] — 2026-06-13
180
+ ## [v1.5.3] — Release readiness and CI enforcement
181
+
182
+ ### Fixes
183
+
184
+ - **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.
185
+ - **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.
186
+ - **Claude plugin manifest sync** — normalized `.claude-plugin/plugin.json` to a single version field by re-syncing it from the root `plugin.json`.
187
+
188
+ ### Verification
189
+
190
+ - **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.
191
+ - **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.
192
+
193
+ ### Documentation
194
+
195
+ - **Release process clarified** — `RELEASING.md` now calls out syncing all plugin manifests plus marketplace metadata and choosing the next unreleased semver before tagging.
196
+
197
+ ## [v1.5.0] — Copilot CLI release alignment
198
+
199
+ ### Features
200
+
201
+ - **Copilot-ready agent metadata** — normalized `src/agents/*.md` frontmatter for Copilot-compatible agent loading fields while preserving the existing prompt bodies.
202
+ - **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.
203
+ - **README quick start refresh** — replaced the install flow with `copilot plugin install ...`, `/omp:setup`, and first-run Copilot commands.
204
+
205
+ ### Fixes
206
+
207
+ - **Version sync to `1.5.0`** — aligned `package.json`, `package-lock.json`, root/plugin manifests, and marketplace metadata on the release target.
208
+ - **Plugin manifest agent path** — `.github/plugin/plugin.json` now points at `./agents` so the manifest matches the Copilot-facing agent bundle.
209
+ - **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.
210
+
211
+ ### Documentation
212
+
213
+ - **Release expectations clarified** — release docs now call out the committed `dist/` expectation for plugin consumers.
214
+
215
+ ---
216
+
217
+ ## [v1.4.2] — Dynamic version in HUD emitter
218
+
219
+ ### Fixes
220
+
221
+ - **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
222
+
223
+ ---
224
+
225
+ ## [v1.4.1] — CLI shebang fix, dynamic version
226
+
227
+ ### Fixes
228
+
229
+ - **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`)
230
+ - **Dynamic version** — `omp version` now reads name and version from `package.json` at runtime via `createRequire`; no more hardcoded version string in source (`550b764`)
231
+
232
+ ---
233
+
234
+ ## [v1.4.0] — Package renamed to oh-my-githubcopilot
6
235
 
7
236
  ### Breaking Changes
8
- - **Agent parity (23→19):** Six agents removed, merged, or renamed:
9
- - `orchestrator` top-level instruction role (not delegatable)
10
- - `researcher` merged into `document-specialist`
11
- - `reviewer` → merged into `code-reviewer`
12
- - `tester` → merged into `test-engineer`
13
- - `explorer` → renamed to `explore`
14
- - `simplifier` renamed to `code-simplifier`
15
- - Run `omp doctor` to detect stale agent references in your config files.
16
-
17
- ### New Features
18
-
19
- #### Native Slash Commands (SDK Extension)
20
- - Every skill is now available as a native `/skill-name` command in GitHub Copilot CLI
21
- - Aliases: `/ulw` (ultrawork), `/eco` (ecomode), `/plan` (omp-plan), `/di` (deep-interview)
22
- - Extension registered via `.github/extensions/oh-my-githubcopilot/extension.mjs`
23
-
24
- #### Dynamic HUD (Canvas API)
25
- - Live Canvas HUD updates via Copilot SDK Canvas API (no tmux required)
26
- - Fallback chain: Canvas → tmux statusline → file polling
27
- - `OMP_HUD_POLL_MS` env var to tune polling interval
28
-
29
- #### 20 New Skills (59 total, was 39)
30
- **P1:** verify, cancel, help, code-review, security-review, ultraqa, ultragoal
31
- **P2:** deep-dive, external-context, deepsearch, sciomc, remember, writer-memory, deepinit
32
- **P3:** self-improve, visual-verdict, ccg, build-fix, design, web-clone
33
-
34
- #### `omp doctor`
35
- - Scans `.github/copilot-instructions.md`, `AGENTS.md`, `.omg/`, `.omp/` for stale agent references
36
- - Exits 1 when issues found (CI-detectable)
37
-
38
- ### Fixes
39
- - **Hooks fail-open:** All 6 lifecycle hooks now emit `{"decision":"allow"}` on any error instead of exiting 1 (which caused tool-call denials). `timeoutSec` raised from 0.2→5.
40
- - **token-tracker Set serialization:** `warnings_issued` persisted as Array, rehydrated as Set fixes `TypeError: .has is not a function` crash.
41
- - **Model tier routing:** `analyst`, `designer`, `code-simplifier`, `code-reviewer` correctly routed to `claude-opus-4.6` (high tier).
42
- - **`/help` and `/cancel` keyword collision:** These common words no longer shadow native Copilot commands.
43
-
44
- ### Architecture
45
- - `src/hooks/runner.mts`: shared fail-open entry point for all hooks
46
- - `src/extension/registry.mts`: single source of truth for all 59 skills
47
- - `src/cli/doctor.mts`: agent migration scanner
48
- - ADR-0002: plugin + extension dual-surface architecture
49
- - ADR-0003: hooks fail-open design
50
- - ADR-0004: token-tracker Set→Array serialization
51
-
52
- ## [1.8.1] — (previous release)
53
-
54
- See git history for changes prior to 2.0.0.
237
+
238
+ - **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`
239
+ - **Repository moved** git remote updated to `git@github.com:r3dlex/oh-my-githubcopilot.git`
240
+
241
+ ### Changes
242
+
243
+ - All source files, tests, specs, docs, and manifests updated to reflect the new package name
244
+ - MCP server identity updated to `oh-my-githubcopilot`
245
+ - All 11 localized READMEs, archgate ADRs, and release docs updated
246
+ - `bin/omp.mjs` rebuilt with updated package identity
247
+
248
+ ---
249
+
250
+ ## [v1.3.0] Continuous release pipeline, dual-registry publish
251
+
252
+ Commits: `fd366e6`…`a26f673`
253
+
254
+ ### Features
255
+
256
+ - **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`)
257
+ - **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`)
258
+ - **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`)
259
+
260
+ ### Fixes
261
+
262
+ - **Workflow parse error** — replaced `secrets.NPM_TOKEN != ''` in step `if:` conditions with a dedicated check step outputting `available=true/false` (`e82e807`)
263
+ - **Version-agnostic plugin test assertions** — `plugin-install.test.mts` now reads version from `packageJson().version`; `marketplace.json` metadata.version synced (`7f99f14`)
264
+ - **Stale agent/skill counts** JSON descriptors and e2e tests corrected to 23 agents / 25 skills (`74c5122`)
265
+
266
+ ### Documentation
267
+
268
+ - **CHANGELOG rewritten** entries now derived from actual git log commit ranges per version (`a26f673`)
269
+ - **Agent and skill docs normalized** all 23 agent descriptors and 25 skill `SKILL.md` files updated to consistent format (`fd366e6`)
270
+
271
+ ---
272
+
273
+ ## [v1.2.0] — GraphProvider abstraction, graphwiki adapter, spending skill
274
+
275
+ Commits: `a234799`, `feb5e65` (PR #10)
276
+
277
+ ### Features
278
+
279
+ - **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
280
+ - **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)
281
+ - **GraphwikiAdapter**new `src/graph/graphwiki-adapter.mts` wrapping the `graphwiki` npm CLI (`npm install -g graphwiki`); implements both `GraphBuildable` and `GraphWikiClient`
282
+ - **graphwiki skill** — new `/omp:graphwiki` skill for direct access to graphwiki CLI: `query`, `path`, `lint`, `refine`, `build`, `status`, `clean`
283
+ - **graph-provider skill** — new `/omp:graph-provider` skill for managing the active provider: `get`, `set`, `list`, `build`, `status`, `clean`, `query`
284
+ - **spending skill** — new `/omp:spending` skill exposing `status` and `reset` for premium request usage tracking
285
+ - **keyword-detector wiring** — 8 new keyword entries: `graphify:`, `graphwiki:`, `graph:`, `spending:`, `/graphify`, `/graphwiki`, `/graph-provider`, `/spending`
286
+
287
+ ### Fixes
288
+
289
+ - **plugin.json** — removed non-existent `./agents` path from agents array; added `graphify`, `graphwiki`, `graph-provider`, `spending` to skills list (25 skills total)
290
+ - **gitignore** — untracked `coverage/.tmp`, `.omc/` state files, `devops.md` (`a234799`)
291
+
292
+ ---
293
+
294
+ ## [v1.1.0] — CI hardening, HUD format change
295
+
296
+ Commits: `ce6f3bd`…`051ac20` (PR #9)
297
+
298
+ ### Features
299
+
300
+ - **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`
301
+ - **CLI elicitation support** — expanded OMP setup wizard to handle interactive CLI prompts during MCP config generation
302
+
303
+ ### Fixes
304
+
305
+ - **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`)
306
+ - **CI: vitest hanging** — added `< /dev/null` stdin redirect and `timeout 120` to prevent vitest blocking indefinitely in non-TTY environments (`fa9fdfb`)
307
+ - **CI: vitest `--forceExit`** — added flag to ensure process exits after tests complete in CI (`c88c2c7`)
308
+ - **CI: coverage job timeout** — separated coverage into its own job with a 10-minute timeout; tests run without coverage in parallel (`9608b07`)
309
+ - **CI: coverage provider** — removed incompatible `@vitest/coverage-istanbul`; using `@vitest/coverage-v8` exclusively (`ce6f3bd`)
310
+ - **Redundant `root/agents` directory** — removed stale agents directory at repo root; all 23 agents live in `src/agents/` (`8c521c0`)
311
+
312
+ ---
313
+
314
+ ## [v1.0.0] — Initial release
315
+
316
+ Commits: `804fc37`…`0f96d48` (initial implementation + `6ee243f` rename)
317
+
318
+ Initial release of **oh-my-githubcopilot (OMP)** — a multi-agent orchestration plugin for GitHub Copilot CLI.
319
+
320
+ ### Features
321
+
322
+ - **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
323
+ - **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`
324
+ - **6 hooks**: `keyword-detector`, `delegation-enforcer`, `model-router`, `token-tracker`, `hud-emitter`, `stop-continuation`
325
+ - **HUD display system** — real-time session context, token tracking, and agent/skill usage counters in tmux status bar
326
+ - **PSM (Plugin State Manager)** — SQLite-backed cross-session state persistence with fleet-level visibility
327
+ - **MCP server** — 10 tools for extended capabilities (`omp_get_agents`, `omp_delegate_task`, `omp_activate_skill`, `omp_get_hud_state`, `omp_get_session_state`, `omp_save_session`, `omp_list_sessions`, `omp_invoke_hook`, `omp_subscribe_hud_events`, `omp_fleet_status`)
328
+ - **SWE-bench harness** — reproducible benchmark runner for performance evaluation
329
+ - **Double-tiered MCP config** — user-level (`~/.omp/`) and workspace-level (`.omp/`) config with merge resolution
330
+ - **Setup wizard** — `/setup` and `/mcp-setup` skills for frictionless onboarding
331
+ - **ADR governance** — `archgate` CLI integration for architecture decision records (`d38b46d`, `9cc3d09`)
332
+ - **OMP rename** — project renamed from `oh-my-claudecode (OMC)` to `oh-my-githubcopilot (OMP)` targeting GitHub Copilot CLI (`6ee243f`)
333
+
334
+ ### Documentation
335
+
336
+ - `AGENTS.md` — agent registry and delegation rules
337
+ - `CLAUDE.md` — project instructions and quick reference
338
+ - `SECURITY.md` — vulnerability reporting policy
339
+ - `FUNDING.yml` — GitHub Sponsors link
340
+ - Spec documents: `spec/AGENTS_SPEC.md`, `spec/SKILLS.md`, `spec/HOOKS.md`, `spec/HUD.md`, `spec/PSM.md`, `spec/MCP.md`
341
+ - 11 localized READMEs, SVG logo, buddy screenshots
package/README.md CHANGED
@@ -42,7 +42,7 @@ omp hud --watch # live status
42
42
  |---------|-------------|
43
43
  | **Specialized Agents** | 19 agents (analyst, architect, executor, debugger, critic, verifier, test-engineer, writer, and more) |
44
44
  | **Parallel Team Mode** | tmux-based multi-worker orchestration with shared task state |
45
- | **Workflow Skills** | 59 skills built in — plan, deep-interview, ralph, autopilot, ultrawork, code-review, and more |
45
+ | **Workflow Skills** | 39 skills built in — plan, deep-interview, ralph, autopilot, ultrawork, code-review, and more |
46
46
  | **Persistent Hooks** | Automatic tool tracking, project memory, session management |
47
47
  | **Real-time HUD** | Live status overlay showing agents, costs, and progress |
48
48
  | **CI/CD Ready** | Verification gates, test integration, release workflows |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-githubcopilot",
3
- "version": "2.0.0-alpha.1cd01f4",
3
+ "version": "2.0.0-alpha.7-alpha.73be789",
4
4
  "description": "Multi-agent orchestration for GitHub Copilot CLI. 19 agents, 59 skills, parallel execution, HUD, PSM, SWE-bench.",
5
5
  "author": {
6
6
  "name": "r3dlex"
package/plugin.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": "1.0",
3
3
  "name": "oh-my-githubcopilot",
4
- "version": "2.0.0",
4
+ "version": "2.0.0-alpha.7",
5
5
  "description": "Multi-agent orchestration for GitHub Copilot CLI. 19 agents, 59 skills, parallel execution, HUD, PSM, SWE-bench.",
6
6
  "author": {
7
7
  "name": "r3dlex"