@kody-ade/kody-engine 0.3.58 → 0.3.61
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/dist/bin/kody.js +589 -346
- package/dist/executables/release-deploy/deploy.sh +0 -0
- package/dist/executables/release-prepare/prepare.sh +0 -0
- package/dist/executables/release-publish/publish.sh +0 -0
- package/dist/executables/resolve/apply-prefer.sh +0 -0
- package/dist/executables/revert/revert.sh +0 -0
- package/dist/executables/run/profile.json +1 -1
- package/kody.config.schema.json +13 -0
- package/package.json +16 -14
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
{ "script": "checkCoverageWithRetry" },
|
|
59
59
|
{ "script": "abortUnfinishedGitOps" },
|
|
60
60
|
{ "script": "commitAndPush" },
|
|
61
|
-
{ "script": "ensurePr" },
|
|
61
|
+
{ "script": "ensurePr", "runWhen": { "data.verifyOk": true } },
|
|
62
62
|
{ "script": "postIssueComment" },
|
|
63
63
|
{ "script": "writeRunSummary" },
|
|
64
64
|
{ "script": "saveTaskState" },
|
package/kody.config.schema.json
CHANGED
|
@@ -383,6 +383,19 @@
|
|
|
383
383
|
},
|
|
384
384
|
"additionalProperties": false
|
|
385
385
|
},
|
|
386
|
+
"missions": {
|
|
387
|
+
"type": "object",
|
|
388
|
+
"description": "File-based mission configuration. Missions are long-running scheduled executables defined under .kody/missions/<slug>.md.",
|
|
389
|
+
"properties": {
|
|
390
|
+
"stateBackend": {
|
|
391
|
+
"type": "string",
|
|
392
|
+
"enum": ["contents-api", "local-file"],
|
|
393
|
+
"description": "Storage backend for mission state. \"contents-api\" (default) commits state to a tracked file via the GitHub Contents API — durable across runs but creates a commit per change. \"local-file\" stores state on disk and snapshots it to the GitHub Actions cache between workflow runs — no commit churn, but bound to cache eviction (7-day idle).",
|
|
394
|
+
"default": "contents-api"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"additionalProperties": false
|
|
398
|
+
},
|
|
386
399
|
"devServer": {
|
|
387
400
|
"type": "object",
|
|
388
401
|
"description": "Dev server configuration for browser tool verification. Works with any provider (MCP or CLI-based).",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.61",
|
|
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,7 +12,20 @@
|
|
|
12
12
|
"templates",
|
|
13
13
|
"kody.config.schema.json"
|
|
14
14
|
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"kody": "tsx bin/kody.ts",
|
|
17
|
+
"build": "tsup && node scripts/copy-assets.cjs",
|
|
18
|
+
"test": "vitest run tests/unit tests/int --no-coverage",
|
|
19
|
+
"test:e2e": "vitest run tests/e2e --no-coverage",
|
|
20
|
+
"test:all": "vitest run tests --no-coverage",
|
|
21
|
+
"typecheck": "tsc --noEmit",
|
|
22
|
+
"lint": "biome check",
|
|
23
|
+
"lint:fix": "biome check --write",
|
|
24
|
+
"format": "biome format --write",
|
|
25
|
+
"prepublishOnly": "pnpm build"
|
|
26
|
+
},
|
|
15
27
|
"dependencies": {
|
|
28
|
+
"@actions/cache": "^6.0.0",
|
|
16
29
|
"@anthropic-ai/claude-agent-sdk": "0.2.119"
|
|
17
30
|
},
|
|
18
31
|
"devDependencies": {
|
|
@@ -31,16 +44,5 @@
|
|
|
31
44
|
"url": "git+https://github.com/aharonyaircohen/kody-engine.git"
|
|
32
45
|
},
|
|
33
46
|
"homepage": "https://github.com/aharonyaircohen/kody-engine",
|
|
34
|
-
"bugs": "https://github.com/aharonyaircohen/kody-engine/issues"
|
|
35
|
-
|
|
36
|
-
"kody": "tsx bin/kody.ts",
|
|
37
|
-
"build": "tsup && node scripts/copy-assets.cjs",
|
|
38
|
-
"test": "vitest run tests/unit tests/int --no-coverage",
|
|
39
|
-
"test:e2e": "vitest run tests/e2e --no-coverage",
|
|
40
|
-
"test:all": "vitest run tests --no-coverage",
|
|
41
|
-
"typecheck": "tsc --noEmit",
|
|
42
|
-
"lint": "biome check",
|
|
43
|
-
"lint:fix": "biome check --write",
|
|
44
|
-
"format": "biome format --write"
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
+
"bugs": "https://github.com/aharonyaircohen/kody-engine/issues"
|
|
48
|
+
}
|