@kody-ade/kody-engine 0.4.208 → 0.4.209

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.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -31,6 +31,19 @@
31
31
  }
32
32
  }
33
33
  },
34
+ "brain": {
35
+ "type": "object",
36
+ "description": "Brain backend selection. 'brain-serve' is the engine's built-in Node.js brain; 'hermes' is the Hermes Agent API server. The entrypoint reads brain.mode on boot and exports it as BRAIN_BACKEND for the brain-proxy. BRAIN_BACKEND env var on the Fly Machine overrides this config (dev/CI escape hatch).",
37
+ "additionalProperties": false,
38
+ "properties": {
39
+ "mode": {
40
+ "type": "string",
41
+ "enum": ["brain-serve", "hermes"],
42
+ "default": "brain-serve",
43
+ "description": "Which brain backend the proxy routes to. Overridden by BRAIN_BACKEND env var."
44
+ }
45
+ }
46
+ },
34
47
  "github": {
35
48
  "type": "object",
36
49
  "required": ["owner", "repo"],
@@ -48,7 +61,7 @@
48
61
  "model": {
49
62
  "type": "string",
50
63
  "pattern": "^[^/]+/.+$",
51
- "description": "Base provider/model string, for example minimax/MiniMax-M2.7-highspeed or claude/claude-sonnet-4-6."
64
+ "description": "Base provider/model string, for example minimax/MiniMax-M3 or claude/claude-sonnet-4-6."
52
65
  },
53
66
  "perExecutable": {
54
67
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.208",
3
+ "version": "0.4.209",
4
4
  "description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -12,9 +12,30 @@
12
12
  "templates",
13
13
  "kody.config.schema.json"
14
14
  ],
15
+ "scripts": {
16
+ "kody:run": "tsx bin/kody.ts",
17
+ "serve": "tsx bin/kody.ts serve",
18
+ "serve:vscode": "tsx bin/kody.ts serve vscode",
19
+ "serve:claude": "tsx bin/kody.ts serve claude",
20
+ "build": "tsup && node scripts/copy-assets.cjs",
21
+ "check:modularity": "tsx scripts/check-script-modularity.ts",
22
+ "pretest": "pnpm check:modularity",
23
+ "test": "vitest run tests/unit tests/int --coverage",
24
+ "posttest": "tsx scripts/check-coverage-floor.ts",
25
+ "test:smoke": "vitest run tests/smoke --no-coverage",
26
+ "test:e2e": "vitest run tests/e2e --no-coverage",
27
+ "test:all": "vitest run tests --no-coverage",
28
+ "typecheck": "tsc --noEmit",
29
+ "lint": "biome check",
30
+ "lint:fix": "biome check --write",
31
+ "format": "biome format --write",
32
+ "brain:publish": "docker buildx build --platform linux/amd64 -f runner/Dockerfile.brain -t ghcr.io/${KODY_BRAIN_GHCR_OWNER:-aharonyaircohen}/kody-brain:latest --push runner",
33
+ "prepublishOnly": "pnpm typecheck && vitest run tests/unit tests/int --no-coverage && pnpm build"
34
+ },
15
35
  "dependencies": {
16
36
  "@actions/cache": "^6.0.0",
17
37
  "@anthropic-ai/claude-agent-sdk": "0.2.119",
38
+ "@modelcontextprotocol/sdk": "^1.29.0",
18
39
  "zod": "^4.0.0"
19
40
  },
20
41
  "devDependencies": {
@@ -34,24 +55,5 @@
34
55
  "url": "git+https://github.com/aharonyaircohen/kody-engine.git"
35
56
  },
36
57
  "homepage": "https://github.com/aharonyaircohen/kody-engine",
37
- "bugs": "https://github.com/aharonyaircohen/kody-engine/issues",
38
- "scripts": {
39
- "kody:run": "tsx bin/kody.ts",
40
- "serve": "tsx bin/kody.ts serve",
41
- "serve:vscode": "tsx bin/kody.ts serve vscode",
42
- "serve:claude": "tsx bin/kody.ts serve claude",
43
- "build": "tsup && node scripts/copy-assets.cjs",
44
- "check:modularity": "tsx scripts/check-script-modularity.ts",
45
- "pretest": "pnpm check:modularity",
46
- "test": "vitest run tests/unit tests/int --coverage",
47
- "posttest": "tsx scripts/check-coverage-floor.ts",
48
- "test:smoke": "vitest run tests/smoke --no-coverage",
49
- "test:e2e": "vitest run tests/e2e --no-coverage",
50
- "test:all": "vitest run tests --no-coverage",
51
- "typecheck": "tsc --noEmit",
52
- "lint": "biome check",
53
- "lint:fix": "biome check --write",
54
- "format": "biome format --write",
55
- "brain:publish": "docker buildx build --platform linux/amd64 -f runner/Dockerfile.brain -t ghcr.io/${KODY_BRAIN_GHCR_OWNER:-aharonyaircohen}/kody-brain:latest --push runner"
56
- }
57
- }
58
+ "bugs": "https://github.com/aharonyaircohen/kody-engine/issues"
59
+ }