oh-my-githubcopilot 1.8.1 → 2.0.0-alpha.1cd01f4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +23 -3
- package/AGENTS.md +29 -25
- package/CHANGELOG.md +49 -336
- package/README.md +7 -2
- package/agents/code-reviewer.agent.md +5 -0
- package/agents/{simplifier.agent.md → code-simplifier.agent.md} +2 -2
- package/agents/debugger.agent.md +1 -1
- package/agents/document-specialist.agent.md +6 -1
- package/agents/{explorer.agent.md → explore.agent.md} +2 -2
- package/agents/security-reviewer.agent.md +1 -1
- package/agents/test-engineer.agent.md +3 -1
- package/bin/omp-statusline.mjs +12 -11
- package/bin/omp-statusline.mjs.map +2 -2
- package/bin/omp.mjs +885 -42
- package/bin/omp.mjs.map +4 -4
- package/dist/hooks/delegation-enforcer.mjs +65 -13
- package/dist/hooks/delegation-enforcer.mjs.map +4 -4
- package/dist/hooks/hud-emitter.mjs +80 -28
- package/dist/hooks/hud-emitter.mjs.map +4 -4
- package/dist/hooks/keyword-detector.mjs +117 -11
- package/dist/hooks/keyword-detector.mjs.map +4 -4
- package/dist/hooks/model-router.mjs +64 -12
- package/dist/hooks/model-router.mjs.map +4 -4
- package/dist/hooks/stop-continuation.mjs +66 -14
- package/dist/hooks/stop-continuation.mjs.map +4 -4
- package/dist/hooks/token-tracker.mjs +81 -19
- package/dist/hooks/token-tracker.mjs.map +4 -4
- package/dist/mcp/server.mjs +17 -16
- package/dist/mcp/server.mjs.map +2 -2
- package/extension/extension.mjs +659 -0
- package/hooks/hooks.json +6 -6
- package/package.json +3 -2
- package/plugin.json +23 -3
- package/skills/build-fix/SKILL.md +35 -0
- package/skills/cancel/SKILL.md +33 -0
- package/skills/ccg/SKILL.md +37 -0
- package/skills/code-review/SKILL.md +33 -0
- package/skills/deep-dive/SKILL.md +33 -0
- package/skills/deepinit/SKILL.md +33 -0
- package/skills/deepsearch/SKILL.md +33 -0
- package/skills/design/SKILL.md +37 -0
- package/skills/external-context/SKILL.md +33 -0
- package/skills/help/SKILL.md +33 -0
- package/skills/omp-doctor/SKILL.md +23 -1
- package/skills/omp-reference/SKILL.md +20 -24
- package/skills/remember/SKILL.md +39 -0
- package/skills/research/SKILL.md +1 -1
- package/skills/sciomc/SKILL.md +35 -0
- package/skills/security-review/SKILL.md +33 -0
- package/skills/self-improve/SKILL.md +35 -0
- package/skills/ultragoal/SKILL.md +33 -0
- package/skills/ultraqa/SKILL.md +33 -0
- package/skills/verify/SKILL.md +33 -0
- package/skills/visual-verdict/SKILL.md +35 -0
- package/skills/web-clone/SKILL.md +35 -0
- package/skills/writer-memory/SKILL.md +37 -0
- package/agents/orchestrator.agent.md +0 -26
- package/agents/researcher.agent.md +0 -18
- package/agents/reviewer.agent.md +0 -23
- package/agents/tester.agent.md +0 -20
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-githubcopilot",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Multi-agent orchestration for GitHub Copilot CLI.
|
|
3
|
+
"version": "2.0.0-alpha.1cd01f4",
|
|
4
|
+
"description": "Multi-agent orchestration for GitHub Copilot CLI. 19 agents, 59 skills, parallel execution, HUD, PSM, SWE-bench.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "r3dlex"
|
|
7
7
|
},
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"dist/",
|
|
26
26
|
"bin/",
|
|
27
27
|
"agents/",
|
|
28
|
+
"extension/",
|
|
28
29
|
"skills/",
|
|
29
30
|
"hooks/",
|
|
30
31
|
"plugin.json",
|
package/plugin.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0",
|
|
3
3
|
"name": "oh-my-githubcopilot",
|
|
4
|
-
"version": "
|
|
5
|
-
"description": "Multi-agent orchestration for GitHub Copilot CLI.
|
|
4
|
+
"version": "2.0.0",
|
|
5
|
+
"description": "Multi-agent orchestration for GitHub Copilot CLI. 19 agents, 59 skills, parallel execution, HUD, PSM, SWE-bench.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "r3dlex"
|
|
8
8
|
},
|
|
@@ -58,7 +58,27 @@
|
|
|
58
58
|
"./skills/interactive-menu",
|
|
59
59
|
"./skills/notifications",
|
|
60
60
|
"./skills/doctor",
|
|
61
|
-
"./skills/session"
|
|
61
|
+
"./skills/session",
|
|
62
|
+
"./skills/verify",
|
|
63
|
+
"./skills/cancel",
|
|
64
|
+
"./skills/help",
|
|
65
|
+
"./skills/code-review",
|
|
66
|
+
"./skills/security-review",
|
|
67
|
+
"./skills/ultraqa",
|
|
68
|
+
"./skills/ultragoal",
|
|
69
|
+
"./skills/deep-dive",
|
|
70
|
+
"./skills/external-context",
|
|
71
|
+
"./skills/deepsearch",
|
|
72
|
+
"./skills/sciomc",
|
|
73
|
+
"./skills/remember",
|
|
74
|
+
"./skills/writer-memory",
|
|
75
|
+
"./skills/deepinit",
|
|
76
|
+
"./skills/self-improve",
|
|
77
|
+
"./skills/visual-verdict",
|
|
78
|
+
"./skills/ccg",
|
|
79
|
+
"./skills/build-fix",
|
|
80
|
+
"./skills/design",
|
|
81
|
+
"./skills/web-clone"
|
|
62
82
|
],
|
|
63
83
|
"hooks": "./hooks/hooks.json",
|
|
64
84
|
"mcp": "./.mcp.json",
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: build-fix
|
|
3
|
+
description: Diagnose and fix build/CI failures automatically
|
|
4
|
+
trigger: "build-fix:, /build-fix, /omp:build-fix"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Build-Fix
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `build-fix` |
|
|
14
|
+
| **Keywords** | `build-fix:`, `/build-fix` |
|
|
15
|
+
| **Tier** | DevOps Tool |
|
|
16
|
+
| **Source** | `src/skills/build-fix.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Diagnoses and fixes build/CI failures automatically. Reads build logs, identifies root-cause errors, applies targeted source fixes, and re-runs the build in a loop until it passes or the retry budget is exhausted. Supports npm, pnpm, cargo, go, gradle, and custom CI runners.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Extension-only skill. Triggers automated build/CI failure diagnosis and repair in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
|
|
34
|
+
|
|
35
|
+
> **P3 scope:** Cross-repository dependency resolution and remote CI log fetching (as specified in SPEC-omp-2.0 §5) are deferred to P3. The current implementation operates on local build output only.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: cancel
|
|
3
|
+
description: Ends active execution modes and clears .omp/state/
|
|
4
|
+
trigger: "cancel:, /cancel, /omp:cancel"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Cancel
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `cancel` |
|
|
14
|
+
| **Keywords** | `cancel:`, `/cancel` |
|
|
15
|
+
| **Tier** | Execution Mode |
|
|
16
|
+
| **Source** | `src/skills/cancel.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Ends any active execution mode (autopilot, ralph, team, ultrawork, etc.) and clears the `.omp/state/` directory so the next session starts clean. Safe to call at any time — if no session is active the command is a no-op.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Activates the `cancel` mode by spawning `bin/omp.mjs cancel [args]`. The CLI handler removes `.omp/state/` using `fs.rmSync` and prints a confirmation message. No persistent resources are maintained.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ccg
|
|
3
|
+
description: Concurrent code generation via multi-model picker
|
|
4
|
+
trigger: "ccg:, /ccg, /omp:ccg"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: CCG (Concurrent Code Generation)
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `ccg` |
|
|
14
|
+
| **Keywords** | `ccg:`, `/ccg` |
|
|
15
|
+
| **Tier** | Generation Tool |
|
|
16
|
+
| **Source** | `src/skills/ccg.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Runs concurrent code generation across multiple models via a multi-model picker. Dispatches the same prompt to N configured models in parallel, collects results, and presents a ranked selection for the user to choose from or merge.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Extension-only skill. Triggers concurrent code generation in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
|
|
34
|
+
|
|
35
|
+
> **Constraint:** Uses Copilot's built-in multi-model picker **exclusively**. Does NOT invoke Claude CLI, GPT CLI, or Gemini CLI subprocesses. External CLI orchestration is out of scope for this skill.
|
|
36
|
+
|
|
37
|
+
> **P3 scope:** Automatic result merging and consensus scoring across models (as specified in SPEC-omp-2.0 §3) are deferred to P3. The current implementation presents ranked results for manual selection.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: code-review
|
|
3
|
+
description: Trigger the code-reviewer agent lane for structured code review
|
|
4
|
+
trigger: "code-review:, /code-review, /omp:code-review"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Code Review
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `code-review` |
|
|
14
|
+
| **Keywords** | `code-review:`, `/code-review` |
|
|
15
|
+
| **Tier** | Developer Tool |
|
|
16
|
+
| **Source** | `src/skills/code-review.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Triggers the code-reviewer agent lane for structured, evidence-based code review. Reviews changed files for correctness, style, maintainability, and adherence to project conventions. Produces a structured report with inline comments and severity ratings.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Activates the `code-review` orchestration mode by spawning `bin/omp.mjs code-review [args]`. Delegates to the `@code-reviewer` agent for structured review. No persistent resources are maintained.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: deep-dive
|
|
3
|
+
description: Trace→deep-interview pipeline for deep investigation
|
|
4
|
+
trigger: "deep-dive:, /deep-dive, /omp:deep-dive"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Deep Dive
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `deep-dive` |
|
|
14
|
+
| **Keywords** | `deep-dive:`, `/deep-dive` |
|
|
15
|
+
| **Tier** | Planning Tool |
|
|
16
|
+
| **Source** | `src/skills/deep-dive.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Chains the `trace` and `deep-interview` skills into a single pipeline for thorough investigation. First traces execution paths and code flow, then conducts a Socratic deep-interview to surface assumptions, edge cases, and ambiguities. Ideal for complex debugging sessions, architecture reviews, and unfamiliar codebases.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Extension-only skill. Triggers a trace→deep-interview chained pipeline in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: deepinit
|
|
3
|
+
description: Deep project initialization — full codebase onboarding
|
|
4
|
+
trigger: "deepinit:, /deepinit, /omp:deepinit"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Deep Init
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `deepinit` |
|
|
14
|
+
| **Keywords** | `deepinit:`, `/deepinit` |
|
|
15
|
+
| **Tier** | Initialization Tool |
|
|
16
|
+
| **Source** | `src/skills/deepinit.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Performs a deep project initialization and full codebase onboarding. Scans the repository structure, reads key configuration files (package.json, tsconfig, CI/CD pipelines, test config), identifies agent roles, detects the tech stack, and writes a comprehensive `.omp/project-memory.json` summary. Subsequent agents and skills use this context to operate without re-scanning from scratch.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Extension-only skill. Triggers deep project initialization in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: deepsearch
|
|
3
|
+
description: Multi-source deep search across codebase and web
|
|
4
|
+
trigger: "deepsearch:, /deepsearch, /omp:deepsearch"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Deep Search
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `deepsearch` |
|
|
14
|
+
| **Keywords** | `deepsearch:`, `/deepsearch` |
|
|
15
|
+
| **Tier** | Research Tool |
|
|
16
|
+
| **Source** | `src/skills/deepsearch.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Runs a multi-source deep search across the local codebase, project documentation, and the web simultaneously. Aggregates results from all sources, de-duplicates, and ranks by relevance. Useful for researching unfamiliar APIs, finding prior art, and cross-referencing internal code with external documentation.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Extension-only skill. Triggers multi-source deep search in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: design
|
|
3
|
+
description: UI/UX design and frontend component generation
|
|
4
|
+
trigger: "design:, /omp:design"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Design
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `design` |
|
|
14
|
+
| **Keywords** | `design:`, `/omp:design` |
|
|
15
|
+
| **Tier** | Frontend Tool |
|
|
16
|
+
| **Source** | `src/skills/design.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Generates UI/UX designs and frontend components from natural language descriptions. Produces framework-appropriate components (React, Vue, Svelte, etc.), applies the project's existing design system tokens, and writes output files with associated tests. Accepts wireframe descriptions, mockup references, or component specs.
|
|
21
|
+
|
|
22
|
+
**Note:** Uses `/omp:design` (not `/design`) to avoid conflicts with native Copilot commands.
|
|
23
|
+
|
|
24
|
+
## Interface
|
|
25
|
+
|
|
26
|
+
```typescript
|
|
27
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
28
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
29
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
30
|
+
export function deactivate(): void
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Implementation
|
|
34
|
+
|
|
35
|
+
Extension-only skill. Triggers UI/UX design and component generation in Copilot. The CLI prints guidance directing users to the `/omp:design` slash command.
|
|
36
|
+
|
|
37
|
+
> **P3 scope:** Figma/Sketch import, design token extraction, and Storybook story generation (as specified in SPEC-omp-2.0 §5) are deferred to P3. The current implementation generates components from text descriptions only.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: external-context
|
|
3
|
+
description: Load external docs/URLs into session context
|
|
4
|
+
trigger: "external-context:, /external-context, /omp:external-context"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: External Context
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `external-context` |
|
|
14
|
+
| **Keywords** | `external-context:`, `/external-context` |
|
|
15
|
+
| **Tier** | Context Tool |
|
|
16
|
+
| **Source** | `src/skills/external-context.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Loads external documentation, URLs, or file paths into the active Copilot session context window. Accepts a URL or local file path as its argument. In Copilot, fetches the content and injects it as context. Via CLI, prints confirmation so you can reference the URL in your next Copilot prompt.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
CLI accepts a URL or file path argument and prints a confirmation message. Extension-side fetches or reads the content and injects it into the session context.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: help
|
|
3
|
+
description: Command and skill discovery; prints the full skill catalog
|
|
4
|
+
trigger: "help:, /help, /omp:help"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Help
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `help` |
|
|
14
|
+
| **Keywords** | `help:`, `/help` |
|
|
15
|
+
| **Tier** | Developer Tool |
|
|
16
|
+
| **Source** | `src/skills/help.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Command and skill discovery tool. Reads the OMP skill registry and prints a formatted catalog of all available skills with their IDs, descriptions, and trigger keywords. Useful for discovering available commands without leaving the current session.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Activates the `help` mode by spawning `bin/omp.mjs help [args]`. The CLI handler reads `SKILL_REGISTRY` from the registry and prints a formatted table of all skills. No persistent resources are maintained.
|
|
@@ -59,7 +59,29 @@ ls -la ~/.config/github-copilot/plugins/oh-my-githubcopilot/agents/ 2>/dev/null
|
|
|
59
59
|
- If known agents are missing: WARN - incomplete agent set
|
|
60
60
|
|
|
61
61
|
**Known agent names** (check agents/ for these):
|
|
62
|
-
`
|
|
62
|
+
`explore`, `planner`, `executor`, `verifier`, `writer`, `designer`, `debugger`, `architect`, `security-reviewer`, `code-simplifier`, `test-engineer`, `critic`, `tracer`, `scientist`, `code-reviewer`, `document-specialist`, `qa-tester`, `git-master`, `analyst`
|
|
63
|
+
|
|
64
|
+
### Step 4b: Check for Stale Agent References (2.0 migration)
|
|
65
|
+
|
|
66
|
+
Run the built-in migration scan, which checks project config files (`.github/copilot-instructions.md`, `AGENTS.md`, `.omg/` state) for agent IDs that were renamed or dropped in OMP 2.0:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
node bin/omp.mjs doctor
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
**Stale ID → replacement mapping**:
|
|
73
|
+
|
|
74
|
+
| Stale ID | Replacement |
|
|
75
|
+
|----------|-------------|
|
|
76
|
+
| `@explorer` | `@explore` |
|
|
77
|
+
| `@simplifier` | `@code-simplifier` |
|
|
78
|
+
| `@researcher` | `@document-specialist` |
|
|
79
|
+
| `@reviewer` | `@code-reviewer` |
|
|
80
|
+
| `@tester` | `@test-engineer` |
|
|
81
|
+
| `@orchestrator` | top-level orchestration role (no longer a delegatable agent) |
|
|
82
|
+
|
|
83
|
+
**Diagnosis**:
|
|
84
|
+
- If stale references found: WARN - suggest the replacement IDs above
|
|
63
85
|
|
|
64
86
|
### Step 5: Check AGENTS.md
|
|
65
87
|
|
|
@@ -14,29 +14,25 @@ Prefix: `omp:`. See `agents/*.md` for full prompts.
|
|
|
14
14
|
|
|
15
15
|
| # | ID | Tier | Tools | Role |
|
|
16
16
|
|---|-----|------|-------|------|
|
|
17
|
-
| 1 | `
|
|
18
|
-
| 2 | `
|
|
19
|
-
| 3 | `
|
|
20
|
-
| 4 | `
|
|
21
|
-
| 5 | `
|
|
22
|
-
| 6 | `
|
|
23
|
-
| 7 | `
|
|
24
|
-
| 8 | `
|
|
25
|
-
| 9 | `
|
|
26
|
-
| 10 | `
|
|
27
|
-
| 11 | `
|
|
28
|
-
| 12 | `
|
|
29
|
-
| 13 | `
|
|
30
|
-
| 14 | `
|
|
31
|
-
| 15 | `
|
|
32
|
-
| 16 | `
|
|
33
|
-
| 17 | `
|
|
34
|
-
| 18 | `
|
|
35
|
-
| 19 | `
|
|
36
|
-
| 20 | `document-specialist` | standard | Read, Write, Grep | Technical docs, API docs, guides |
|
|
37
|
-
| 21 | `qa-tester` | standard | Bash, Read, Write | QA testing, regression verification |
|
|
38
|
-
| 22 | `git-master` | standard | Bash, Read, Grep | Atomic commits, history management |
|
|
39
|
-
| 23 | `analyst` | high | Read, Grep | Requirements analysis, gap identification |
|
|
17
|
+
| 1 | `explore` | fast | Glob, Grep, Read | Fast codebase surveys, pattern finding |
|
|
18
|
+
| 2 | `planner` | high | Read, Write, TaskCreate | Architecture, sequencing, risk assessment |
|
|
19
|
+
| 3 | `executor` | standard | Read, Write, Edit, Bash | Implementation, refactoring, complex changes |
|
|
20
|
+
| 4 | `verifier` | standard | Bash, Read, Glob | Testing, diagnostics, evidence collection |
|
|
21
|
+
| 5 | `writer` | standard | Read, Write, Glob | Documentation, README, API docs |
|
|
22
|
+
| 6 | `designer` | high | WebFetch, Figma tools | UI/UX, design system, Figma integration |
|
|
23
|
+
| 7 | `debugger` | high | Bash, Read, LSP, Grep | Error diagnosis, crash analysis |
|
|
24
|
+
| 8 | `architect` | high | Read, Write, Glob | System design, cross-cutting concerns |
|
|
25
|
+
| 9 | `security-reviewer` | high | Grep, Glob, Read | Vulnerability scanning, dependency audit |
|
|
26
|
+
| 10 | `code-simplifier` | high | Read, Edit, Grep | Code reuse, quality, efficiency improvements |
|
|
27
|
+
| 11 | `test-engineer` | standard | Bash, Read, Write | Test authoring, execution, coverage, CI integration |
|
|
28
|
+
| 12 | `critic` | high | Read, Grep, Write | Plan review, gap analysis, improvement suggestions |
|
|
29
|
+
| 13 | `tracer` | standard | Bash, Read, Grep | Causal investigation, root cause analysis |
|
|
30
|
+
| 14 | `scientist` | standard | Read, Write, Bash | Experimental design, hypothesis testing |
|
|
31
|
+
| 15 | `code-reviewer` | high | Read, Glob, LSP | PR reviews, quality gates, merge verdicts |
|
|
32
|
+
| 16 | `document-specialist` | standard | Read, Write, Grep, WebSearch, WebFetch | External docs, benchmarking, options analysis |
|
|
33
|
+
| 17 | `qa-tester` | standard | Bash, Read, Write | QA testing, regression verification |
|
|
34
|
+
| 18 | `git-master` | standard | Bash, Read, Grep | Atomic commits, history management |
|
|
35
|
+
| 19 | `analyst` | high | Read, Grep | Requirements analysis, gap identification |
|
|
40
36
|
|
|
41
37
|
## Model Routing
|
|
42
38
|
|
|
@@ -155,7 +151,7 @@ Use git trailers to preserve decision context in every commit message.
|
|
|
155
151
|
feat(skills): add research skill to omp plugin
|
|
156
152
|
|
|
157
153
|
Adds autoresearch workflow with structured output format and
|
|
158
|
-
agent routing to
|
|
154
|
+
agent routing to document-specialist/explore/architect as appropriate.
|
|
159
155
|
|
|
160
156
|
Constraint: No model routing parameters allowed in omp skills
|
|
161
157
|
Confidence: high
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: remember
|
|
3
|
+
description: Persist key facts/decisions to .omp/memory/
|
|
4
|
+
trigger: "remember:, /omp:remember"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Remember
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `remember` |
|
|
14
|
+
| **Keywords** | `remember:`, `/omp:remember` |
|
|
15
|
+
| **Tier** | Memory Tool |
|
|
16
|
+
| **Source** | `src/skills/remember.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Persists key facts, decisions, or context notes to `.omp/memory/<ISO-timestamp>.md`. Accumulated memories are available to future sessions and agents as durable project context. Use `omp remember <text>` to write a new memory, or `omp remember` (no args) to list existing memories.
|
|
21
|
+
|
|
22
|
+
Note: `/remember` is intentionally NOT registered as a bare keyword to avoid collision with common English usage. Use `remember:` or `/omp:remember` instead.
|
|
23
|
+
|
|
24
|
+
## Interface
|
|
25
|
+
|
|
26
|
+
```typescript
|
|
27
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
28
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
29
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
30
|
+
export function deactivate(): void
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Implementation
|
|
34
|
+
|
|
35
|
+
Real CLI logic: `omp remember <text>` writes `.omp/memory/<ISO-timestamp>.md` atomically (tmp+rename). `omp remember` lists existing memory files. Extension-side stores the memory and confirms to the agent.
|
|
36
|
+
|
|
37
|
+
> **Note:** Memory files are stored relative to `process.cwd()`. Run `omp remember` from the project root for consistent cross-session lookup.
|
|
38
|
+
|
|
39
|
+
> **P3 scope:** Automatic classification into project memory / notepad / durable docs (as specified in SPEC-omp-2.0 §3) is deferred to P3.
|
package/skills/research/SKILL.md
CHANGED
|
@@ -97,7 +97,7 @@ Conduct thorough research and investigation on topics.
|
|
|
97
97
|
|
|
98
98
|
## Agent Routing
|
|
99
99
|
|
|
100
|
-
Delegate research tasks to the `
|
|
100
|
+
Delegate research tasks to the `document-specialist` agent (standard tier). For deep code archaeology, use the `explore` agent. For architecture trade-offs, escalate to the `architect` agent.
|
|
101
101
|
|
|
102
102
|
State for in-progress research is stored under `.omp/research/`.
|
|
103
103
|
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: sciomc
|
|
3
|
+
description: Scientific/analytical reasoning workflow — hypothesis→experiment→conclusion
|
|
4
|
+
trigger: "sciomc:, /sciomc, /omp:sciomc"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: SciOMC
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `sciomc` |
|
|
14
|
+
| **Keywords** | `sciomc:`, `/sciomc` |
|
|
15
|
+
| **Tier** | Analytical Tool |
|
|
16
|
+
| **Source** | `src/skills/sciomc.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Applies rigorous scientific reasoning to software problems via a hypothesis→experiment→conclusion chain. For each problem, the agent formulates a testable hypothesis, designs a minimal experiment, runs it, and draws a conclusion. Chains multiple cycles until the hypothesis is confirmed or refuted with evidence. Ideal for debugging non-deterministic issues, performance regressions, and unknown system behaviours.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Extension-only skill. Triggers the scientific reasoning pipeline in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
|
|
34
|
+
|
|
35
|
+
> **P3 scope:** Parallel scientist agents with AUTO mode (as specified in SPEC-omp-2.0 §3) are deferred to P3. The current implementation triggers a single hypothesis→experiment→conclusion chain.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: security-review
|
|
3
|
+
description: Trigger the security-reviewer agent lane for security analysis
|
|
4
|
+
trigger: "security-review:, /security-review, /omp:security-review"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Security Review
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `security-review` |
|
|
14
|
+
| **Keywords** | `security-review:`, `/security-review` |
|
|
15
|
+
| **Tier** | Developer Tool |
|
|
16
|
+
| **Source** | `src/skills/security-review.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Triggers the security-reviewer agent lane for structured security analysis. Examines code changes and the broader codebase for vulnerabilities, misconfigurations, injection risks, and compliance gaps. Produces a structured report with CVE references and remediation guidance.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Activates the `security-review` orchestration mode by spawning `bin/omp.mjs security-review [args]`. Delegates to the `@security-reviewer` agent for threat-modelled review. No persistent resources are maintained.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: self-improve
|
|
3
|
+
description: OMP self-improvement — analyse own skills/agents and propose improvements
|
|
4
|
+
trigger: "self-improve:, /self-improve, /omp:self-improve"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
7
|
+
# Skill: Self-Improve
|
|
8
|
+
|
|
9
|
+
## Metadata
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
|-------|-------|
|
|
13
|
+
| **ID** | `self-improve` |
|
|
14
|
+
| **Keywords** | `self-improve:`, `/self-improve` |
|
|
15
|
+
| **Tier** | Meta Tool |
|
|
16
|
+
| **Source** | `src/skills/self-improve.mts` |
|
|
17
|
+
|
|
18
|
+
## Description
|
|
19
|
+
|
|
20
|
+
Analyses OMP's own skills, agents, and configuration to propose targeted improvements. Reads `skills/*/SKILL.md`, `agents/*`, and recent session logs to identify gaps, redundancies, and missing capabilities. Produces a structured improvement proposal in `.omp/self-improve/`.
|
|
21
|
+
|
|
22
|
+
## Interface
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
interface SkillInput { trigger: string; args: string[]; }
|
|
26
|
+
interface SkillOutput { status: "ok" | "error"; message: string; }
|
|
27
|
+
export async function activate(input: SkillInput): Promise<SkillOutput>
|
|
28
|
+
export function deactivate(): void
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Implementation
|
|
32
|
+
|
|
33
|
+
Extension-only skill. Triggers OMP self-improvement analysis in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
|
|
34
|
+
|
|
35
|
+
> **P3 scope:** Automated improvement PR generation and agent self-patching (as specified in SPEC-omp-2.0 §6) are deferred to P3. The current implementation performs analysis and produces a structured proposal only.
|