@glrs-dev/cli 2.4.0 → 2.4.1
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/CHANGELOG.md +6 -0
- package/dist/node_modules/@glrs-dev/adapter-opencode/dist/index.d.ts +261 -0
- package/dist/node_modules/@glrs-dev/adapter-opencode/dist/index.js +488 -0
- package/dist/node_modules/@glrs-dev/adapter-opencode/package.json +8 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/auto-ship-LCT6LIH7.js +7 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/changeset-generator-DG3MVWVV.js +15 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/chunk-7OSEI5TF.js +249 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/chunk-E7PWTRFO.js +91 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/chunk-M2ZVBPWL.js +101 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/chunk-Q4ULU6ER.js +68 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/chunk-VITL2Z45.js +2772 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/chunk-ZNJWARTM.js +449 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/index.d.ts +1765 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/index.js +688 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/logger-UITJGIZE.js +8 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/loop-session-XKL3NHUA.js +8 -0
- package/dist/node_modules/@glrs-dev/autopilot/dist/plan-enrichment-D3RPJR2J.js +14 -0
- package/dist/node_modules/@glrs-dev/autopilot/package.json +8 -0
- package/dist/vendor/harness-opencode/dist/index.js +1 -1
- package/dist/vendor/harness-opencode/package.json +1 -1
- package/package.json +9 -7
|
@@ -2125,7 +2125,7 @@ import { join as join9 } from "path";
|
|
|
2125
2125
|
var APP_KEY = "A-US-3617699429";
|
|
2126
2126
|
var ENDPOINT = "https://us.aptabase.com/api/v0/event";
|
|
2127
2127
|
var PKG_NAME = "@glrs-dev/harness-plugin-opencode";
|
|
2128
|
-
var PKG_VERSION = true ? "2.4.
|
|
2128
|
+
var PKG_VERSION = true ? "2.4.1" : "dev";
|
|
2129
2129
|
var DISABLED = process.env.HARNESS_OPENCODE_TELEMETRY === "0" || process.env.HARNESS_OPENCODE_TELEMETRY === "false" || process.env.DO_NOT_TRACK === "1" || process.env.CI === "true";
|
|
2130
2130
|
var SESSION_ID = randomUUID();
|
|
2131
2131
|
function getInstallId() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glrs-dev/cli",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "Unified CLI for the @glrs-dev ecosystem — OpenCode agent harness dispatch + worktree management.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
21
21
|
"dist",
|
|
22
|
+
"dist/node_modules",
|
|
22
23
|
"CHANGELOG.md"
|
|
23
24
|
],
|
|
24
25
|
"publishConfig": {
|
|
@@ -39,15 +40,17 @@
|
|
|
39
40
|
"build": "bun scripts/build.ts",
|
|
40
41
|
"typecheck": "tsc --noEmit",
|
|
41
42
|
"test": "bun test src/ test/",
|
|
42
|
-
"lint": "echo 'no linter configured yet'"
|
|
43
|
+
"lint": "echo 'no linter configured yet'",
|
|
44
|
+
"prepare-publish": "bun scripts/prepare-publish.ts",
|
|
45
|
+
"restore-publish": "bun scripts/restore-publish.ts",
|
|
46
|
+
"verify-publishable": "bun scripts/verify-publishable.ts",
|
|
47
|
+
"test:publish-shape": "bun test test/publish-shape.test.ts test/pack-install-smoke.test.ts"
|
|
43
48
|
},
|
|
44
49
|
"dependencies": {
|
|
45
|
-
"@glrs-dev/autopilot": "workspace:*",
|
|
46
|
-
"@glrs-dev/adapter-opencode": "workspace:*",
|
|
47
50
|
"@inkjs/ui": "^2.0.0",
|
|
48
51
|
"@inquirer/prompts": "^8.4.2",
|
|
49
|
-
"@opencode-ai/plugin": "^1.
|
|
50
|
-
"@opencode-ai/sdk": "^1.
|
|
52
|
+
"@opencode-ai/plugin": "^1.15",
|
|
53
|
+
"@opencode-ai/sdk": "^1.15",
|
|
51
54
|
"cmd-ts": "^0.15.0",
|
|
52
55
|
"ink": "^5.0.0",
|
|
53
56
|
"picomatch": "^4.0.4",
|
|
@@ -59,7 +62,6 @@
|
|
|
59
62
|
"zod": "4.1.8"
|
|
60
63
|
},
|
|
61
64
|
"devDependencies": {
|
|
62
|
-
"@glrs-dev/harness-plugin-opencode": "workspace:*",
|
|
63
65
|
"@types/bun": "latest",
|
|
64
66
|
"@types/node": "^22",
|
|
65
67
|
"@types/react": "^18.3.0",
|