oh-my-githubcopilot 1.8.1 → 2.0.0-alpha.1cd01f4
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 +23 -3
- package/AGENTS.md +29 -25
- package/CHANGELOG.md +49 -336
- package/README.md +7 -2
- package/agents/code-reviewer.agent.md +5 -0
- package/agents/{simplifier.agent.md → code-simplifier.agent.md} +2 -2
- package/agents/debugger.agent.md +1 -1
- package/agents/document-specialist.agent.md +6 -1
- package/agents/{explorer.agent.md → explore.agent.md} +2 -2
- package/agents/security-reviewer.agent.md +1 -1
- package/agents/test-engineer.agent.md +3 -1
- package/bin/omp-statusline.mjs +12 -11
- package/bin/omp-statusline.mjs.map +2 -2
- package/bin/omp.mjs +885 -42
- package/bin/omp.mjs.map +4 -4
- package/dist/hooks/delegation-enforcer.mjs +65 -13
- package/dist/hooks/delegation-enforcer.mjs.map +4 -4
- package/dist/hooks/hud-emitter.mjs +80 -28
- package/dist/hooks/hud-emitter.mjs.map +4 -4
- package/dist/hooks/keyword-detector.mjs +117 -11
- package/dist/hooks/keyword-detector.mjs.map +4 -4
- package/dist/hooks/model-router.mjs +64 -12
- package/dist/hooks/model-router.mjs.map +4 -4
- package/dist/hooks/stop-continuation.mjs +66 -14
- package/dist/hooks/stop-continuation.mjs.map +4 -4
- package/dist/hooks/token-tracker.mjs +81 -19
- package/dist/hooks/token-tracker.mjs.map +4 -4
- package/dist/mcp/server.mjs +17 -16
- package/dist/mcp/server.mjs.map +2 -2
- package/extension/extension.mjs +659 -0
- package/hooks/hooks.json +6 -6
- package/package.json +3 -2
- package/plugin.json +23 -3
- package/skills/build-fix/SKILL.md +35 -0
- package/skills/cancel/SKILL.md +33 -0
- package/skills/ccg/SKILL.md +37 -0
- package/skills/code-review/SKILL.md +33 -0
- package/skills/deep-dive/SKILL.md +33 -0
- package/skills/deepinit/SKILL.md +33 -0
- package/skills/deepsearch/SKILL.md +33 -0
- package/skills/design/SKILL.md +37 -0
- package/skills/external-context/SKILL.md +33 -0
- package/skills/help/SKILL.md +33 -0
- package/skills/omp-doctor/SKILL.md +23 -1
- package/skills/omp-reference/SKILL.md +20 -24
- package/skills/remember/SKILL.md +39 -0
- package/skills/research/SKILL.md +1 -1
- package/skills/sciomc/SKILL.md +35 -0
- package/skills/security-review/SKILL.md +33 -0
- package/skills/self-improve/SKILL.md +35 -0
- package/skills/ultragoal/SKILL.md +33 -0
- package/skills/ultraqa/SKILL.md +33 -0
- package/skills/verify/SKILL.md +33 -0
- package/skills/visual-verdict/SKILL.md +35 -0
- package/skills/web-clone/SKILL.md +35 -0
- package/skills/writer-memory/SKILL.md +37 -0
- package/agents/orchestrator.agent.md +0 -26
- package/agents/researcher.agent.md +0 -18
- package/agents/reviewer.agent.md +0 -23
- package/agents/tester.agent.md +0 -20
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0",
|
|
3
3
|
"name": "oh-my-githubcopilot",
|
|
4
|
-
"version": "
|
|
5
|
-
"description": "Multi-agent orchestration for GitHub Copilot CLI.
|
|
4
|
+
"version": "2.0.0",
|
|
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"
|
|
8
8
|
},
|
|
@@ -58,7 +58,27 @@
|
|
|
58
58
|
"./skills/interactive-menu",
|
|
59
59
|
"./skills/notifications",
|
|
60
60
|
"./skills/doctor",
|
|
61
|
-
"./skills/session"
|
|
61
|
+
"./skills/session",
|
|
62
|
+
"./skills/verify",
|
|
63
|
+
"./skills/cancel",
|
|
64
|
+
"./skills/help",
|
|
65
|
+
"./skills/code-review",
|
|
66
|
+
"./skills/security-review",
|
|
67
|
+
"./skills/ultraqa",
|
|
68
|
+
"./skills/ultragoal",
|
|
69
|
+
"./skills/deep-dive",
|
|
70
|
+
"./skills/external-context",
|
|
71
|
+
"./skills/deepsearch",
|
|
72
|
+
"./skills/sciomc",
|
|
73
|
+
"./skills/remember",
|
|
74
|
+
"./skills/writer-memory",
|
|
75
|
+
"./skills/deepinit",
|
|
76
|
+
"./skills/self-improve",
|
|
77
|
+
"./skills/visual-verdict",
|
|
78
|
+
"./skills/ccg",
|
|
79
|
+
"./skills/build-fix",
|
|
80
|
+
"./skills/design",
|
|
81
|
+
"./skills/web-clone"
|
|
62
82
|
],
|
|
63
83
|
"hooks": "./hooks/hooks.json",
|
|
64
84
|
"mcp": "./.mcp.json",
|
package/AGENTS.md
CHANGED
|
@@ -4,7 +4,7 @@ This is the orchestration brain for the Oh My Copilot (OMP) plugin. All agents,
|
|
|
4
4
|
|
|
5
5
|
## Orchestrator Role
|
|
6
6
|
|
|
7
|
-
The orchestrator is the top-level
|
|
7
|
+
The orchestrator is the top-level coordination role of the main session — it is **not a delegatable agent**. It:
|
|
8
8
|
- Receives every user request
|
|
9
9
|
- Analyzes scope and chooses the appropriate agent
|
|
10
10
|
- Delegates work, never implements directly
|
|
@@ -14,32 +14,31 @@ The orchestrator is the top-level coordinator. It:
|
|
|
14
14
|
|
|
15
15
|
The orchestrator **never writes code, docs, or configs directly**. It always delegates to a specialized agent.
|
|
16
16
|
|
|
17
|
-
## Agent Registry (
|
|
17
|
+
## Agent Registry (19 Agents)
|
|
18
18
|
|
|
19
19
|
| # | ID | Tier | Tools | Role |
|
|
20
20
|
|---|-----|------|-------|------|
|
|
21
|
-
| 1 | `
|
|
22
|
-
| 2 | `
|
|
23
|
-
| 3 | `
|
|
24
|
-
| 4 | `
|
|
25
|
-
| 5 | `
|
|
26
|
-
| 6 | `
|
|
27
|
-
| 7 | `
|
|
28
|
-
| 8 | `
|
|
29
|
-
| 9 | `
|
|
30
|
-
| 10 | `
|
|
31
|
-
| 11 | `
|
|
32
|
-
| 12 | `
|
|
33
|
-
| 13 | `
|
|
34
|
-
| 14 | `
|
|
35
|
-
| 15 | `
|
|
36
|
-
| 16 | `
|
|
37
|
-
| 17 | `
|
|
38
|
-
| 18 | `
|
|
39
|
-
| 19 | `
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
| 22 | `git-master` | standard | Bash, Read, Grep | Atomic commits, history management |
|
|
21
|
+
| 1 | `explore` | fast | Glob, Grep, Read | Fast codebase surveys, pattern finding |
|
|
22
|
+
| 2 | `planner` | high | Read, Write, TaskCreate | Architecture, sequencing, risk assessment |
|
|
23
|
+
| 3 | `executor` | standard | Read, Write, Edit, Bash | Implementation, refactoring, complex changes |
|
|
24
|
+
| 4 | `verifier` | standard | Bash, Read, Glob | Testing, diagnostics, evidence collection |
|
|
25
|
+
| 5 | `writer` | standard | Read, Write, Glob | Documentation, README, API docs |
|
|
26
|
+
| 6 | `designer` | high | WebFetch, Figma tools | UI/UX, design system, Figma integration |
|
|
27
|
+
| 7 | `debugger` | high | Bash, Read, LSP, Grep | Error diagnosis, crash analysis |
|
|
28
|
+
| 8 | `architect` | high | Read, Write, Glob | System design, cross-cutting concerns |
|
|
29
|
+
| 9 | `security-reviewer` | high | Grep, Glob, Read | Vulnerability scanning, dependency audit |
|
|
30
|
+
| 10 | `code-simplifier` | high | Read, Edit, Grep | Code simplification, clarity, maintainability |
|
|
31
|
+
| 11 | `test-engineer` | standard | Bash, Read, Write | Test authoring, execution, coverage analysis, CI integration |
|
|
32
|
+
| 12 | `critic` | high | Read, Grep, Write | Plan review, gap analysis, improvement suggestions |
|
|
33
|
+
| 13 | `tracer` | standard | Bash, Read, Grep | Causal investigation, root cause analysis |
|
|
34
|
+
| 14 | `scientist` | standard | Read, Write, Bash | Experimental design, hypothesis testing |
|
|
35
|
+
| 15 | `code-reviewer` | high | Read, Glob, LSP | Code review, quality gates, merge verdicts |
|
|
36
|
+
| 16 | `document-specialist` | standard | Read, Write, Grep, WebSearch, WebFetch | External docs, API research, options benchmarking |
|
|
37
|
+
| 17 | `qa-tester` | standard | Bash, Read, Write | QA testing, regression verification |
|
|
38
|
+
| 18 | `git-master` | standard | Bash, Read, Grep | Atomic commits, history management |
|
|
39
|
+
| 19 | `analyst` | high | Read, Grep | Requirements analysis, gap identification |
|
|
40
|
+
|
|
41
|
+
> **Migration (2.0)**: `explorer`→`explore`, `simplifier`→`code-simplifier`; `orchestrator` is now the top-level role only; `researcher`→`document-specialist`, `reviewer`→`code-reviewer`, `tester`→`test-engineer`. Run `omp doctor` to detect stale references.
|
|
43
42
|
|
|
44
43
|
## Delegation Rules
|
|
45
44
|
|
|
@@ -130,7 +129,7 @@ This repository uses the AI SDLC methodology scaffolded by `ai-sdlc-init`.
|
|
|
130
129
|
|
|
131
130
|
### Architecture Decision Records
|
|
132
131
|
|
|
133
|
-
Significant architectural decisions are recorded in [`docs/adr/`](docs/adr/).
|
|
132
|
+
Significant architectural decisions are recorded in [`docs/architecture/adr/`](docs/architecture/adr/).
|
|
134
133
|
Before making a change that affects module boundaries, API contracts, data
|
|
135
134
|
schemas, or dependency direction, check whether a relevant ADR exists.
|
|
136
135
|
If your change contradicts an existing ADR, either update the ADR or open a
|
|
@@ -174,3 +173,8 @@ Before starting work on an issue:
|
|
|
174
173
|
3. Do not make a fourth attempt without human acknowledgement.
|
|
175
174
|
|
|
176
175
|
<!-- ai-sdlc-init:end -->
|
|
176
|
+
|
|
177
|
+
<!-- v3-ai-sdlc-init:start -->
|
|
178
|
+
## AI SDLC v3
|
|
179
|
+
This repo follows the v3 AI-SDLC layout. See `.ai/matrix.json`, `.memory/human-override/`, and `docs/architecture/adr/`. Modules at `r3dlex/skills/ai-sdlc-init/modules/`.
|
|
180
|
+
<!-- v3-ai-sdlc-init:end -->
|
package/CHANGELOG.md
CHANGED
|
@@ -1,341 +1,54 @@
|
|
|
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
|
-
|
|
15
1
|
# Changelog
|
|
16
2
|
|
|
17
|
-
All notable changes to
|
|
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.
|
|
3
|
+
All notable changes to oh-my-githubcopilot are documented here.
|
|
179
4
|
|
|
180
|
-
## [
|
|
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
|
|
5
|
+
## [2.0.0] — 2026-06-13
|
|
235
6
|
|
|
236
7
|
### Breaking Changes
|
|
237
|
-
|
|
238
|
-
-
|
|
239
|
-
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
-
|
|
244
|
-
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
- **
|
|
269
|
-
- **
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
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
|
|
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.
|
package/README.md
CHANGED
|
@@ -40,9 +40,9 @@ omp hud --watch # live status
|
|
|
40
40
|
|
|
41
41
|
| Feature | Description |
|
|
42
42
|
|---------|-------------|
|
|
43
|
-
| **Specialized Agents** |
|
|
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** |
|
|
45
|
+
| **Workflow Skills** | 59 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 |
|
|
@@ -138,3 +138,8 @@ omp is open source under the [Apache-2.0 License](LICENSE).
|
|
|
138
138
|
## Sponsors
|
|
139
139
|
|
|
140
140
|
If omp saves you time, consider [sponsoring the project](https://github.com/sponsors/r3dlex) ❤️
|
|
141
|
+
|
|
142
|
+
<!-- v3-ai-sdlc-init:start -->
|
|
143
|
+
## AI SDLC v3
|
|
144
|
+
This repo follows the v3 AI-SDLC layout. See `.ai/matrix.json`, `.memory/human-override/`, and `docs/architecture/adr/`. Modules at `r3dlex/skills/ai-sdlc-init/modules/`.
|
|
145
|
+
<!-- v3-ai-sdlc-init:end -->
|
|
@@ -18,6 +18,11 @@ Perform thorough code reviews with severity ratings, SOLID principle checks, and
|
|
|
18
18
|
- Severity-rated feedback (critical/major/minor)
|
|
19
19
|
- Logic defect detection and SOLID principle violations
|
|
20
20
|
- Style, performance, and maintainability analysis
|
|
21
|
+
- Style enforcement against project linter rules and pattern consistency
|
|
22
|
+
- Merge gate verdicts (approve / request changes)
|
|
23
|
+
|
|
24
|
+
## Constraints
|
|
25
|
+
- Blocks on security issues, unhandled errors, and type mismatches — not on preference-based style choices outside linter rules
|
|
21
26
|
|
|
22
27
|
## NOT Responsible For
|
|
23
28
|
- Implementing fixes (→ executor)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: simplifier
|
|
2
|
+
name: code-simplifier
|
|
3
3
|
description: >
|
|
4
4
|
Code simplification and refactoring specialist.
|
|
5
5
|
Use when: simplifying code, improving clarity, removing dead code, reducing complexity.
|
|
@@ -9,7 +9,7 @@ agents: [explore]
|
|
|
9
9
|
user-invocable: true
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
# Simplifier
|
|
12
|
+
# Code Simplifier
|
|
13
13
|
|
|
14
14
|
## Role
|
|
15
15
|
Simplify and refine code for clarity, consistency, and maintainability while preserving exact functionality.
|
package/agents/debugger.agent.md
CHANGED
|
@@ -3,7 +3,7 @@ name: debugger
|
|
|
3
3
|
description: >
|
|
4
4
|
Root-cause analysis and failure diagnosis specialist.
|
|
5
5
|
Use when: "debug this", "find the bug", "diagnose failure", stack trace analysis, build errors.
|
|
6
|
-
model: claude-
|
|
6
|
+
model: claude-opus-4-6
|
|
7
7
|
tools: [readFile, runInTerminal, search, codebase, problems]
|
|
8
8
|
agents: [explore, architect]
|
|
9
9
|
user-invocable: true
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: document-specialist
|
|
3
3
|
description: >
|
|
4
4
|
External documentation and reference specialist.
|
|
5
|
-
Use when: looking up SDK docs, API references, package compatibility, external literature.
|
|
5
|
+
Use when: looking up SDK docs, API references, package compatibility, comparing libraries, researching APIs, external literature.
|
|
6
6
|
model: claude-sonnet-4-6
|
|
7
7
|
tools: [readFile, editFiles, search, fetch]
|
|
8
8
|
agents: [explore]
|
|
@@ -18,6 +18,11 @@ Find and synthesize information from the most trustworthy documentation source a
|
|
|
18
18
|
- External documentation lookup and synthesis
|
|
19
19
|
- API/framework reference research
|
|
20
20
|
- Package evaluation and version compatibility checks
|
|
21
|
+
- Technology comparisons and options benchmarking with objective tradeoffs
|
|
22
|
+
- Source citation: prefer official docs, flag outdated material, cite URLs
|
|
23
|
+
|
|
24
|
+
## Constraints
|
|
25
|
+
- READ-ONLY for code. Does not implement — finds, synthesizes, and summarizes with cited sources.
|
|
21
26
|
|
|
22
27
|
## NOT Responsible For
|
|
23
28
|
- Internal codebase search (→ explore)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: explore
|
|
3
3
|
description: >
|
|
4
4
|
Fast codebase surveyor for targeted search and mapping.
|
|
5
5
|
Use when: finding files by pattern, searching code for keywords, mapping codebase structure.
|
|
@@ -9,7 +9,7 @@ agents: []
|
|
|
9
9
|
user-invocable: true
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
#
|
|
12
|
+
# Explore
|
|
13
13
|
|
|
14
14
|
## Role
|
|
15
15
|
Perform fast, targeted codebase surveys: find file patterns, map structure, locate symbols, return concise summaries.
|
|
@@ -3,7 +3,7 @@ name: security-reviewer
|
|
|
3
3
|
description: >
|
|
4
4
|
Security vulnerability detection specialist (OWASP Top 10, secrets, unsafe patterns).
|
|
5
5
|
Use when: "security review", "find vulnerabilities", "check for secrets", auth/crypto changes.
|
|
6
|
-
model: claude-
|
|
6
|
+
model: claude-opus-4-6
|
|
7
7
|
tools: [readFile, search, codebase]
|
|
8
8
|
agents: [explore]
|
|
9
9
|
user-invocable: true
|