oh-my-githubcopilot 1.5.7 → 1.8.0-alpha.afa30a7

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,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": "1.0",
3
3
  "name": "oh-my-githubcopilot",
4
- "version": "1.5.7",
5
- "description": "Multi-agent orchestration for GitHub Copilot CLI. 23 agents, 25 skills, parallel execution, HUD, PSM, SWE-bench.",
4
+ "version": "1.8.0",
5
+ "description": "Multi-agent orchestration for GitHub Copilot CLI. 23 agents, 39 skills, parallel execution, HUD, PSM, SWE-bench.",
6
6
  "author": {
7
7
  "name": "r3dlex"
8
8
  },
@@ -16,7 +16,9 @@
16
16
  "hud",
17
17
  "copilot-cli"
18
18
  ],
19
- "agents": ["./agents"],
19
+ "agents": [
20
+ "./agents"
21
+ ],
20
22
  "skills": [
21
23
  "./skills/autopilot",
22
24
  "./skills/ralph",
@@ -42,8 +44,28 @@
42
44
  "./skills/graphify",
43
45
  "./skills/graphwiki",
44
46
  "./skills/graph-provider",
45
- "./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"
46
62
  ],
47
63
  "hooks": "./hooks/hooks.json",
48
- "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"
49
71
  }
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
@@ -4,6 +4,98 @@ All notable changes to **oh-my-githubcopilot** are documented here, ordered newe
4
4
 
5
5
  ---
6
6
 
7
+ ## oh-my-githubcopilot v1.8.0 — 2026-05-25
8
+
9
+ ### Features
10
+
11
+ - **Cross-repo sync**: Aligned README template, Star History chart, sponsor links, and badge shields with OMX/OMC/OMA/OMG
12
+ - **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
13
+ - **README updates**: 12 localized README files regenerated from unified template
14
+ - **AI SDLC methodology**: Scaffolded across the repo with Archgate rules, ADR governance, Karpathy guidelines
15
+
16
+ ### Documentation
17
+
18
+ - Updated READMEs across 13 languages (en, de, es, fr, it, ja, ko, pt, ru, tr, vi, zh)
19
+ - Star History chart added for r3dlex/oh-my-githubcopilot
20
+ - Sponsor link updated to github.com/sponsors/r3dlex
21
+
22
+ ---
23
+
24
+ ## oh-my-githubcopilot v1.7.0 — 2026-04-21
25
+
26
+ ### Features
27
+
28
+ - **vscode-omp**: Add VS Code extension for real-time workflow/agent visualization
29
+ - Workflows, Agents, Tasks panels in the activity bar
30
+ - StateReader interface with OmpStateAdapter (reads `.omc/state/*-state.json` and `subagent-tracking.json`)
31
+ - 200ms debounced FileSystemWatcher — prevents UI thrashing during heavy execution
32
+ - Live status bar showing active workflow count and running agents
33
+ - MCP server provider registration
34
+
35
+ ---
36
+
37
+ ## oh-my-githubcopilot v1.6.0 — 2026-04-21
38
+
39
+ ### Features
40
+
41
+ - **14 new skills — 25 → 39 total** — ported and adapted from oh-my-claudecode and oh-my-auggie:
42
+ - `ralplan` — consensus planning mode via `omp-plan --consensus`; triggers `/omp:ralplan`
43
+ - `research` — autonomous autoresearch workflow; triggers `/omp:research`
44
+ - `omp-doctor` — OMP installation diagnostics; triggers `/omp:omp-doctor`
45
+ - `omp-reference` — internal agent catalog (non-invocable)
46
+ - `ai-slop-cleaner` — AI-slop detection and prose cleanup; triggers `deslop`
47
+ - `tdd` — Red-Green-Refactor TDD workflow; triggers `/omp:tdd`
48
+ - `improve-codebase-architecture` — architecture improvement advisor; triggers `/omp:improve-codebase-architecture`
49
+ - `skillify` — convert ad-hoc prompts into reusable skills; triggers `/omp:skillify`
50
+ - `interview` — short-form interview mode (distinct from `deep-interview`); triggers `interview:`
51
+ - `graph-context` — auto-injected knowledge-graph context (non-user-triggered)
52
+ - `interactive-menu` — numbered-choice conversational TUI pattern (non-user-triggered)
53
+ - `notifications` — runtime notification delivery (distinct from `configure-notifications`); triggers `notifications:`
54
+ - `doctor` — general Socratic root-cause analysis (distinct from `omp-doctor`); triggers `doctor:`
55
+ - `session` — worktree/tmux session lifecycle management (distinct from `psm`); triggers `session:`
56
+ - **`omp-plan` extended with consensus mode** — `--consensus` flag added; Planner→Architect→Critic loop (max 5 iterations)
57
+
58
+ ### Fixes
59
+
60
+ - **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`
61
+ - **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
62
+
63
+ ### CI / Release
64
+
65
+ - **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
66
+
67
+ ### Verification
68
+
69
+ - All 849 tests pass (1 integration test intentionally skipped)
70
+ - Coverage: statements 87.89% / branches 85.49% / functions 94.64% — all above 80% threshold
71
+ - Build, typecheck, and archgate check all pass
72
+
73
+ ## [1.5.9] — 2026-04-17
74
+
75
+ ### Features
76
+
77
+ - **OMP CLI auto-update prompt** — added a launch-time npm update check for `omp` with OMX-style guardrails:
78
+ - interactive TTY only
79
+ - non-fatal failures
80
+ - 12-hour TTL cache at `~/.omp/state/update-check.json`
81
+ - disable via `OMP_AUTO_UPDATE=0` or `OMP_DISABLE_UPDATE_CHECK=true`
82
+ - prompt suppression for low-value commands (for example `omp version`)
83
+ - **CLI front door wiring** — `src/index.mts` now invokes the update checker before command execution and treats
84
+ `--version` as the `version` command.
85
+
86
+ ### Verification
87
+
88
+ - **CLI coverage expanded** — added dedicated update-flow tests under `tests/cli/update.test.mts` and extended
89
+ `tests/cli/index.test.mts` to assert update-check integration at the command entrypoint.
90
+
91
+ ## [1.5.8] — 2026-04-16
92
+
93
+ ### Improved
94
+ - Raised test coverage across hooks, mcp, and psm modules
95
+ - Branch coverage: 80.65% → 85.65% (+5pp above 80% threshold)
96
+ - Statement coverage: 89.35% → 93.95%; Function coverage: 93.65% → 95.23%
97
+ - New test files: stop-continuation, token-tracker (hooks), memory-store, state-manager (mcp), session, worktree (psm)
98
+
7
99
  ## [v1.5.7] — Release readiness refresh
8
100
 
9
101
  ### Release readiness
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-antigravity (OMG)](https://github.com/r3dlex/oh-my-antigravity) | [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) ❤️
package/README.es.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-antigravity (OMG)](https://github.com/r3dlex/oh-my-antigravity) | [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
+ **Orquestación multiagente para GitHub Copilot CLI. Sin curva de aprendizaje.**
11
6
 
12
- **Oh-My-Copilot (OMP)** es un plugin y extension para GitHub Copilot que agrega orquestacion moderna de workflows y capacidades de IA agenticas sobre Copilot.
7
+ _No aprendas GitHub Copilot CLI. Solo usa omp._
8
+
9
+ [Get Started](#quick-start) • [CLI Reference](#cli-reference) • [Workflows](#workflows) • [Discord](https://discord.gg/PUwSMR9XNk)
13
10
 
14
11
  ---
15
12
 
16
- ## Inicio Rapido
13
+ ## ¿Por qué omp?
14
+
15
+ Todo equipo de software gestiona implementación, arquitectura, revisión de seguridad, pruebas y DevOps al mismo tiempo. omp orquesta agentes especializados para que cada dimensión reciba atención experta en paralelo, sin que tengas que pastorear gatos.
16
+
17
+ GitHub Copilot ya es el lugar donde muchos desarrolladores piden ayuda; omp convierte esa superficie en un equipo de ingeniería coordinado. Mantiene agentes, habilidades, hooks, configuración MCP y estado HUD para Copilot en un flujo predecible para pasar del prompt a una entrega verificada sin cablear la orquestación a mano.
18
+
19
+ ---
20
+
21
+ <a id="quick-start"></a>
22
+ ## Inicio rápido
17
23
 
18
24
  ```bash
19
- # Instalacion
20
25
  npm install -g oh-my-githubcopilot
26
+ omp setup --scope project
27
+ omp
28
+ ```
21
29
 
22
- # Configuracion
23
- omp setup
30
+ Después del setup, reinicia tu CLI para que aparezcan los comandos `/`.
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
38
  ---
30
39
 
31
- ## Caracteristicas
40
+ ## Funciones
41
+
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
+ ## Referencia CLI
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
+ ## Flujos de trabajo
32
73
 
33
- - **Orquestacion Multi-Agente** - 18 agentes especializados para diferentes tareas
34
- - **Integracion MCP Server** - Conexion a servicios y herramientas externas
35
- - **Pantalla HUD** - Seguimiento de estado y contexto en tiempo real
36
- - **Plugin State Manager** - Estado confiable a traves de sesiones
37
- - **30+ Skills** - Carga diferida para funcionalidad extendida
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
+ ## Modo Team
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
+ Para GitHub Copilot CLI, el modo team mantiene sincronizados los agentes y habilidades de `.copilot/` mientras los workers de terminal se coordinan mediante estado durable OMX/OMP. Úsalo cuando una tarea de Copilot necesite carriles separados de implementación, verificación, documentación o release y quieras evidencia de cada carril antes de avanzar el branch.
38
119
 
39
- <p align="center">
40
- <img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
41
- </p>
42
120
  ---
43
121
 
44
- ## Documentacion
122
+ ## Documentación
45
123
 
46
- - [AGENTS.md](./AGENTS.md) - Registro de agentes y reglas de delegacion
47
- - [spec/](./spec/) - Especificaciones de componentes
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
  ## Licencia
52
132
 
53
- MIT
133
+ omp is open source under the [Apache-2.0 License](LICENSE).
134
+
135
+ ---
136
+
137
+ ## Patrocinadores
138
+
139
+ If omp saves you time, consider [sponsoring the project](https://github.com/sponsors/r3dlex) ❤️