@glrs-dev/harness-plugin-opencode 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/index.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#75](https://github.com/iceglober/glrs/pull/75) [`9532a63`](https://github.com/iceglober/glrs/commit/9532a63157cc0edad7822452e710848052dde9fa) Thanks [@iceglober](https://github.com/iceglober)! - Fix `@glrs-dev/cli@2.4.0` install failure caused by `workspace:*` references to private packages leaking into the published tarball. The cli now vendors `@glrs-dev/autopilot` and `@glrs-dev/adapter-opencode` into its `dist/node_modules/` and strips workspace references from the published `package.json`.
|
|
8
|
+
|
|
3
9
|
## 2.4.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -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/harness-plugin-opencode",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "Opinionated OpenCode agent harness — PRIME, plan, build, QA, skills, MCP wiring, hashline editing.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"dev:nobuild": "bash -c 'PKG_DIR=\"$PWD\"; cd \"${INIT_CWD:-$PWD}\" && GLRS_CLI_DISPATCHED=1 exec bun \"$PKG_DIR/dist/cli.js\" \"$@\"' --"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@opencode-ai/plugin": "^1.
|
|
32
|
-
"@opencode-ai/sdk": "^1.
|
|
31
|
+
"@opencode-ai/plugin": "^1.15",
|
|
32
|
+
"@opencode-ai/sdk": "^1.15"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@opencode-ai/plugin": "^1.
|
|
36
|
-
"@opencode-ai/sdk": "^1.
|
|
35
|
+
"@opencode-ai/plugin": "^1.15",
|
|
36
|
+
"@opencode-ai/sdk": "^1.15",
|
|
37
37
|
"@types/bun": "latest",
|
|
38
38
|
"@types/node": "^22",
|
|
39
39
|
"@types/picomatch": "^4.0.3",
|