oh-my-githubcopilot 1.4.0
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 +41 -0
- package/AGENTS.md +107 -0
- package/CHANGELOG.md +104 -0
- package/LICENSE +190 -0
- package/README.de.md +53 -0
- package/README.es.md +53 -0
- package/README.fr.md +53 -0
- package/README.it.md +53 -0
- package/README.ja.md +53 -0
- package/README.ko.md +53 -0
- package/README.md +139 -0
- package/README.pt.md +53 -0
- package/README.ru.md +53 -0
- package/README.tr.md +53 -0
- package/README.vi.md +53 -0
- package/README.zh.md +53 -0
- package/bin/omp.mjs +59 -0
- package/bin/omp.mjs.map +7 -0
- package/dist/hooks/delegation-enforcer.mjs +96 -0
- package/dist/hooks/delegation-enforcer.mjs.map +7 -0
- package/dist/hooks/hud-emitter.mjs +167 -0
- package/dist/hooks/hud-emitter.mjs.map +7 -0
- package/dist/hooks/keyword-detector.mjs +134 -0
- package/dist/hooks/keyword-detector.mjs.map +7 -0
- package/dist/hooks/model-router.mjs +79 -0
- package/dist/hooks/model-router.mjs.map +7 -0
- package/dist/hooks/stop-continuation.mjs +83 -0
- package/dist/hooks/stop-continuation.mjs.map +7 -0
- package/dist/hooks/token-tracker.mjs +181 -0
- package/dist/hooks/token-tracker.mjs.map +7 -0
- package/dist/mcp/server.mjs +28492 -0
- package/dist/mcp/server.mjs.map +7 -0
- package/dist/skills/mcp-setup.mjs +42 -0
- package/dist/skills/mcp-setup.mjs.map +7 -0
- package/dist/skills/setup.mjs +38 -0
- package/dist/skills/setup.mjs.map +7 -0
- package/hooks/hooks.json +47 -0
- package/package.json +70 -0
- package/skills/autopilot/SKILL.md +35 -0
- package/skills/configure-notifications/SKILL.md +35 -0
- package/skills/deep-interview/SKILL.md +35 -0
- package/skills/ecomode/SKILL.md +35 -0
- package/skills/graph-provider/SKILL.md +77 -0
- package/skills/graphify/SKILL.md +51 -0
- package/skills/graphwiki/SKILL.md +66 -0
- package/skills/hud/SKILL.md +35 -0
- package/skills/learner/SKILL.md +35 -0
- package/skills/mcp-setup/SKILL.md +34 -0
- package/skills/note/SKILL.md +35 -0
- package/skills/omp-plan/SKILL.md +35 -0
- package/skills/omp-setup/SKILL.md +37 -0
- package/skills/pipeline/SKILL.md +35 -0
- package/skills/psm/SKILL.md +35 -0
- package/skills/ralph/SKILL.md +35 -0
- package/skills/release/SKILL.md +35 -0
- package/skills/setup/SKILL.md +43 -0
- package/skills/spending/SKILL.md +86 -0
- package/skills/swarm/SKILL.md +35 -0
- package/skills/swe-bench/SKILL.md +35 -0
- package/skills/team/SKILL.md +35 -0
- package/skills/trace/SKILL.md +35 -0
- package/skills/ultrawork/SKILL.md +35 -0
- package/skills/wiki/SKILL.md +35 -0
- package/src/agents/analyst.md +103 -0
- package/src/agents/architect.md +169 -0
- package/src/agents/code-reviewer.md +135 -0
- package/src/agents/critic.md +196 -0
- package/src/agents/debugger.md +132 -0
- package/src/agents/designer.md +103 -0
- package/src/agents/document-specialist.md +111 -0
- package/src/agents/executor.md +120 -0
- package/src/agents/explorer.md +98 -0
- package/src/agents/git-master.md +92 -0
- package/src/agents/orchestrator.md +125 -0
- package/src/agents/planner.md +106 -0
- package/src/agents/qa-tester.md +129 -0
- package/src/agents/researcher.md +102 -0
- package/src/agents/reviewer.md +100 -0
- package/src/agents/scientist.md +150 -0
- package/src/agents/security-reviewer.md +132 -0
- package/src/agents/simplifier.md +109 -0
- package/src/agents/test-engineer.md +124 -0
- package/src/agents/tester.md +102 -0
- package/src/agents/tracer.md +160 -0
- package/src/agents/verifier.md +100 -0
- package/src/agents/writer.md +96 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"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.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "r3dlex"
|
|
7
|
+
},
|
|
8
|
+
"repository": "https://github.com/r3dlex/oh-my-githubcopilot",
|
|
9
|
+
"license": "Apache-2.0",
|
|
10
|
+
"keywords": ["orchestration", "multi-agent", "autopilot", "swe-bench", "hud"],
|
|
11
|
+
"agents": ["./src/agents"],
|
|
12
|
+
"skills": [
|
|
13
|
+
"./skills/autopilot",
|
|
14
|
+
"./skills/ralph",
|
|
15
|
+
"./skills/ultrawork",
|
|
16
|
+
"./skills/team",
|
|
17
|
+
"./skills/ecomode",
|
|
18
|
+
"./skills/swarm",
|
|
19
|
+
"./skills/pipeline",
|
|
20
|
+
"./skills/deep-interview",
|
|
21
|
+
"./skills/omp-plan",
|
|
22
|
+
"./skills/omp-setup",
|
|
23
|
+
"./skills/hud",
|
|
24
|
+
"./skills/wiki",
|
|
25
|
+
"./skills/learner",
|
|
26
|
+
"./skills/note",
|
|
27
|
+
"./skills/trace",
|
|
28
|
+
"./skills/release",
|
|
29
|
+
"./skills/configure-notifications",
|
|
30
|
+
"./skills/psm",
|
|
31
|
+
"./skills/swe-bench",
|
|
32
|
+
"./skills/mcp-setup",
|
|
33
|
+
"./skills/setup",
|
|
34
|
+
"./skills/graphify",
|
|
35
|
+
"./skills/graphwiki",
|
|
36
|
+
"./skills/graph-provider",
|
|
37
|
+
"./skills/spending"
|
|
38
|
+
],
|
|
39
|
+
"hooks": "./hooks/hooks.json",
|
|
40
|
+
"mcp": "./.mcp.json"
|
|
41
|
+
}
|
package/AGENTS.md
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# OMP Agent Orchestration
|
|
2
|
+
|
|
3
|
+
This is the orchestration brain for the Oh My Copilot (OMP) plugin. All agents, delegation rules, model routing, and execution modes are defined here.
|
|
4
|
+
|
|
5
|
+
## Orchestrator Role
|
|
6
|
+
|
|
7
|
+
The orchestrator is the top-level coordinator. It:
|
|
8
|
+
- Receives every user request
|
|
9
|
+
- Analyzes scope and chooses the appropriate agent
|
|
10
|
+
- Delegates work, never implements directly
|
|
11
|
+
- Verifies agent output before surfacing to user
|
|
12
|
+
- Enforces delegation rules and model tier selection
|
|
13
|
+
- Tracks context budget and triggers HUD / eco mode as needed
|
|
14
|
+
|
|
15
|
+
The orchestrator **never writes code, docs, or configs directly**. It always delegates to a specialized agent.
|
|
16
|
+
|
|
17
|
+
## Agent Registry (23 Agents)
|
|
18
|
+
|
|
19
|
+
| # | ID | Tier | Tools | Role |
|
|
20
|
+
|---|-----|------|-------|------|
|
|
21
|
+
| 1 | `orchestrator` | high | TaskList, SendMessage, Glob, Grep | Top-level coordinator; never writes |
|
|
22
|
+
| 2 | `explorer` | standard | Glob, Grep, Read | Fast codebase surveys, pattern finding |
|
|
23
|
+
| 3 | `planner` | high | Read, Write, TaskCreate | Architecture, sequencing, risk assessment |
|
|
24
|
+
| 4 | `executor` | standard | Read, Write, Edit, Bash | Implementation, refactoring, complex changes |
|
|
25
|
+
| 5 | `verifier` | standard | Bash, Read, Glob | Testing, diagnostics, evidence collection |
|
|
26
|
+
| 6 | `writer` | standard | Read, Write, Glob | Documentation, README, API docs |
|
|
27
|
+
| 7 | `reviewer` | high | Read, Glob, Grep, LSP | Code review, quality gates |
|
|
28
|
+
| 8 | `designer` | high | WebFetch, Figma tools | UI/UX, design system, Figma integration |
|
|
29
|
+
| 9 | `researcher` | standard | WebSearch, WebFetch | External docs, benchmarking, options analysis |
|
|
30
|
+
| 10 | `tester` | standard | Bash, Read, Write | Test writing, execution, CI integration |
|
|
31
|
+
| 11 | `debugger` | high | Bash, Read, LSP, Grep | Error diagnosis, crash analysis |
|
|
32
|
+
| 12 | `architect` | high | Read, Write, Glob | System design, cross-cutting concerns |
|
|
33
|
+
| 13 | `security-reviewer` | high | Grep, Glob, Read | Vulnerability scanning, dependency audit |
|
|
34
|
+
| 14 | `simplifier` | high | Read, Edit, Grep | Code reuse, quality, efficiency improvements |
|
|
35
|
+
| 15 | `test-engineer` | standard | Bash, Read, Write | Test authoring, coverage analysis |
|
|
36
|
+
| 16 | `critic` | high | Read, Grep, Write | Plan review, gap analysis, improvement suggestions |
|
|
37
|
+
| 17 | `tracer` | high | Bash, Read, Grep | Causal investigation, root cause analysis |
|
|
38
|
+
| 18 | `scientist` | high | Read, Write, Bash | Experimental design, hypothesis testing |
|
|
39
|
+
| 19 | `code-reviewer` | standard | Read, Glob, LSP | PR reviews, style enforcement |
|
|
40
|
+
| 20 | `document-specialist` | standard | Read, Write, Grep | Technical docs, API docs, guides |
|
|
41
|
+
| 21 | `qa-tester` | standard | Bash, Read, Write | QA testing, regression verification |
|
|
42
|
+
| 22 | `git-master` | standard | Bash, Read, Grep | Atomic commits, history management |
|
|
43
|
+
| 23 | `analyst` | high | Read, Grep | Requirements analysis, gap identification |
|
|
44
|
+
|
|
45
|
+
## Delegation Rules
|
|
46
|
+
|
|
47
|
+
Follow this cycle for every request:
|
|
48
|
+
|
|
49
|
+
1. **Analyze** — Understand scope, complexity, and domain. Check existing spec files for context.
|
|
50
|
+
2. **Delegate** — Route to the agent that owns the domain. Use the registry above.
|
|
51
|
+
3. **Verify** — Run diagnostics, test commands, or read outputs to confirm correctness.
|
|
52
|
+
4. **Fix** — If verification fails, send the agent back with targeted feedback. Do not fix it yourself.
|
|
53
|
+
|
|
54
|
+
Never skip verification. Never claim completion without evidence.
|
|
55
|
+
|
|
56
|
+
## Model Selection Guidelines
|
|
57
|
+
|
|
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 |
|
|
63
|
+
|
|
64
|
+
## Execution Mode Handling
|
|
65
|
+
|
|
66
|
+
When an execution mode is active, follow its skill instructions exactly:
|
|
67
|
+
|
|
68
|
+
| Mode | Trigger | Behavior |
|
|
69
|
+
|------|---------|----------|
|
|
70
|
+
| `autopilot` | Magic keyword or `/autopilot:` | Autonomous end-to-end execution. System handles routing. |
|
|
71
|
+
| `ralph` | Magic keyword or `/ralph:` | Self-referential loop with verification. Delegate to verifier agent for evidence. |
|
|
72
|
+
| `ultrawork` | Magic keyword or `/ulw:` | Parallel execution engine. Spawn multiple agents simultaneously. |
|
|
73
|
+
| `team` | Magic keyword or `/team:` | Coordinated multi-agent session on shared task list. |
|
|
74
|
+
| `ecomode` | Magic keyword or `/eco:` | Token budget mode. Prioritize completion over expansion. |
|
|
75
|
+
| `swarm` | Magic keyword or `/swarm:` | Swarm orchestration. Multiple agents with shared state. |
|
|
76
|
+
| `pipeline` | Magic keyword or `/pipeline:` | Sequential pipeline mode. Strict phase ordering. |
|
|
77
|
+
| `plan` | Magic keyword or `/plan:` | Strategic planning. Use planner agent; delay implementation. |
|
|
78
|
+
|
|
79
|
+
## HUD Awareness
|
|
80
|
+
|
|
81
|
+
The HUD (Heads-Up Display) provides real-time context and token budget visibility. The orchestrator must respond to HUD signals:
|
|
82
|
+
|
|
83
|
+
- **Context at 80%+**: Prioritize task completion over exploration. Avoid new subtasks.
|
|
84
|
+
- **Tokens near budget**: Switch to `ecomode`. Surface partial results with clear next steps.
|
|
85
|
+
- **HUD emitter hook**: The `hud-emitter` hook fires on each agent cycle to update HUD state.
|
|
86
|
+
- **Display strategies**: HUD can render via Copilot CLI status, tmux status-right, or file polling. See `spec/HUD.md`.
|
|
87
|
+
|
|
88
|
+
## Hook Awareness
|
|
89
|
+
|
|
90
|
+
Six hooks run on every cycle:
|
|
91
|
+
|
|
92
|
+
1. `keyword-detector` — Detect magic keywords and activate execution modes
|
|
93
|
+
2. `delegation-enforcer` — Ensure orchestrator never writes directly
|
|
94
|
+
3. `model-router` — Apply model tier based on task type and token budget
|
|
95
|
+
4. `token-tracker` — Track context window usage and warn at thresholds
|
|
96
|
+
5. `hud-emitter` — Push state to HUD on each agent cycle
|
|
97
|
+
6. `stop-continuation` — Detect completion signals and stop further generation
|
|
98
|
+
|
|
99
|
+
See `spec/HOOKS.md` for hook schema and registration.
|
|
100
|
+
|
|
101
|
+
## Skill Routing
|
|
102
|
+
|
|
103
|
+
Skills extend agent capabilities. See `spec/SKILLS.md` for the full registry and lazy loading mechanism.
|
|
104
|
+
|
|
105
|
+
## Plugin Integration
|
|
106
|
+
|
|
107
|
+
OMP is a GitHub Copilot CLI plugin. Plugin manifest, discovery paths, and cross-compatibility are defined in `spec/PLUGIN.md`.
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
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).
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## [v1.4.0] — Package renamed to oh-my-githubcopilot
|
|
9
|
+
|
|
10
|
+
### Breaking Changes
|
|
11
|
+
- **Package renamed** — npm package renamed from `oh-my-copilot` to `oh-my-githubcopilot`; GitHub Packages now publishes as `@r3dlex/oh-my-githubcopilot`; install with `npm install oh-my-githubcopilot`
|
|
12
|
+
- **Repository moved** — git remote updated to `git@github.com:r3dlex/oh-my-githubcopilot.git`
|
|
13
|
+
|
|
14
|
+
### Changes
|
|
15
|
+
- All source files, tests, specs, docs, and manifests updated to reflect the new package name
|
|
16
|
+
- MCP server identity updated to `oh-my-githubcopilot`
|
|
17
|
+
- All 11 localized READMEs, archgate ADRs, and release docs updated
|
|
18
|
+
- `bin/omp.mjs` rebuilt with updated package identity
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## [v1.3.0] — Continuous release pipeline, dual-registry publish
|
|
23
|
+
|
|
24
|
+
Commits: `fd366e6`…`a26f673`
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
- **Continuous alpha releases** — every push to `main` publishes `X.Y.Z-alpha.<sha>` to the `alpha` dist-tag; tagged commits (`vX.Y.Z`) publish stable to `latest` (`ec8fffa`)
|
|
28
|
+
- **Hybrid dual-registry publish** — publishes to GitHub Packages (`@r3dlex/oh-my-githubcopilot`) always via `GITHUB_TOKEN`; publishes to npmjs.com (`oh-my-githubcopilot`) when `NPM_TOKEN` secret is configured; graceful skip with notice if absent (`ee42604`)
|
|
29
|
+
- **npm release CI pipeline** — `release.yml` with four jobs: `build` (version resolution + artifact), `test` (CHANGELOG gate for stable only), `publish` (dual-registry), `github-release` (stable only, attaches `.tgz`) (`5a3ae67`)
|
|
30
|
+
|
|
31
|
+
### Fixes
|
|
32
|
+
- **Workflow parse error** — replaced `secrets.NPM_TOKEN != ''` in step `if:` conditions with a dedicated check step outputting `available=true/false` (`e82e807`)
|
|
33
|
+
- **Version-agnostic plugin test assertions** — `plugin-install.test.mts` now reads version from `packageJson().version`; `marketplace.json` metadata.version synced (`7f99f14`)
|
|
34
|
+
- **Stale agent/skill counts** — JSON descriptors and e2e tests corrected to 23 agents / 25 skills (`74c5122`)
|
|
35
|
+
|
|
36
|
+
### Documentation
|
|
37
|
+
- **CHANGELOG rewritten** — entries now derived from actual git log commit ranges per version (`a26f673`)
|
|
38
|
+
- **Agent and skill docs normalized** — all 23 agent descriptors and 25 skill `SKILL.md` files updated to consistent format (`fd366e6`)
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## [v1.2.0] — GraphProvider abstraction, graphwiki adapter, spending skill
|
|
43
|
+
|
|
44
|
+
Commits: `a234799`, `feb5e65` (PR #10)
|
|
45
|
+
|
|
46
|
+
### Features
|
|
47
|
+
- **GraphProvider abstraction** — new `src/graph/` module with `GraphBuildable` and `GraphWikiClient` interfaces; provider resolved from `.omp/config.json` `graph.provider` with local > global > default (`graphwiki`) resolution
|
|
48
|
+
- **GraphifyAdapter** — extracted graphify CLI wrapper from `src/skills/graphify.mts` into `src/graph/graphify-adapter.mts`; graphify skill now delegates to the adapter (public API unchanged)
|
|
49
|
+
- **GraphwikiAdapter** — new `src/graph/graphwiki-adapter.mts` wrapping the `graphwiki` npm CLI (`npm install -g graphwiki`); implements both `GraphBuildable` and `GraphWikiClient`
|
|
50
|
+
- **graphwiki skill** — new `/omp:graphwiki` skill for direct access to graphwiki CLI: `query`, `path`, `lint`, `refine`, `build`, `status`, `clean`
|
|
51
|
+
- **graph-provider skill** — new `/omp:graph-provider` skill for managing the active provider: `get`, `set`, `list`, `build`, `status`, `clean`, `query`
|
|
52
|
+
- **spending skill** — new `/omp:spending` skill exposing `status` and `reset` for premium request usage tracking
|
|
53
|
+
- **keyword-detector wiring** — 8 new keyword entries: `graphify:`, `graphwiki:`, `graph:`, `spending:`, `/graphify`, `/graphwiki`, `/graph-provider`, `/spending`
|
|
54
|
+
|
|
55
|
+
### Fixes
|
|
56
|
+
- **plugin.json** — removed non-existent `./agents` path from agents array; added `graphify`, `graphwiki`, `graph-provider`, `spending` to skills list (25 skills total)
|
|
57
|
+
- **gitignore** — untracked `coverage/.tmp`, `.omc/` state files, `devops.md` (`a234799`)
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## [v1.1.0] — CI hardening, HUD format change
|
|
62
|
+
|
|
63
|
+
Commits: `ce6f3bd`…`051ac20` (PR #9)
|
|
64
|
+
|
|
65
|
+
### Features
|
|
66
|
+
- **HUD format: `tools:N` → `tools:N/M`** — all count fields (tools, skills, agents) now display as used/total (e.g., `tools:12/13`, `skills:5/25`, `agents:3/23`); added `toolsTotal`, `skillsTotal`, `agentsTotal` fields to `HudState` and `HudMetrics`
|
|
67
|
+
- **CLI elicitation support** — expanded OMP setup wizard to handle interactive CLI prompts during MCP config generation
|
|
68
|
+
|
|
69
|
+
### Fixes
|
|
70
|
+
- **CI: zero-install artifact pattern** — build artifact uploaded once in `build` job and downloaded in `test`/`publish` jobs; eliminates redundant `npm install` across CI jobs (`d46f647`)
|
|
71
|
+
- **CI: vitest hanging** — added `< /dev/null` stdin redirect and `timeout 120` to prevent vitest blocking indefinitely in non-TTY environments (`fa9fdfb`)
|
|
72
|
+
- **CI: vitest `--forceExit`** — added flag to ensure process exits after tests complete in CI (`c88c2c7`)
|
|
73
|
+
- **CI: coverage job timeout** — separated coverage into its own job with a 10-minute timeout; tests run without coverage in parallel (`9608b07`)
|
|
74
|
+
- **CI: coverage provider** — removed incompatible `@vitest/coverage-istanbul`; using `@vitest/coverage-v8` exclusively (`ce6f3bd`)
|
|
75
|
+
- **Redundant `root/agents` directory** — removed stale agents directory at repo root; all 23 agents live in `src/agents/` (`8c521c0`)
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## [v1.0.0] — Initial release
|
|
80
|
+
|
|
81
|
+
Commits: `804fc37`…`0f96d48` (initial implementation + `6ee243f` rename)
|
|
82
|
+
|
|
83
|
+
Initial release of **oh-my-githubcopilot (OMP)** — a multi-agent orchestration plugin for GitHub Copilot CLI.
|
|
84
|
+
|
|
85
|
+
### Features
|
|
86
|
+
- **23 specialized agents** via Claude Code subagents: orchestrator, explorer, planner, executor, verifier, writer, reviewer, designer, researcher, tester, debugger, architect, security-reviewer, simplifier, test-engineer, critic, tracer, scientist, code-reviewer, document-specialist, qa-tester, git-master, analyst
|
|
87
|
+
- **22 skills** including: `setup`, `mcp-setup`, `autopilot`, `ralph`, `ultrawork`, `team`, `ecomode`, `swarm`, `pipeline`, `plan`, `omp-plan`, `hud`, `note`, `trace`, `learner`, `swe-bench`, `wiki`, `psm`, `release`, `graphify`, `spending`, `spawn`
|
|
88
|
+
- **6 hooks**: `keyword-detector`, `delegation-enforcer`, `model-router`, `token-tracker`, `hud-emitter`, `stop-continuation`
|
|
89
|
+
- **HUD display system** — real-time session context, token tracking, and agent/skill usage counters in tmux status bar
|
|
90
|
+
- **PSM (Plugin State Manager)** — SQLite-backed cross-session state persistence with fleet-level visibility
|
|
91
|
+
- **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`)
|
|
92
|
+
- **SWE-bench harness** — reproducible benchmark runner for performance evaluation
|
|
93
|
+
- **Double-tiered MCP config** — user-level (`~/.omp/`) and workspace-level (`.omp/`) config with merge resolution
|
|
94
|
+
- **Setup wizard** — `/setup` and `/mcp-setup` skills for frictionless onboarding
|
|
95
|
+
- **ADR governance** — `archgate` CLI integration for architecture decision records (`d38b46d`, `9cc3d09`)
|
|
96
|
+
- **OMP rename** — project renamed from `oh-my-claudecode (OMC)` to `oh-my-githubcopilot (OMP)` targeting GitHub Copilot CLI (`6ee243f`)
|
|
97
|
+
|
|
98
|
+
### Documentation
|
|
99
|
+
- `AGENTS.md` — agent registry and delegation rules
|
|
100
|
+
- `CLAUDE.md` — project instructions and quick reference
|
|
101
|
+
- `SECURITY.md` — vulnerability reporting policy
|
|
102
|
+
- `FUNDING.yml` — GitHub Sponsors link
|
|
103
|
+
- Spec documents: `spec/AGENTS_SPEC.md`, `spec/SKILLS.md`, `spec/HOOKS.md`, `spec/HUD.md`, `spec/PSM.md`, `spec/MCP.md`
|
|
104
|
+
- 11 localized READMEs, SVG logo, buddy screenshots
|
package/LICENSE
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including, but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute
|
|
108
|
+
must include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2026 r3dlex
|
|
179
|
+
|
|
180
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
+
you may not use this file except in compliance with the License.
|
|
182
|
+
You may obtain a copy of the License at
|
|
183
|
+
|
|
184
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
+
|
|
186
|
+
Unless required by applicable law or agreed to in writing, software
|
|
187
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
+
See the License for the specific language governing permissions and
|
|
190
|
+
limitations under the License.
|
package/README.de.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
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)
|
|
2
|
+
|
|
3
|
+
# oh-my-githubcopilot
|
|
4
|
+
<p align="center">
|
|
5
|
+
<img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
[](https://www.npmjs.com/package/oh-my-githubcopilot)
|
|
9
|
+
[](https://www.npmjs.com/package/oh-my-githubcopilot)
|
|
10
|
+
[](https://opensource.org/licenses/MIT)
|
|
11
|
+
|
|
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.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Schnellstart
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
# Installation
|
|
20
|
+
npm install -g oh-my-githubcopilot
|
|
21
|
+
|
|
22
|
+
# Konfiguration
|
|
23
|
+
omp setup
|
|
24
|
+
```
|
|
25
|
+
<p align="center">
|
|
26
|
+
<img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
|
|
27
|
+
</p>
|
|
28
|
+
|
|
29
|
+
<p align="center">
|
|
30
|
+
<img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
|
|
31
|
+
</p>
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Funktionen
|
|
35
|
+
|
|
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
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Dokumentation
|
|
45
|
+
|
|
46
|
+
- [AGENTS.md](./AGENTS.md) - Agent-Registrierung und Delegationsregeln
|
|
47
|
+
- [spec/](./spec/) - Komponenten-Spezifikationen
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Lizenz
|
|
52
|
+
|
|
53
|
+
MIT
|
package/README.es.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
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)
|
|
2
|
+
|
|
3
|
+
# oh-my-githubcopilot
|
|
4
|
+
<p align="center">
|
|
5
|
+
<img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
[](https://www.npmjs.com/package/oh-my-githubcopilot)
|
|
9
|
+
[](https://www.npmjs.com/package/oh-my-githubcopilot)
|
|
10
|
+
[](https://opensource.org/licenses/MIT)
|
|
11
|
+
|
|
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.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Inicio Rapido
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
# Instalacion
|
|
20
|
+
npm install -g oh-my-githubcopilot
|
|
21
|
+
|
|
22
|
+
# Configuracion
|
|
23
|
+
omp setup
|
|
24
|
+
```
|
|
25
|
+
<p align="center">
|
|
26
|
+
<img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
|
|
27
|
+
</p>
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Caracteristicas
|
|
32
|
+
|
|
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
|
|
38
|
+
|
|
39
|
+
<p align="center">
|
|
40
|
+
<img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
|
|
41
|
+
</p>
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Documentacion
|
|
45
|
+
|
|
46
|
+
- [AGENTS.md](./AGENTS.md) - Registro de agentes y reglas de delegacion
|
|
47
|
+
- [spec/](./spec/) - Especificaciones de componentes
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Licencia
|
|
52
|
+
|
|
53
|
+
MIT
|
package/README.fr.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
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)
|
|
2
|
+
|
|
3
|
+
# oh-my-githubcopilot
|
|
4
|
+
<p align="center">
|
|
5
|
+
<img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
[](https://www.npmjs.com/package/oh-my-githubcopilot)
|
|
9
|
+
[](https://www.npmjs.com/package/oh-my-githubcopilot)
|
|
10
|
+
[](https://opensource.org/licenses/MIT)
|
|
11
|
+
|
|
12
|
+
**Oh-My-Copilot (OMP)** est un plugin et une extension pour GitHub Copilot qui ajoute une orchestration de workflow moderne et des capacites d'IA agentique au-dessus de Copilot.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Demarrage Rapide
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
# Installation
|
|
20
|
+
npm install -g oh-my-githubcopilot
|
|
21
|
+
|
|
22
|
+
# Configuration
|
|
23
|
+
omp setup
|
|
24
|
+
```
|
|
25
|
+
<p align="center">
|
|
26
|
+
<img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
|
|
27
|
+
</p>
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Fonctionnalites
|
|
32
|
+
|
|
33
|
+
- **Orchestration Multi-Agent** - 23 agents specialises pour differentes taches
|
|
34
|
+
- **Integration Serveur MCP** - Connexion aux services et outils externes
|
|
35
|
+
- **Affichage HUD** - Suivi de l'etat et du contexte en temps reel
|
|
36
|
+
- **Plugin State Manager** - Etat fiable a travers les sessions
|
|
37
|
+
- **25 Skills** - Chargement paresseux pour les fonctionnalites etendues
|
|
38
|
+
|
|
39
|
+
<p align="center">
|
|
40
|
+
<img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
|
|
41
|
+
</p>
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Documentation
|
|
45
|
+
|
|
46
|
+
- [AGENTS.md](./AGENTS.md) - Registre des agents et regles de delegation
|
|
47
|
+
- [spec/](./spec/) - Specifications des composants
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Licence
|
|
52
|
+
|
|
53
|
+
MIT
|
package/README.it.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
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)
|
|
2
|
+
|
|
3
|
+
# oh-my-githubcopilot
|
|
4
|
+
<p align="center">
|
|
5
|
+
<img src="assets/omp-banner.png" alt="Oh My Copilot" width="100%"/>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
[](https://www.npmjs.com/package/oh-my-githubcopilot)
|
|
9
|
+
[](https://www.npmjs.com/package/oh-my-githubcopilot)
|
|
10
|
+
[](https://opensource.org/licenses/MIT)
|
|
11
|
+
|
|
12
|
+
**Oh-My-Copilot (OMP)** e un plugin e un'estensione per GitHub Copilot che aggiunge orchestrazione moderna dei workflow e capacita di IA agentica sopra Copilot.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Avvio Rapido
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
# Installazione
|
|
20
|
+
npm install -g oh-my-githubcopilot
|
|
21
|
+
|
|
22
|
+
# Configurazione
|
|
23
|
+
omp setup
|
|
24
|
+
```
|
|
25
|
+
<p align="center">
|
|
26
|
+
<img src="assets/buddy-playful.png" alt="OMP in action" width="600"/>
|
|
27
|
+
</p>
|
|
28
|
+
|
|
29
|
+
<p align="center">
|
|
30
|
+
<img src="assets/buddy-swarm.png" alt="OMP swarm mode" width="600"/>
|
|
31
|
+
</p>
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Funzionalita
|
|
35
|
+
|
|
36
|
+
- **Orchestrazione Multi-Agente** - 18 agenti specializzati per diversi compiti
|
|
37
|
+
- **Integrazione Server MCP** - Connessione a servizi e strumenti esterni
|
|
38
|
+
- **Display HUD** - Tracciamento dello stato e del contesto in tempo reale
|
|
39
|
+
- **Plugin State Manager** - Stato affidabile tra le sessioni
|
|
40
|
+
- **30+ Skills** - Caricamento pigro per funzionalita estese
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Documentazione
|
|
45
|
+
|
|
46
|
+
- [AGENTS.md](./AGENTS.md) - Registro degli agenti e regole di delegazione
|
|
47
|
+
- [spec/](./spec/) - Specifiche dei componenti
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Licenza
|
|
52
|
+
|
|
53
|
+
MIT
|