@agentproto/corpus-cli 0.3.0 → 0.4.0

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.
@@ -36,6 +36,11 @@
36
36
  "items": { "type": "string" },
37
37
  "description": "Default argv prefix (e.g. ['acp'] for `hermes acp`)."
38
38
  },
39
+ "env": {
40
+ "type": "object",
41
+ "additionalProperties": { "type": "string" },
42
+ "description": "Static environment variables always merged into the spawn env, before any mode/option env patch (so those can override). Always-on counterpart to modes[].env / options[].env. Primary user is a generic ACP agent whose whole config surface is bin + args + env."
43
+ },
39
44
  "install": {
40
45
  "type": "array",
41
46
  "minItems": 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentproto/corpus-cli",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "@agentproto/corpus-cli — the `corpus` binary. Validate, lint, and operate an AIP-10 corpus workspace from the command line. Local-topology host for @agentproto/corpus — pair with a local backing engine (qdrant docker / gbrain) for a fully offline corpus runtime.",
5
5
  "keywords": [
6
6
  "agentproto",
@@ -18,7 +18,7 @@
18
18
  "bugs": {
19
19
  "url": "https://github.com/agentproto/ts/issues"
20
20
  },
21
- "license": "MIT",
21
+ "license": "Apache-2.0",
22
22
  "type": "module",
23
23
  "main": "dist/index.mjs",
24
24
  "module": "dist/index.mjs",
@@ -51,9 +51,9 @@
51
51
  "dependencies": {
52
52
  "gray-matter": "^4.0.3",
53
53
  "zod": "^4.4.3",
54
- "@agentproto/cli-exec": "0.1.0-alpha.1",
55
- "@agentproto/corpus": "0.2.1",
56
- "@agentproto/corpus-presets": "0.2.1"
54
+ "@agentproto/cli-exec": "0.1.0",
55
+ "@agentproto/corpus": "0.3.0",
56
+ "@agentproto/corpus-presets": "0.2.2"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/node": "^25.6.2",