@kody-ade/kody-engine 0.4.201 → 0.4.202

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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.201",
3
+ "version": "0.4.202",
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,25 +12,6 @@
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
- "test:smoke": "vitest run tests/smoke --no-coverage",
25
- "test:e2e": "vitest run tests/e2e --no-coverage",
26
- "test:all": "vitest run tests --no-coverage",
27
- "typecheck": "tsc --noEmit",
28
- "lint": "biome check",
29
- "lint:fix": "biome check --write",
30
- "format": "biome format --write",
31
- "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",
32
- "prepublishOnly": "pnpm typecheck && vitest run tests/unit tests/int --no-coverage && pnpm build"
33
- },
34
15
  "dependencies": {
35
16
  "@actions/cache": "^6.0.0",
36
17
  "@anthropic-ai/claude-agent-sdk": "0.2.119",
@@ -53,5 +34,23 @@
53
34
  "url": "git+https://github.com/aharonyaircohen/kody-engine.git"
54
35
  },
55
36
  "homepage": "https://github.com/aharonyaircohen/kody-engine",
56
- "bugs": "https://github.com/aharonyaircohen/kody-engine/issues"
57
- }
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
+ "test:smoke": "vitest run tests/smoke --no-coverage",
48
+ "test:e2e": "vitest run tests/e2e --no-coverage",
49
+ "test:all": "vitest run tests --no-coverage",
50
+ "typecheck": "tsc --noEmit",
51
+ "lint": "biome check",
52
+ "lint:fix": "biome check --write",
53
+ "format": "biome format --write",
54
+ "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"
55
+ }
56
+ }