oh-my-githubcopilot 1.4.1 → 1.8.0-alpha.f50f59a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. package/.claude-plugin/plugin.json +36 -6
  2. package/.mcp.json +17 -0
  3. package/AGENTS.md +78 -9
  4. package/CHANGELOG.md +199 -1
  5. package/README.de.md +112 -26
  6. package/README.es.md +115 -29
  7. package/README.fr.md +114 -28
  8. package/README.it.md +114 -28
  9. package/README.ja.md +112 -26
  10. package/README.ko.md +112 -26
  11. package/README.md +96 -95
  12. package/README.pt.md +116 -30
  13. package/README.ru.md +116 -30
  14. package/README.tr.md +115 -29
  15. package/README.vi.md +116 -30
  16. package/README.zh.md +112 -26
  17. package/agents/analyst.agent.md +27 -0
  18. package/agents/architect.agent.md +24 -0
  19. package/agents/code-reviewer.agent.md +24 -0
  20. package/agents/critic.agent.md +24 -0
  21. package/agents/debugger.agent.md +24 -0
  22. package/agents/designer.agent.md +24 -0
  23. package/agents/document-specialist.agent.md +24 -0
  24. package/agents/executor.agent.md +27 -0
  25. package/agents/explorer.agent.md +23 -0
  26. package/agents/git-master.agent.md +24 -0
  27. package/agents/orchestrator.agent.md +26 -0
  28. package/agents/planner.agent.md +24 -0
  29. package/agents/qa-tester.agent.md +24 -0
  30. package/agents/researcher.agent.md +18 -0
  31. package/agents/reviewer.agent.md +23 -0
  32. package/agents/scientist.agent.md +20 -0
  33. package/agents/security-reviewer.agent.md +20 -0
  34. package/agents/simplifier.agent.md +20 -0
  35. package/agents/test-engineer.agent.md +20 -0
  36. package/agents/tester.agent.md +20 -0
  37. package/agents/tracer.agent.md +24 -0
  38. package/agents/verifier.agent.md +19 -0
  39. package/agents/writer.agent.md +24 -0
  40. package/bin/omp-statusline.mjs +179 -0
  41. package/bin/omp-statusline.mjs.map +7 -0
  42. package/bin/omp-statusline.sh +21 -0
  43. package/bin/omp.mjs +709 -16
  44. package/bin/omp.mjs.map +4 -4
  45. package/dist/hooks/hud-emitter.mjs +268 -82
  46. package/dist/hooks/hud-emitter.mjs.map +4 -4
  47. package/dist/hooks/keyword-detector.mjs +100 -23
  48. package/dist/hooks/keyword-detector.mjs.map +2 -2
  49. package/dist/hooks/model-router.mjs +1 -1
  50. package/dist/hooks/model-router.mjs.map +1 -1
  51. package/dist/hooks/stop-continuation.mjs +1 -1
  52. package/dist/hooks/stop-continuation.mjs.map +1 -1
  53. package/dist/hooks/token-tracker.mjs +2 -1
  54. package/dist/hooks/token-tracker.mjs.map +2 -2
  55. package/dist/mcp/server.mjs +85 -53
  56. package/dist/mcp/server.mjs.map +4 -4
  57. package/dist/skills/setup.mjs +39 -27
  58. package/dist/skills/setup.mjs.map +4 -4
  59. package/hooks/hooks.json +39 -45
  60. package/package.json +9 -4
  61. package/plugin.json +71 -0
  62. package/skills/ai-slop-cleaner/SKILL.md +137 -0
  63. package/skills/autopilot/SKILL.md +6 -0
  64. package/skills/configure-notifications/SKILL.md +6 -0
  65. package/skills/deep-interview/SKILL.md +6 -0
  66. package/skills/doctor/SKILL.md +188 -0
  67. package/skills/ecomode/SKILL.md +6 -0
  68. package/skills/graph-context/SKILL.md +119 -0
  69. package/skills/graph-provider/SKILL.md +6 -0
  70. package/skills/graphify/SKILL.md +6 -0
  71. package/skills/graphwiki/SKILL.md +6 -0
  72. package/skills/hud/SKILL.md +6 -0
  73. package/skills/improve-codebase-architecture/SKILL.md +214 -0
  74. package/skills/interactive-menu/SKILL.md +102 -0
  75. package/skills/interview/SKILL.md +203 -0
  76. package/skills/learner/SKILL.md +6 -0
  77. package/skills/mcp-setup/SKILL.md +6 -0
  78. package/skills/note/SKILL.md +6 -0
  79. package/skills/notifications/SKILL.md +190 -0
  80. package/skills/omp-doctor/SKILL.md +146 -0
  81. package/skills/omp-plan/SKILL.md +219 -2
  82. package/skills/omp-reference/SKILL.md +174 -0
  83. package/skills/omp-setup/SKILL.md +15 -1
  84. package/skills/pipeline/SKILL.md +6 -0
  85. package/skills/psm/SKILL.md +6 -0
  86. package/skills/ralph/SKILL.md +6 -0
  87. package/skills/ralplan/SKILL.md +148 -0
  88. package/skills/release/SKILL.md +6 -0
  89. package/skills/research/SKILL.md +149 -0
  90. package/skills/session/SKILL.md +220 -0
  91. package/skills/setup/SKILL.md +6 -0
  92. package/skills/skillify/SKILL.md +66 -0
  93. package/skills/spending/SKILL.md +6 -0
  94. package/skills/swarm/SKILL.md +6 -0
  95. package/skills/swe-bench/SKILL.md +6 -0
  96. package/skills/tdd/SKILL.md +246 -0
  97. package/skills/team/SKILL.md +6 -0
  98. package/skills/trace/SKILL.md +6 -0
  99. package/skills/ultrawork/SKILL.md +6 -0
  100. package/skills/wiki/SKILL.md +6 -0
  101. package/src/agents/analyst.md +0 -103
  102. package/src/agents/architect.md +0 -169
  103. package/src/agents/code-reviewer.md +0 -135
  104. package/src/agents/critic.md +0 -196
  105. package/src/agents/debugger.md +0 -132
  106. package/src/agents/designer.md +0 -103
  107. package/src/agents/document-specialist.md +0 -111
  108. package/src/agents/executor.md +0 -120
  109. package/src/agents/explorer.md +0 -98
  110. package/src/agents/git-master.md +0 -92
  111. package/src/agents/orchestrator.md +0 -125
  112. package/src/agents/planner.md +0 -106
  113. package/src/agents/qa-tester.md +0 -129
  114. package/src/agents/researcher.md +0 -102
  115. package/src/agents/reviewer.md +0 -100
  116. package/src/agents/scientist.md +0 -150
  117. package/src/agents/security-reviewer.md +0 -132
  118. package/src/agents/simplifier.md +0 -109
  119. package/src/agents/test-engineer.md +0 -124
  120. package/src/agents/tester.md +0 -102
  121. package/src/agents/tracer.md +0 -160
  122. package/src/agents/verifier.md +0 -100
  123. package/src/agents/writer.md +0 -96
@@ -1,14 +1,24 @@
1
1
  {
2
+ "schemaVersion": "1.0",
2
3
  "name": "oh-my-githubcopilot",
3
- "description": "Multi-agent orchestration for GitHub Copilot CLI. 23 agents, 25 skills, parallel execution, HUD, PSM, SWE-bench.",
4
- "version": "1.4.1",
4
+ "version": "1.8.0",
5
+ "description": "Multi-agent orchestration for GitHub Copilot CLI. 23 agents, 39 skills, parallel execution, HUD, PSM, SWE-bench.",
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": ["orchestration", "multi-agent", "autopilot", "swe-bench", "hud"],
11
- "agents": ["./src/agents"],
11
+ "keywords": [
12
+ "orchestration",
13
+ "multi-agent",
14
+ "autopilot",
15
+ "swe-bench",
16
+ "hud",
17
+ "copilot-cli"
18
+ ],
19
+ "agents": [
20
+ "./agents"
21
+ ],
12
22
  "skills": [
13
23
  "./skills/autopilot",
14
24
  "./skills/ralph",
@@ -34,8 +44,28 @@
34
44
  "./skills/graphify",
35
45
  "./skills/graphwiki",
36
46
  "./skills/graph-provider",
37
- "./skills/spending"
47
+ "./skills/spending",
48
+ "./skills/ralplan",
49
+ "./skills/research",
50
+ "./skills/omp-doctor",
51
+ "./skills/omp-reference",
52
+ "./skills/ai-slop-cleaner",
53
+ "./skills/tdd",
54
+ "./skills/improve-codebase-architecture",
55
+ "./skills/skillify",
56
+ "./skills/interview",
57
+ "./skills/graph-context",
58
+ "./skills/interactive-menu",
59
+ "./skills/notifications",
60
+ "./skills/doctor",
61
+ "./skills/session"
38
62
  ],
39
63
  "hooks": "./hooks/hooks.json",
40
- "mcp": "./.mcp.json"
64
+ "mcp": "./.mcp.json",
65
+ "entryPoints": {
66
+ "cli": "./bin/omp.mjs",
67
+ "mcp": "./dist/mcp/server.mjs"
68
+ },
69
+ "agentFormat": ".agent.md",
70
+ "agentFilePattern": "*.agent.md"
41
71
  }
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/AGENTS.md CHANGED
@@ -14,7 +14,7 @@ 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 (23 Agents)
17
+ ## Agent Registry (22 Agents)
18
18
 
19
19
  | # | ID | Tier | Tools | Role |
20
20
  |---|-----|------|-------|------|
@@ -31,7 +31,7 @@ The orchestrator **never writes code, docs, or configs directly**. It always del
31
31
  | 11 | `debugger` | high | Bash, Read, LSP, Grep | Error diagnosis, crash analysis |
32
32
  | 12 | `architect` | high | Read, Write, Glob | System design, cross-cutting concerns |
33
33
  | 13 | `security-reviewer` | high | Grep, Glob, Read | Vulnerability scanning, dependency audit |
34
- | 14 | `simplifier` | high | Read, Edit, Grep | Code reuse, quality, efficiency improvements |
34
+ | 14 | `code-simplifier` | high | Read, Edit, Grep | Code simplification, clarity, maintainability |
35
35
  | 15 | `test-engineer` | standard | Bash, Read, Write | Test authoring, coverage analysis |
36
36
  | 16 | `critic` | high | Read, Grep, Write | Plan review, gap analysis, improvement suggestions |
37
37
  | 17 | `tracer` | high | Bash, Read, Grep | Causal investigation, root cause analysis |
@@ -40,7 +40,6 @@ The orchestrator **never writes code, docs, or configs directly**. It always del
40
40
  | 20 | `document-specialist` | standard | Read, Write, Grep | Technical docs, API docs, guides |
41
41
  | 21 | `qa-tester` | standard | Bash, Read, Write | QA testing, regression verification |
42
42
  | 22 | `git-master` | standard | Bash, Read, Grep | Atomic commits, history management |
43
- | 23 | `analyst` | high | Read, Grep | Requirements analysis, gap identification |
44
43
 
45
44
  ## Delegation Rules
46
45
 
@@ -55,11 +54,11 @@ Never skip verification. Never claim completion without evidence.
55
54
 
56
55
  ## Model Selection Guidelines
57
56
 
58
- | Tier | Model | When to use |
59
- |------|-------|-------------|
60
- | High | `opus` | Security, architecture, complex multi-file refactors, PR reviews |
61
- | Standard | `sonnet` | Feature implementation, testing, documentation |
62
- | Fast | `haiku` | Quick lookups, simple edits, documentation updates, glob/grep passes |
57
+ | Tier | Models | When to use |
58
+ |------|--------|-------------|
59
+ | High | `gemini-3.5-flash`, `claude-opus-4.7`, `claude-sonnet-4.6`, `gemini-3.1-pro`, `gpt-5.5`, `gpt-5.4` | Security, architecture, complex multi-file refactors, PR reviews, agentic coding |
60
+ | Standard | `claude-sonnet-4.5`, `claude-haiku-4.5`, `gpt-5.4-mini`, `deepseek-v3` | Feature implementation, testing, documentation |
61
+ | Fast | `gpt-5.4-nano`, `gpt-5-mini`, `raptor-mini` | Quick lookups, simple edits, documentation updates, glob/grep passes |
63
62
 
64
63
  ## Execution Mode Handling
65
64
 
@@ -75,6 +74,7 @@ When an execution mode is active, follow its skill instructions exactly:
75
74
  | `swarm` | Magic keyword or `/swarm:` | Swarm orchestration. Multiple agents with shared state. |
76
75
  | `pipeline` | Magic keyword or `/pipeline:` | Sequential pipeline mode. Strict phase ordering. |
77
76
  | `plan` | Magic keyword or `/plan:` | Strategic planning. Use planner agent; delay implementation. |
77
+ | `ralplan` | Magic keyword or `ralplan:` | Consensus planning entrypoint that auto-gates vague ralph/autopilot/team requests. |
78
78
 
79
79
  ## HUD Awareness
80
80
 
@@ -102,6 +102,75 @@ See `spec/HOOKS.md` for hook schema and registration.
102
102
 
103
103
  Skills extend agent capabilities. See `spec/SKILLS.md` for the full registry and lazy loading mechanism.
104
104
 
105
+ ### Magic Keyword Triggers
106
+
107
+ | Keyword | Skill | Purpose |
108
+ |---------|-------|---------|
109
+ | `autopilot:` / `/autopilot` | `autopilot` | Autonomous end-to-end execution |
110
+ | `ralph:` / `/ralph` | `ralph` | Self-referential loop until task complete |
111
+ | `ulw:` / `ultrawork:` / `/ulw` | `ultrawork` | Parallel high-throughput execution |
112
+ | `team:` / `/team` | `team` | Multi-agent session on shared task list |
113
+ | `eco:` / `ecomode:` / `/eco` | `ecomode` | Token budget mode |
114
+ | `swarm:` / `/swarm` | `swarm` | Swarm orchestration with shared state |
115
+ | `pipeline:` / `/pipeline` | `pipeline` | Sequential phase-ordered pipeline |
116
+ | `plan:` / `/plan` | `omp-plan` | Strategic planning with interview workflow |
117
+ | `ralplan:` | `ralplan` | Consensus planning entrypoint; gates vague ralph/autopilot/team requests |
118
+ | `deslop` | `ai-slop-cleaner` | Clean AI-generated code slop; regression-safe, deletion-first |
119
+ | `tdd:` | `tdd` | Test-driven development workflow |
120
+ | `autoresearch:` | `research` | External research via parallel document-specialist agents |
121
+
105
122
  ## Plugin Integration
106
123
 
107
- OMP is a GitHub Copilot CLI plugin. Plugin manifest, discovery paths, and cross-compatibility are defined in `spec/PLUGIN.md`.
124
+ OMP is a GitHub Copilot CLI plugin. Plugin manifest, discovery paths, and cross-compatibility are defined in `spec/PLUGIN.md`.
125
+ <!-- ai-sdlc-init:start -->
126
+
127
+ ## AI SDLC Methodology
128
+
129
+ This repository uses the AI SDLC methodology scaffolded by `ai-sdlc-init`.
130
+
131
+ ### Architecture Decision Records
132
+
133
+ Significant architectural decisions are recorded in [`docs/adr/`](docs/adr/).
134
+ Before making a change that affects module boundaries, API contracts, data
135
+ schemas, or dependency direction, check whether a relevant ADR exists.
136
+ If your change contradicts an existing ADR, either update the ADR or open a
137
+ discussion before proceeding.
138
+
139
+ ### Archgate Rules
140
+
141
+ Code quality rules are defined in [`.rules.ts`](.rules.ts) across five domains:
142
+ `backend`, `frontend`, `data`, `architecture`, `general`. Rules carry a severity
143
+ (`error`, `warn`, `info`). Structural validation of `.rules.ts` runs in CI via
144
+ the `validate-rules` prek hook. Semantic enforcement (did the PR violate a rule?)
145
+ is an agent behavior at PR review time.
146
+
147
+ ### Karpathy Baseline
148
+
149
+ All agents operating in this repository load
150
+ [`.agents/skills/karpathy-guidelines/SKILL.md`](.agents/skills/karpathy-guidelines/SKILL.md)
151
+ as a baseline. Four rules apply to every task: Think Before Coding, Simplicity
152
+ First, Surgical Changes, Goal-Driven Execution. See the SKILL.md for violation
153
+ and correction examples.
154
+
155
+ ### Drift Verification Protocol
156
+
157
+ At PR review time, the reviewing agent:
158
+ 1. Loads the PR diff alongside the BRD, PRD, acceptance criteria, and any ADRs
159
+ whose scope overlaps with the changed files.
160
+ 2. Produces a drift report identifying whether changes match ACs, conflict with
161
+ ADRs, or violate architectural constraints from `.rules.ts`.
162
+ 3. Leaves the drift report as a PR comment or review summary.
163
+
164
+ This is a documented agent behavior. It is not enforced as a CI gate in this
165
+ iteration.
166
+
167
+ ### Circuit Breaker Protocol
168
+
169
+ Before starting work on an issue:
170
+ 1. Check whether ≥ 3 prior attempts exist without resolution (look for
171
+ `attempts:N` labels or a comment history showing repeated failures).
172
+ 2. If the circuit is tripped (≥ 3 attempts, no resolution), escalate to a
173
+ human with a written summary of what was tried and what blocked each attempt.
174
+ 3. Do not make a fourth attempt without human acknowledgement.
175
+
176
+ <!-- ai-sdlc-init:end -->
package/CHANGELOG.md CHANGED
@@ -1,13 +1,200 @@
1
1
  # Changelog
2
2
 
3
3
  All notable changes to **oh-my-githubcopilot** are documented here, ordered newest first.
4
- Each section corresponds to commits between conceptual version boundaries (no git tags exist yet — the CI pipeline introduced in v1.2.x will tag future releases automatically).
4
+
5
+ ---
6
+
7
+ ## oh-my-githubcopilot v1.7.0 — 2026-04-21
8
+
9
+ ### Features
10
+
11
+ - **vscode-omp**: Add VS Code extension for real-time workflow/agent visualization
12
+ - Workflows, Agents, Tasks panels in the activity bar
13
+ - StateReader interface with OmpStateAdapter (reads `.omc/state/*-state.json` and `subagent-tracking.json`)
14
+ - 200ms debounced FileSystemWatcher — prevents UI thrashing during heavy execution
15
+ - Live status bar showing active workflow count and running agents
16
+ - MCP server provider registration
17
+
18
+ ---
19
+
20
+ ## oh-my-githubcopilot v1.6.0 — 2026-04-21
21
+
22
+ ### Features
23
+
24
+ - **14 new skills — 25 → 39 total** — ported and adapted from oh-my-claudecode and oh-my-auggie:
25
+ - `ralplan` — consensus planning mode via `omp-plan --consensus`; triggers `/omp:ralplan`
26
+ - `research` — autonomous autoresearch workflow; triggers `/omp:research`
27
+ - `omp-doctor` — OMP installation diagnostics; triggers `/omp:omp-doctor`
28
+ - `omp-reference` — internal agent catalog (non-invocable)
29
+ - `ai-slop-cleaner` — AI-slop detection and prose cleanup; triggers `deslop`
30
+ - `tdd` — Red-Green-Refactor TDD workflow; triggers `/omp:tdd`
31
+ - `improve-codebase-architecture` — architecture improvement advisor; triggers `/omp:improve-codebase-architecture`
32
+ - `skillify` — convert ad-hoc prompts into reusable skills; triggers `/omp:skillify`
33
+ - `interview` — short-form interview mode (distinct from `deep-interview`); triggers `interview:`
34
+ - `graph-context` — auto-injected knowledge-graph context (non-user-triggered)
35
+ - `interactive-menu` — numbered-choice conversational TUI pattern (non-user-triggered)
36
+ - `notifications` — runtime notification delivery (distinct from `configure-notifications`); triggers `notifications:`
37
+ - `doctor` — general Socratic root-cause analysis (distinct from `omp-doctor`); triggers `doctor:`
38
+ - `session` — worktree/tmux session lifecycle management (distinct from `psm`); triggers `session:`
39
+ - **`omp-plan` extended with consensus mode** — `--consensus` flag added; Planner→Architect→Critic loop (max 5 iterations)
40
+
41
+ ### Fixes
42
+
43
+ - **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`
44
+ - **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
45
+
46
+ ### CI / Release
47
+
48
+ - **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
49
+
50
+ ### Verification
51
+
52
+ - All 849 tests pass (1 integration test intentionally skipped)
53
+ - Coverage: statements 87.89% / branches 85.49% / functions 94.64% — all above 80% threshold
54
+ - Build, typecheck, and archgate check all pass
55
+
56
+ ## [1.5.9] — 2026-04-17
57
+
58
+ ### Features
59
+
60
+ - **OMP CLI auto-update prompt** — added a launch-time npm update check for `omp` with OMX-style guardrails:
61
+ - interactive TTY only
62
+ - non-fatal failures
63
+ - 12-hour TTL cache at `~/.omp/state/update-check.json`
64
+ - disable via `OMP_AUTO_UPDATE=0` or `OMP_DISABLE_UPDATE_CHECK=true`
65
+ - prompt suppression for low-value commands (for example `omp version`)
66
+ - **CLI front door wiring** — `src/index.mts` now invokes the update checker before command execution and treats
67
+ `--version` as the `version` command.
68
+
69
+ ### Verification
70
+
71
+ - **CLI coverage expanded** — added dedicated update-flow tests under `tests/cli/update.test.mts` and extended
72
+ `tests/cli/index.test.mts` to assert update-check integration at the command entrypoint.
73
+
74
+ ## [1.5.8] — 2026-04-16
75
+
76
+ ### Improved
77
+ - Raised test coverage across hooks, mcp, and psm modules
78
+ - Branch coverage: 80.65% → 85.65% (+5pp above 80% threshold)
79
+ - Statement coverage: 89.35% → 93.95%; Function coverage: 93.65% → 95.23%
80
+ - New test files: stop-continuation, token-tracker (hooks), memory-store, state-manager (mcp), session, worktree (psm)
81
+
82
+ ## [v1.5.7] — Release readiness refresh
83
+
84
+ ### Release readiness
85
+
86
+ - **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.
87
+ - **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.
88
+
89
+ ### Verification
90
+
91
+ - **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%`).
92
+
93
+ ## [v1.5.6] — HUD watch daemon and model/budget fixes
94
+
95
+ ### Features
96
+
97
+ - **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.
98
+
99
+ ### Fixes
100
+
101
+ - **HUD model fallback** — corrected default model fallback from `claude-sonnet-4.5` to `claude-sonnet-4.6`.
102
+ - **HUD token budget** — token budget is now resolved per-model from the `MODEL_CONTEXTS` map instead of using a fixed constant.
103
+ - **HUD premium requests total** — total premium request count is now configurable via the `OMP_PREMIUM_REQUESTS_TOTAL` environment variable.
104
+ - **HUD skills total** — `skillsTotal` corrected from 21 to 25, matching the actual number of shipped skills.
105
+ - **Model router advisory** — updated the model-router advisory string to reference `claude-sonnet-4.6`.
106
+ - **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.
107
+
108
+ ### Documentation
109
+
110
+ - **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.
111
+
112
+ ### Verification
113
+
114
+ - **Fresh coverage evidence** — `npm run test:coverage` now reports `89.35%` statements, `80.65%` branches, `93.65%` functions, and `89.35%` lines.
115
+
116
+ ---
117
+
118
+ ## [v1.5.5] — Copilot docs move and release refresh
119
+
120
+ ### Documentation
121
+
122
+ - **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.
123
+ - **Adoption flow updated** — `scripts/omp-adopt.sh` now installs Copilot docs under `.copilot/` while leaving `.github/` focused on workflows, plugin metadata, and hook entrypoints.
124
+
125
+ ### Release readiness
126
+
127
+ - **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.
128
+ - **Release notes refreshed** — changelog and release docs now reflect the `.copilot/` doc boundary and the new release target.
129
+ - **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.
130
+
131
+ ## [v1.5.4] — Experimental Copilot setup and STATUS_LINE integration
132
+
133
+ ### Features
134
+
135
+ - **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.
136
+ - **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.
137
+ - **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.
138
+
139
+ ### Fixes
140
+
141
+ - **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.
142
+ - **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.
143
+
144
+ ### Verification
145
+
146
+ - **Coverage remains above release floor** — fresh coverage evidence remains above the required 80% thresholds: statements `88.26%`, branches `83.98%`, functions `92.4%`.
147
+ - **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.
148
+
149
+ ## [v1.5.3] — Release readiness and CI enforcement
150
+
151
+ ### Fixes
152
+
153
+ - **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.
154
+ - **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.
155
+ - **Claude plugin manifest sync** — normalized `.claude-plugin/plugin.json` to a single version field by re-syncing it from the root `plugin.json`.
156
+
157
+ ### Verification
158
+
159
+ - **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.
160
+ - **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.
161
+
162
+ ### Documentation
163
+
164
+ - **Release process clarified** — `RELEASING.md` now calls out syncing all plugin manifests plus marketplace metadata and choosing the next unreleased semver before tagging.
165
+
166
+ ## [v1.5.0] — Copilot CLI release alignment
167
+
168
+ ### Features
169
+
170
+ - **Copilot-ready agent metadata** — normalized `src/agents/*.md` frontmatter for Copilot-compatible agent loading fields while preserving the existing prompt bodies.
171
+ - **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.
172
+ - **README quick start refresh** — replaced the install flow with `copilot plugin install ...`, `/omp:setup`, and first-run Copilot commands.
173
+
174
+ ### Fixes
175
+
176
+ - **Version sync to `1.5.0`** — aligned `package.json`, `package-lock.json`, root/plugin manifests, and marketplace metadata on the release target.
177
+ - **Plugin manifest agent path** — `.github/plugin/plugin.json` now points at `./agents` so the manifest matches the Copilot-facing agent bundle.
178
+ - **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.
179
+
180
+ ### Documentation
181
+
182
+ - **Release expectations clarified** — release docs now call out the committed `dist/` expectation for plugin consumers.
183
+
184
+ ---
185
+
186
+ ## [v1.4.2] — Dynamic version in HUD emitter
187
+
188
+ ### Fixes
189
+
190
+ - **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
5
191
 
6
192
  ---
7
193
 
8
194
  ## [v1.4.1] — CLI shebang fix, dynamic version
9
195
 
10
196
  ### Fixes
197
+
11
198
  - **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`)
12
199
  - **Dynamic version** — `omp version` now reads name and version from `package.json` at runtime via `createRequire`; no more hardcoded version string in source (`550b764`)
13
200
 
@@ -16,10 +203,12 @@ Each section corresponds to commits between conceptual version boundaries (no gi
16
203
  ## [v1.4.0] — Package renamed to oh-my-githubcopilot
17
204
 
18
205
  ### Breaking Changes
206
+
19
207
  - **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`
20
208
  - **Repository moved** — git remote updated to `git@github.com:r3dlex/oh-my-githubcopilot.git`
21
209
 
22
210
  ### Changes
211
+
23
212
  - All source files, tests, specs, docs, and manifests updated to reflect the new package name
24
213
  - MCP server identity updated to `oh-my-githubcopilot`
25
214
  - All 11 localized READMEs, archgate ADRs, and release docs updated
@@ -32,16 +221,19 @@ Each section corresponds to commits between conceptual version boundaries (no gi
32
221
  Commits: `fd366e6`…`a26f673`
33
222
 
34
223
  ### Features
224
+
35
225
  - **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`)
36
226
  - **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`)
37
227
  - **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`)
38
228
 
39
229
  ### Fixes
230
+
40
231
  - **Workflow parse error** — replaced `secrets.NPM_TOKEN != ''` in step `if:` conditions with a dedicated check step outputting `available=true/false` (`e82e807`)
41
232
  - **Version-agnostic plugin test assertions** — `plugin-install.test.mts` now reads version from `packageJson().version`; `marketplace.json` metadata.version synced (`7f99f14`)
42
233
  - **Stale agent/skill counts** — JSON descriptors and e2e tests corrected to 23 agents / 25 skills (`74c5122`)
43
234
 
44
235
  ### Documentation
236
+
45
237
  - **CHANGELOG rewritten** — entries now derived from actual git log commit ranges per version (`a26f673`)
46
238
  - **Agent and skill docs normalized** — all 23 agent descriptors and 25 skill `SKILL.md` files updated to consistent format (`fd366e6`)
47
239
 
@@ -52,6 +244,7 @@ Commits: `fd366e6`…`a26f673`
52
244
  Commits: `a234799`, `feb5e65` (PR #10)
53
245
 
54
246
  ### Features
247
+
55
248
  - **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
56
249
  - **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)
57
250
  - **GraphwikiAdapter** — new `src/graph/graphwiki-adapter.mts` wrapping the `graphwiki` npm CLI (`npm install -g graphwiki`); implements both `GraphBuildable` and `GraphWikiClient`
@@ -61,6 +254,7 @@ Commits: `a234799`, `feb5e65` (PR #10)
61
254
  - **keyword-detector wiring** — 8 new keyword entries: `graphify:`, `graphwiki:`, `graph:`, `spending:`, `/graphify`, `/graphwiki`, `/graph-provider`, `/spending`
62
255
 
63
256
  ### Fixes
257
+
64
258
  - **plugin.json** — removed non-existent `./agents` path from agents array; added `graphify`, `graphwiki`, `graph-provider`, `spending` to skills list (25 skills total)
65
259
  - **gitignore** — untracked `coverage/.tmp`, `.omc/` state files, `devops.md` (`a234799`)
66
260
 
@@ -71,10 +265,12 @@ Commits: `a234799`, `feb5e65` (PR #10)
71
265
  Commits: `ce6f3bd`…`051ac20` (PR #9)
72
266
 
73
267
  ### Features
268
+
74
269
  - **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`
75
270
  - **CLI elicitation support** — expanded OMP setup wizard to handle interactive CLI prompts during MCP config generation
76
271
 
77
272
  ### Fixes
273
+
78
274
  - **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`)
79
275
  - **CI: vitest hanging** — added `< /dev/null` stdin redirect and `timeout 120` to prevent vitest blocking indefinitely in non-TTY environments (`fa9fdfb`)
80
276
  - **CI: vitest `--forceExit`** — added flag to ensure process exits after tests complete in CI (`c88c2c7`)
@@ -91,6 +287,7 @@ Commits: `804fc37`…`0f96d48` (initial implementation + `6ee243f` rename)
91
287
  Initial release of **oh-my-githubcopilot (OMP)** — a multi-agent orchestration plugin for GitHub Copilot CLI.
92
288
 
93
289
  ### Features
290
+
94
291
  - **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
95
292
  - **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`
96
293
  - **6 hooks**: `keyword-detector`, `delegation-enforcer`, `model-router`, `token-tracker`, `hud-emitter`, `stop-continuation`
@@ -104,6 +301,7 @@ Initial release of **oh-my-githubcopilot (OMP)** — a multi-agent orchestration
104
301
  - **OMP rename** — project renamed from `oh-my-claudecode (OMC)` to `oh-my-githubcopilot (OMP)` targeting GitHub Copilot CLI (`6ee243f`)
105
302
 
106
303
  ### Documentation
304
+
107
305
  - `AGENTS.md` — agent registry and delegation rules
108
306
  - `CLAUDE.md` — project instructions and quick reference
109
307
  - `SECURITY.md` — vulnerability reporting policy
package/README.de.md CHANGED
@@ -1,53 +1,139 @@
1
- [English](README.md) | [Deutsch](README.de.md) | [Español](README.es.md) | [Français](README.fr.md) | [Italiano](README.it.md) | [日本語](README.ja.md) | [한국어](README.ko.md) | [Português](README.pt.md) | [Русский](README.ru.md) | [Türkçe](README.tr.md) | [Tiếng Việt](README.vi.md) | [中文](README.zh.md)
1
+ # oh-my-githubcopilot (omp)
2
2
 
3
- # oh-my-githubcopilot
4
- <p align="center">
5
- <img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
6
- </p>
3
+ > **Sister projects:** [oh-my-claudecode (OMC)](https://github.com/Yeachan-Heo/oh-my-claudecode) | [oh-my-codex (OMX)](https://github.com/Yeachan-Heo/oh-my-codex) | [oh-my-githubcopilot (OMP)](https://github.com/r3dlex/oh-my-githubcopilot) | [oh-my-gemini (OMG)](https://github.com/r3dlex/oh-my-gemini) | [oh-my-auggie (OMA)](https://github.com/r3dlex/oh-my-auggie)
7
4
 
8
- [![npm version](https://img.shields.io/npm/v/oh-my-githubcopilot?color=cb3837)](https://www.npmjs.com/package/oh-my-githubcopilot)
9
- [![npm downloads](https://img.shields.io/npm/dm/oh-my-githubcopilot?color=blue)](https://www.npmjs.com/package/oh-my-githubcopilot)
10
- [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
5
+ **Multi-Agent-Orchestrierung für GitHub Copilot CLI. Keine Lernkurve.**
11
6
 
12
- **Oh-My-Copilot (OMP)** ist ein Plugin und eine Erweiterung fuer GitHub Copilot, das moderne Workflow-Orchestrierung und agentische KI-Faehigkeiten auf Copilot aufsetzt.
7
+ _Lerne nicht GitHub Copilot CLI. Nutze einfach omp._
8
+
9
+ [Get Started](#quick-start) • [CLI Reference](#cli-reference) • [Workflows](#workflows) • [Discord](https://discord.gg/PUwSMR9XNk)
13
10
 
14
11
  ---
15
12
 
13
+ ## Warum omp?
14
+
15
+ Jedes Softwareteam jongliert gleichzeitig mit Implementierung, Architektur, Sicherheitsprüfung, Tests und DevOps. omp orchestriert spezialisierte Agenten, damit jede Dimension parallel fachkundige Aufmerksamkeit erhält — ohne dass du die Katzen hüten musst.
16
+
17
+ GitHub Copilot ist bereits der Ort, an dem viele Entwickler um Hilfe bitten; omp macht daraus ein koordiniertes Engineering-Team. Es bündelt Copilot-Agenten, Skills, Hooks, MCP-Setup und HUD-Zustand in einem vorhersehbaren Workflow, damit du vom Prompt zur verifizierten Lieferung kommst, ohne die Orchestrierung von Hand zu verdrahten.
18
+
19
+ ---
20
+
21
+ <a id="quick-start"></a>
16
22
  ## Schnellstart
17
23
 
18
24
  ```bash
19
- # Installation
20
25
  npm install -g oh-my-githubcopilot
26
+ omp setup --scope project
27
+ omp
28
+ ```
21
29
 
22
- # Konfiguration
23
- omp setup
30
+ Starte deine CLI nach dem Setup neu, damit die `/`-Befehle erscheinen.
31
+
32
+ ```bash
33
+ omp doctor # check prerequisites
34
+ omp team run --task "..." --workers 2 # parallel work
35
+ omp hud --watch # live status
24
36
  ```
25
- <p align="center">
26
- <img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
27
- </p>
28
37
 
29
- <p align="center">
30
- <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
31
- </p>
32
38
  ---
33
39
 
34
40
  ## Funktionen
35
41
 
36
- - **Multi-Agent-Orchestrierung** - 18 spezialisierte Agenten fuer verschiedene Aufgaben
37
- - **MCP-Server-Integration** - Verbindung zu externen Diensten und Tools
38
- - **HUD-Anzeige** - Echtzeit-Status und Kontextverfolgung
39
- - **Plugin-State-Manager** - Zuverlaessiger Zustand ueber Sitzungen hinweg
40
- - **30+ Skills** - Lazare Komponenten fuer erweitere Funktionalitaet
42
+ | Feature | Description |
43
+ |---------|-------------|
44
+ | **Specialized Agents** | 23+ agents (analyst, architect, executor, debugger, critic, verifier, test-engineer, writer, and more) |
45
+ | **Parallel Team Mode** | tmux-based multi-worker orchestration with shared task state |
46
+ | **Workflow Skills** | 39 skills built in — plan, deep-interview, ralph, autopilot, ultrawork, code-review, and more |
47
+ | **Persistent Hooks** | Automatic tool tracking, project memory, session management |
48
+ | **Real-time HUD** | Live status overlay showing agents, costs, and progress |
49
+ | **CI/CD Ready** | Verification gates, test integration, release workflows |
50
+ | **Multilingual** | README in 12 languages |
51
+
52
+ ---
53
+
54
+ <a id="cli-reference"></a>
55
+ ## CLI-Referenz
56
+
57
+ | Command | Description |
58
+ |---------|-------------|
59
+ | `omp` | Launch interactive session |
60
+ | `omp setup` | Configure GitHub Copilot CLI integration |
61
+ | `omp doctor` | Check prerequisites and fix issues |
62
+ | `omp team run` | Start parallel team execution |
63
+ | `omp team status` | Check team progress |
64
+ | `omp hud --watch` | Show live status overlay |
65
+ | `omp trace` | Show execution trace |
66
+
67
+ See the [full documentation](https://github.com/r3dlex/oh-my-githubcopilot#readme) for all commands.
68
+
69
+ ---
70
+
71
+ <a id="workflows"></a>
72
+ ## Workflows
73
+
74
+ omp ships execution-mode and planning-mode workflows as built-in skills.
75
+
76
+ ### Execution Modes
77
+
78
+ | Skill | Purpose |
79
+ |-------|---------|
80
+ | `$autopilot` | Idea → working code end-to-end |
81
+ | `$team` | N coordinated agents on a shared task |
82
+ | `$ralph` | Persistent completion loop until verified |
83
+ | `$ultrawork` | Maximum parallel throughput execution |
84
+ | `$ultraqa` | QA cycling until goals are met |
85
+
86
+ ### Planning Modes
87
+
88
+ | Skill | Purpose |
89
+ |-------|---------|
90
+ | `$plan` | Strategic planning with optional interviews |
91
+ | `$deep-interview` | Socratic clarification before execution |
92
+ | `$ralplan` | Consensus planning with Architect + Critic review |
93
+
94
+ ### Utility Modes
95
+
96
+ | Skill | Purpose |
97
+ |-------|---------|
98
+ | `$code-review` | Comprehensive code review |
99
+ | `$security-review` | Security audit |
100
+ | `$doctor` | Diagnose and fix installation issues |
101
+ | `$trace` | Agent flow trace and summary |
102
+ | `$note` | Save session notes |
103
+ | `$wiki` | Persistent project wiki |
104
+
105
+ ---
106
+
107
+ ## Team-Modus
108
+
109
+ tmux-first multi-worker orchestration with persistent state and lifecycle controls.
110
+
111
+ ```bash
112
+ omp team run --task "review src/ for reliability gaps" --workers 4
113
+ omp team status --team omp --json
114
+ omp team resume --team omp
115
+ omp team shutdown --team omp --force
116
+ ```
117
+
118
+ Für GitHub Copilot CLI hält Team-Modus die Agenten- und Skill-Assets unter `.copilot/` synchron, während Terminal-Worker sich über langlebigen OMX/OMP-Zustand koordinieren. Nutze ihn, wenn eine Copilot-Aufgabe getrennte Implementierungs-, Prüf-, Dokumentations- oder Release-Lanes braucht und jede Lane Evidenz melden soll, bevor der Branch weiterläuft.
41
119
 
42
120
  ---
43
121
 
44
122
  ## Dokumentation
45
123
 
46
- - [AGENTS.md](./AGENTS.md) - Agent-Registrierung und Delegationsregeln
47
- - [spec/](./spec/) - Komponenten-Spezifikationen
124
+ - [Full Documentation](https://github.com/r3dlex/oh-my-githubcopilot#readme)
125
+ - [GitHub Repository](https://github.com/r3dlex/oh-my-githubcopilot)
126
+ - [Issues](https://github.com/r3dlex/oh-my-githubcopilot/issues)
127
+ - [Security Policy](https://github.com/r3dlex/oh-my-githubcopilot/security)
48
128
 
49
129
  ---
50
130
 
51
131
  ## Lizenz
52
132
 
53
- MIT
133
+ omp is open source under the [Apache-2.0 License](LICENSE).
134
+
135
+ ---
136
+
137
+ ## Sponsoren
138
+
139
+ If omp saves you time, consider [sponsoring the project](https://github.com/sponsors/r3dlex) ❤️