@nail00749/agent-gvozd 0.1.4 → 0.1.5
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/README.md +3 -3
- package/dist/cli.js +2 -2
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gvozd installs one permission-aware agent team globally, so every OpenCode
|
|
4
4
|
project can use it without copying plugin or agent files into the repository.
|
|
5
|
-
Release `0.1.
|
|
5
|
+
Release `0.1.5` targets OpenCode V2 `2.0.2` exactly.
|
|
6
6
|
|
|
7
7
|
## Global setup
|
|
8
8
|
|
|
@@ -140,7 +140,7 @@ a build-consistency check that detects changes after packing; it is not an
|
|
|
140
140
|
external provenance assertion. Review and protected checkout controls remain
|
|
141
141
|
the source-provenance boundary.
|
|
142
142
|
|
|
143
|
-
The executable must report exactly `
|
|
143
|
+
The executable must report exactly `2.0.2`. The gate gives child
|
|
144
144
|
processes a minimal allowlisted environment and isolated HOME, XDG config,
|
|
145
145
|
temporary, and project directories. Commands have timeouts, bounded output,
|
|
146
146
|
and redacted failure messages. The pinned CLI exposes no credential-free
|
|
@@ -211,7 +211,7 @@ and diagnostics. Runtime/config loading resolves its root in this order:
|
|
|
211
211
|
4. `APPDATA/opencode` on Windows;
|
|
212
212
|
5. `~/.config/opencode`.
|
|
213
213
|
|
|
214
|
-
OpenCode `
|
|
214
|
+
OpenCode `2.0.2` does not expose its config root in the plugin
|
|
215
215
|
context. The runtime therefore cannot infer a nonstandard host root from
|
|
216
216
|
`debug paths`. If Doctor reports a mismatch, set
|
|
217
217
|
`GVOZD_OPENCODE_CONFIG_ROOT` to the absolute path printed by
|
package/dist/cli.js
CHANGED
|
@@ -7336,9 +7336,9 @@ function buildAgentPermissions(agent, mcpServers) {
|
|
|
7336
7336
|
|
|
7337
7337
|
// src/release-metadata.ts
|
|
7338
7338
|
var PACKAGE_NAME = "@nail00749/agent-gvozd";
|
|
7339
|
-
var PACKAGE_VERSION = "0.1.
|
|
7339
|
+
var PACKAGE_VERSION = "0.1.5";
|
|
7340
7340
|
var PACKAGE_SPEC = `${PACKAGE_NAME}@${PACKAGE_VERSION}`;
|
|
7341
|
-
var SUPPORTED_OPENCODE_VERSION = "
|
|
7341
|
+
var SUPPORTED_OPENCODE_VERSION = "2.0.2";
|
|
7342
7342
|
var CONFIG_SCHEMA_VERSION = 2;
|
|
7343
7343
|
|
|
7344
7344
|
// src/constants.ts
|
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nail00749/agent-gvozd",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "A globally configured, permission-aware agent team for OpenCode V2",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"keywords": [
|
|
6
|
+
"keywords": [
|
|
7
|
+
"opencode",
|
|
8
|
+
"agents",
|
|
9
|
+
"multi-agent",
|
|
10
|
+
"cli"
|
|
11
|
+
],
|
|
7
12
|
"repository": {
|
|
8
13
|
"type": "git",
|
|
9
14
|
"url": "git+https://github.com/nail00749/opencode-agent.git"
|
|
@@ -46,7 +51,7 @@
|
|
|
46
51
|
},
|
|
47
52
|
"dependencies": {
|
|
48
53
|
"@clack/prompts": "1.8.0",
|
|
49
|
-
"@opencode/plugin": "
|
|
54
|
+
"@opencode/plugin": "2.0.2",
|
|
50
55
|
"jsonc-parser": "3.3.1",
|
|
51
56
|
"zod": "4.4.3"
|
|
52
57
|
},
|