oh-my-githubcopilot 1.4.0 → 1.5.7
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 +11 -3
- package/.mcp.json +17 -0
- package/CHANGELOG.md +132 -1
- package/README.md +162 -82
- package/agents/analyst.agent.md +27 -0
- package/agents/architect.agent.md +24 -0
- package/agents/code-reviewer.agent.md +24 -0
- package/agents/critic.agent.md +24 -0
- package/agents/debugger.agent.md +24 -0
- package/agents/designer.agent.md +24 -0
- package/agents/document-specialist.agent.md +24 -0
- package/agents/executor.agent.md +27 -0
- package/agents/explorer.agent.md +23 -0
- package/agents/git-master.agent.md +24 -0
- package/agents/orchestrator.agent.md +26 -0
- package/agents/planner.agent.md +24 -0
- package/agents/qa-tester.agent.md +24 -0
- package/agents/researcher.agent.md +18 -0
- package/agents/reviewer.agent.md +23 -0
- package/agents/scientist.agent.md +20 -0
- package/agents/security-reviewer.agent.md +20 -0
- package/agents/simplifier.agent.md +20 -0
- package/agents/test-engineer.agent.md +20 -0
- package/agents/tester.agent.md +20 -0
- package/agents/tracer.agent.md +24 -0
- package/agents/verifier.agent.md +19 -0
- package/agents/writer.agent.md +24 -0
- package/bin/omp-statusline.mjs +179 -0
- package/bin/omp-statusline.mjs.map +7 -0
- package/bin/omp-statusline.sh +21 -0
- package/bin/omp.mjs +309 -15
- package/bin/omp.mjs.map +4 -4
- package/dist/hooks/hud-emitter.mjs +268 -82
- package/dist/hooks/hud-emitter.mjs.map +4 -4
- package/dist/hooks/keyword-detector.mjs +83 -21
- package/dist/hooks/keyword-detector.mjs.map +2 -2
- package/dist/hooks/model-router.mjs +1 -1
- package/dist/hooks/model-router.mjs.map +1 -1
- package/dist/hooks/stop-continuation.mjs +1 -1
- package/dist/hooks/stop-continuation.mjs.map +1 -1
- package/dist/hooks/token-tracker.mjs +2 -1
- package/dist/hooks/token-tracker.mjs.map +2 -2
- package/dist/mcp/server.mjs +57 -41
- package/dist/mcp/server.mjs.map +4 -4
- package/dist/skills/setup.mjs +39 -27
- package/dist/skills/setup.mjs.map +4 -4
- package/hooks/hooks.json +39 -45
- package/package.json +7 -3
- package/plugin.json +49 -0
- package/skills/autopilot/SKILL.md +6 -0
- package/skills/configure-notifications/SKILL.md +6 -0
- package/skills/deep-interview/SKILL.md +6 -0
- package/skills/ecomode/SKILL.md +6 -0
- package/skills/graph-provider/SKILL.md +6 -0
- package/skills/graphify/SKILL.md +6 -0
- package/skills/graphwiki/SKILL.md +6 -0
- package/skills/hud/SKILL.md +6 -0
- package/skills/learner/SKILL.md +6 -0
- package/skills/mcp-setup/SKILL.md +6 -0
- package/skills/note/SKILL.md +6 -0
- package/skills/omp-plan/SKILL.md +6 -0
- package/skills/omp-setup/SKILL.md +15 -1
- package/skills/pipeline/SKILL.md +6 -0
- package/skills/psm/SKILL.md +6 -0
- package/skills/ralph/SKILL.md +6 -0
- package/skills/release/SKILL.md +6 -0
- package/skills/setup/SKILL.md +6 -0
- package/skills/spending/SKILL.md +6 -0
- package/skills/swarm/SKILL.md +6 -0
- package/skills/swe-bench/SKILL.md +6 -0
- package/skills/team/SKILL.md +6 -0
- package/skills/trace/SKILL.md +6 -0
- package/skills/ultrawork/SKILL.md +6 -0
- package/skills/wiki/SKILL.md +6 -0
- package/src/agents/analyst.md +0 -103
- package/src/agents/architect.md +0 -169
- package/src/agents/code-reviewer.md +0 -135
- package/src/agents/critic.md +0 -196
- package/src/agents/debugger.md +0 -132
- package/src/agents/designer.md +0 -103
- package/src/agents/document-specialist.md +0 -111
- package/src/agents/executor.md +0 -120
- package/src/agents/explorer.md +0 -98
- package/src/agents/git-master.md +0 -92
- package/src/agents/orchestrator.md +0 -125
- package/src/agents/planner.md +0 -106
- package/src/agents/qa-tester.md +0 -129
- package/src/agents/researcher.md +0 -102
- package/src/agents/reviewer.md +0 -100
- package/src/agents/scientist.md +0 -150
- package/src/agents/security-reviewer.md +0 -132
- package/src/agents/simplifier.md +0 -109
- package/src/agents/test-engineer.md +0 -124
- package/src/agents/tester.md +0 -102
- package/src/agents/tracer.md +0 -160
- package/src/agents/verifier.md +0 -100
- package/src/agents/writer.md +0 -96
package/dist/skills/setup.mjs
CHANGED
|
@@ -1,38 +1,50 @@
|
|
|
1
|
-
// src/skills/setup.mts
|
|
2
|
-
|
|
1
|
+
// src/skills/omp-setup.mts
|
|
2
|
+
import { fileURLToPath } from "url";
|
|
3
|
+
import { dirname, join } from "path";
|
|
4
|
+
var REQUIRED_COPILOT_EXPERIMENTAL_FEATURES = [
|
|
5
|
+
"STATUS_LINE",
|
|
6
|
+
"SHOW_FILE",
|
|
7
|
+
"EXTENSIONS",
|
|
8
|
+
"BACKGROUND_SESSIONS",
|
|
9
|
+
"CONFIGURE_COPILOT_AGENT",
|
|
10
|
+
"MULTI_TURN_AGENTS",
|
|
11
|
+
"SESSION_STORE"
|
|
12
|
+
];
|
|
13
|
+
function getPackageRoot() {
|
|
14
|
+
return join(dirname(fileURLToPath(import.meta.url)), "..", "..");
|
|
15
|
+
}
|
|
16
|
+
async function activate(input) {
|
|
3
17
|
const { spawn } = await import("child_process");
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const isSkipMcp = input2.args.includes("--skip-mcp");
|
|
7
|
-
const baseArgs = ["bin/omp.mjs", "setup"];
|
|
8
|
-
if (isMcpOnly) baseArgs.push("--mcp-only");
|
|
9
|
-
if (isSkipMcp) baseArgs.push("--skip-mcp");
|
|
10
|
-
if (isNonInteractive) baseArgs.push("--non-interactive");
|
|
18
|
+
const packageRoot = getPackageRoot();
|
|
19
|
+
const baseArgs = ["bin/omp.mjs", "setup", ...input.args];
|
|
11
20
|
return new Promise((resolve) => {
|
|
12
|
-
const child = spawn("node", baseArgs, {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
const child = spawn("node", baseArgs, {
|
|
22
|
+
cwd: packageRoot,
|
|
23
|
+
stdio: "inherit",
|
|
24
|
+
env: {
|
|
25
|
+
...process.env,
|
|
26
|
+
OMP_COPILOT_REQUIRED_EXPERIMENTAL_FEATURES: process.env["OMP_COPILOT_REQUIRED_EXPERIMENTAL_FEATURES"] ?? REQUIRED_COPILOT_EXPERIMENTAL_FEATURES.join(","),
|
|
27
|
+
OMP_COPILOT_STATUS_LINE_COMMAND: process.env["OMP_COPILOT_STATUS_LINE_COMMAND"] ?? join(packageRoot, "bin", "omp-statusline.sh")
|
|
18
28
|
}
|
|
19
29
|
});
|
|
20
|
-
child.on("
|
|
21
|
-
resolve({ status: "error", message: `
|
|
30
|
+
child.on("close", (code) => {
|
|
31
|
+
resolve({ status: code === 0 ? "ok" : "error", message: `Setup exited with code ${code}` });
|
|
22
32
|
});
|
|
33
|
+
child.on("error", (err) => resolve({ status: "error", message: `Failed to spawn: ${err.message}` }));
|
|
23
34
|
});
|
|
24
35
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
36
|
+
function deactivate() {
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// src/skills/setup.mts
|
|
40
|
+
async function activate2(input) {
|
|
41
|
+
return activate(input);
|
|
42
|
+
}
|
|
43
|
+
function deactivate2() {
|
|
44
|
+
deactivate();
|
|
34
45
|
}
|
|
35
46
|
export {
|
|
36
|
-
activate
|
|
47
|
+
activate2 as activate,
|
|
48
|
+
deactivate2 as deactivate
|
|
37
49
|
};
|
|
38
50
|
//# sourceMappingURL=setup.mjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../src/skills/setup.mts"],
|
|
4
|
-
"sourcesContent": ["/**\n * setup skill\n *\n *
|
|
5
|
-
"mappings": ";
|
|
6
|
-
"names": ["
|
|
3
|
+
"sources": ["../../src/skills/omp-setup.mts", "../../src/skills/setup.mts"],
|
|
4
|
+
"sourcesContent": ["/**\n * omp-setup skill\n *\n * ID: omp-setup\n * Keywords: setup:, /setup, /omp:setup\n * Tier: developer tool\n *\n * Orchestrates the OMP setup wizard:\n * Phase 1: Base OMP setup (directory structure, first-run guidance)\n * Phase 2: MCP server configuration\n */\n\nimport { fileURLToPath } from \"url\";\nimport { dirname, join } from \"path\";\n\nexport interface SkillInput {\n trigger: string;\n args: string[];\n}\n\nexport interface SkillOutput {\n status: \"ok\" | \"error\";\n message: string;\n}\n\nconst REQUIRED_COPILOT_EXPERIMENTAL_FEATURES = [\n \"STATUS_LINE\",\n \"SHOW_FILE\",\n \"EXTENSIONS\",\n \"BACKGROUND_SESSIONS\",\n \"CONFIGURE_COPILOT_AGENT\",\n \"MULTI_TURN_AGENTS\",\n \"SESSION_STORE\",\n] as const;\n\nfunction getPackageRoot(): string {\n return join(dirname(fileURLToPath(import.meta.url)), \"..\", \"..\");\n}\n\nexport async function activate(input: SkillInput): Promise<SkillOutput> {\n const { spawn } = await import(\"child_process\");\n const packageRoot = getPackageRoot();\n const baseArgs = [\"bin/omp.mjs\", \"setup\", ...input.args];\n return new Promise((resolve) => {\n const child = spawn(\"node\", baseArgs, {\n cwd: packageRoot,\n stdio: \"inherit\",\n env: {\n ...process.env,\n OMP_COPILOT_REQUIRED_EXPERIMENTAL_FEATURES:\n process.env[\"OMP_COPILOT_REQUIRED_EXPERIMENTAL_FEATURES\"] ??\n REQUIRED_COPILOT_EXPERIMENTAL_FEATURES.join(\",\"),\n OMP_COPILOT_STATUS_LINE_COMMAND:\n process.env[\"OMP_COPILOT_STATUS_LINE_COMMAND\"] ??\n join(packageRoot, \"bin\", \"omp-statusline.sh\"),\n },\n });\n child.on(\"close\", (code) => {\n resolve({ status: code === 0 ? \"ok\" : \"error\", message: `Setup exited with code ${code}` });\n });\n child.on(\"error\", (err) => resolve({ status: \"error\", message: `Failed to spawn: ${err.message}` }));\n });\n}\n\nexport function deactivate(): void {\n // No persistent resources to clean up\n}\n", "/**\n * setup skill\n *\n * Legacy alias for `omp-setup`.\n * Keep this wrapper while docs and manifests migrate to the `omp-*` namespace.\n */\n\nimport {\n activate as activateOmpSetup,\n deactivate as deactivateOmpSetup,\n type SkillInput,\n type SkillOutput,\n} from \"./omp-setup.mjs\";\n\nexport type { SkillInput, SkillOutput } from \"./omp-setup.mjs\";\n\nexport async function activate(input: SkillInput): Promise<SkillOutput> {\n return activateOmpSetup(input);\n}\n\nexport function deactivate(): void {\n deactivateOmpSetup();\n}\n"],
|
|
5
|
+
"mappings": ";AAYA,SAAS,qBAAqB;AAC9B,SAAS,SAAS,YAAY;AAY9B,IAAM,yCAAyC;AAAA,EAC7C;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAEA,SAAS,iBAAyB;AAChC,SAAO,KAAK,QAAQ,cAAc,YAAY,GAAG,CAAC,GAAG,MAAM,IAAI;AACjE;AAEA,eAAsB,SAAS,OAAyC;AACtE,QAAM,EAAE,MAAM,IAAI,MAAM,OAAO,eAAe;AAC9C,QAAM,cAAc,eAAe;AACnC,QAAM,WAAW,CAAC,eAAe,SAAS,GAAG,MAAM,IAAI;AACvD,SAAO,IAAI,QAAQ,CAAC,YAAY;AAC9B,UAAM,QAAQ,MAAM,QAAQ,UAAU;AAAA,MACpC,KAAK;AAAA,MACL,OAAO;AAAA,MACP,KAAK;AAAA,QACH,GAAG,QAAQ;AAAA,QACX,4CACE,QAAQ,IAAI,4CAA4C,KACxD,uCAAuC,KAAK,GAAG;AAAA,QACjD,iCACE,QAAQ,IAAI,iCAAiC,KAC7C,KAAK,aAAa,OAAO,mBAAmB;AAAA,MAChD;AAAA,IACF,CAAC;AACD,UAAM,GAAG,SAAS,CAAC,SAAS;AAC1B,cAAQ,EAAE,QAAQ,SAAS,IAAI,OAAO,SAAS,SAAS,0BAA0B,IAAI,GAAG,CAAC;AAAA,IAC5F,CAAC;AACD,UAAM,GAAG,SAAS,CAAC,QAAQ,QAAQ,EAAE,QAAQ,SAAS,SAAS,oBAAoB,IAAI,OAAO,GAAG,CAAC,CAAC;AAAA,EACrG,CAAC;AACH;AAEO,SAAS,aAAmB;AAEnC;;;AClDA,eAAsBA,UAAS,OAAyC;AACtE,SAAO,SAAiB,KAAK;AAC/B;AAEO,SAASC,cAAmB;AACjC,aAAmB;AACrB;",
|
|
6
|
+
"names": ["activate", "deactivate"]
|
|
7
7
|
}
|
package/hooks/hooks.json
CHANGED
|
@@ -1,47 +1,41 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"hooks":
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"entry": "./dist/hooks/stop-continuation.mjs",
|
|
42
|
-
"trigger": "PostToolUse",
|
|
43
|
-
"timeoutMs": 200,
|
|
44
|
-
"priority": 50
|
|
45
|
-
}
|
|
46
|
-
]
|
|
2
|
+
"version": 1,
|
|
3
|
+
"hooks": {
|
|
4
|
+
"UserPromptSubmitted": [
|
|
5
|
+
{
|
|
6
|
+
"type": "command",
|
|
7
|
+
"bash": "node ./dist/hooks/keyword-detector.mjs",
|
|
8
|
+
"timeoutSec": 0.2
|
|
9
|
+
}
|
|
10
|
+
],
|
|
11
|
+
"PreToolUse": [
|
|
12
|
+
{
|
|
13
|
+
"type": "command",
|
|
14
|
+
"bash": "node ./dist/hooks/delegation-enforcer.mjs",
|
|
15
|
+
"timeoutSec": 0.2
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "command",
|
|
19
|
+
"bash": "node ./dist/hooks/model-router.mjs",
|
|
20
|
+
"timeoutSec": 0.2
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"PostToolUse": [
|
|
24
|
+
{
|
|
25
|
+
"type": "command",
|
|
26
|
+
"bash": "node ./dist/hooks/token-tracker.mjs",
|
|
27
|
+
"timeoutSec": 0.2
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "command",
|
|
31
|
+
"bash": "node ./dist/hooks/hud-emitter.mjs",
|
|
32
|
+
"timeoutSec": 0.2
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "command",
|
|
36
|
+
"bash": "node ./dist/hooks/stop-continuation.mjs",
|
|
37
|
+
"timeoutSec": 0.2
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
47
41
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-githubcopilot",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.7",
|
|
4
4
|
"description": "Multi-agent orchestration for GitHub Copilot CLI. 23 agents, 25 skills, parallel execution, HUD, PSM, SWE-bench.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "r3dlex"
|
|
@@ -23,15 +23,18 @@
|
|
|
23
23
|
"files": [
|
|
24
24
|
"dist/",
|
|
25
25
|
"bin/",
|
|
26
|
+
"agents/",
|
|
26
27
|
"skills/",
|
|
27
28
|
"hooks/",
|
|
28
|
-
"
|
|
29
|
+
"plugin.json",
|
|
30
|
+
".mcp.json",
|
|
29
31
|
".claude-plugin/",
|
|
30
32
|
"AGENTS.md",
|
|
31
33
|
"CHANGELOG.md",
|
|
32
34
|
"LICENSE"
|
|
33
35
|
],
|
|
34
36
|
"scripts": {
|
|
37
|
+
"hud:watch": "node --import tsx src/index.mts hud --watch",
|
|
35
38
|
"build": "node --import tsx esbuild.config.mts",
|
|
36
39
|
"dev": "node --import tsx --watch esbuild.config.mts",
|
|
37
40
|
"test": "vitest run",
|
|
@@ -40,8 +43,9 @@
|
|
|
40
43
|
"lint": "eslint src/",
|
|
41
44
|
"format": "prettier --write src/",
|
|
42
45
|
"typecheck": "tsc --noEmit",
|
|
43
|
-
"sync-claude-plugin": "cp
|
|
46
|
+
"sync-claude-plugin": "cp plugin.json .claude-plugin/plugin.json",
|
|
44
47
|
"prepublishOnly": "npm run build && npm run sync-claude-plugin",
|
|
48
|
+
"postinstall": "[ -d dist ] || npm run build",
|
|
45
49
|
"archgate:init": "npx archgate init --editor claude",
|
|
46
50
|
"archgate:check": "npx archgate check"
|
|
47
51
|
},
|
package/plugin.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "1.0",
|
|
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.",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "r3dlex"
|
|
8
|
+
},
|
|
9
|
+
"repository": "https://github.com/r3dlex/oh-my-githubcopilot",
|
|
10
|
+
"license": "Apache-2.0",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"orchestration",
|
|
13
|
+
"multi-agent",
|
|
14
|
+
"autopilot",
|
|
15
|
+
"swe-bench",
|
|
16
|
+
"hud",
|
|
17
|
+
"copilot-cli"
|
|
18
|
+
],
|
|
19
|
+
"agents": ["./agents"],
|
|
20
|
+
"skills": [
|
|
21
|
+
"./skills/autopilot",
|
|
22
|
+
"./skills/ralph",
|
|
23
|
+
"./skills/ultrawork",
|
|
24
|
+
"./skills/team",
|
|
25
|
+
"./skills/ecomode",
|
|
26
|
+
"./skills/swarm",
|
|
27
|
+
"./skills/pipeline",
|
|
28
|
+
"./skills/deep-interview",
|
|
29
|
+
"./skills/omp-plan",
|
|
30
|
+
"./skills/omp-setup",
|
|
31
|
+
"./skills/hud",
|
|
32
|
+
"./skills/wiki",
|
|
33
|
+
"./skills/learner",
|
|
34
|
+
"./skills/note",
|
|
35
|
+
"./skills/trace",
|
|
36
|
+
"./skills/release",
|
|
37
|
+
"./skills/configure-notifications",
|
|
38
|
+
"./skills/psm",
|
|
39
|
+
"./skills/swe-bench",
|
|
40
|
+
"./skills/mcp-setup",
|
|
41
|
+
"./skills/setup",
|
|
42
|
+
"./skills/graphify",
|
|
43
|
+
"./skills/graphwiki",
|
|
44
|
+
"./skills/graph-provider",
|
|
45
|
+
"./skills/spending"
|
|
46
|
+
],
|
|
47
|
+
"hooks": "./hooks/hooks.json",
|
|
48
|
+
"mcp": "./.mcp.json"
|
|
49
|
+
}
|
package/skills/ecomode/SKILL.md
CHANGED
package/skills/graphify/SKILL.md
CHANGED
package/skills/hud/SKILL.md
CHANGED
package/skills/learner/SKILL.md
CHANGED
package/skills/note/SKILL.md
CHANGED
package/skills/omp-plan/SKILL.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: omp-setup
|
|
3
|
+
description: OMP onboarding and configuration wizard
|
|
4
|
+
trigger: "setup:, /setup, /omp:setup, /omp-setup"
|
|
5
|
+
autoinvoke: false
|
|
6
|
+
---
|
|
1
7
|
# Skill: OMP-Setup
|
|
2
8
|
|
|
3
9
|
## Metadata
|
|
@@ -13,6 +19,8 @@
|
|
|
13
19
|
|
|
14
20
|
Orchestrates the OMP setup wizard:
|
|
15
21
|
- Phase 1: Base OMP setup (directory structure, first-run guidance)
|
|
22
|
+
- Phase 1.5: Merge required Copilot experimental features into `~/.copilot/config.json`
|
|
23
|
+
- Phase 1.5: Ensure Copilot `statusLine` points at OMP's packaged status-line script without overwriting an existing custom command
|
|
16
24
|
- Phase 2: MCP server configuration
|
|
17
25
|
|
|
18
26
|
## Interface
|
|
@@ -34,4 +42,10 @@ export function deactivate(): void
|
|
|
34
42
|
|
|
35
43
|
## Implementation
|
|
36
44
|
|
|
37
|
-
Spawns `bin/omp.mjs setup [args]
|
|
45
|
+
Spawns `bin/omp.mjs setup [args]` from the packaged plugin root so setup works from arbitrary workspaces.
|
|
46
|
+
The spawned process receives default OMP Copilot setup env values:
|
|
47
|
+
|
|
48
|
+
- `OMP_COPILOT_REQUIRED_EXPERIMENTAL_FEATURES`
|
|
49
|
+
- `OMP_COPILOT_STATUS_LINE_COMMAND`
|
|
50
|
+
|
|
51
|
+
No persistent resources are maintained by the skill wrapper itself.
|
package/skills/pipeline/SKILL.md
CHANGED
package/skills/psm/SKILL.md
CHANGED
package/skills/ralph/SKILL.md
CHANGED
package/skills/release/SKILL.md
CHANGED
package/skills/setup/SKILL.md
CHANGED
package/skills/spending/SKILL.md
CHANGED
package/skills/swarm/SKILL.md
CHANGED
package/skills/team/SKILL.md
CHANGED
package/skills/trace/SKILL.md
CHANGED