@kody-ade/kody-engine 0.4.263 → 0.4.264
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 +3 -2
- package/package.json +3 -2
package/dist/bin/kody.js
CHANGED
|
@@ -15,7 +15,7 @@ var init_package = __esm({
|
|
|
15
15
|
"package.json"() {
|
|
16
16
|
package_default = {
|
|
17
17
|
name: "@kody-ade/kody-engine",
|
|
18
|
-
version: "0.4.
|
|
18
|
+
version: "0.4.264",
|
|
19
19
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
20
20
|
license: "MIT",
|
|
21
21
|
type: "module",
|
|
@@ -32,7 +32,8 @@ var init_package = __esm({
|
|
|
32
32
|
serve: "tsx bin/kody.ts serve",
|
|
33
33
|
"serve:vscode": "tsx bin/kody.ts serve vscode",
|
|
34
34
|
"serve:claude": "tsx bin/kody.ts serve claude",
|
|
35
|
-
|
|
35
|
+
"clean:dist": "node scripts/clean-dist.cjs",
|
|
36
|
+
build: "pnpm clean:dist && tsup && node scripts/copy-assets.cjs",
|
|
36
37
|
"check:modularity": "tsx scripts/check-script-modularity.ts",
|
|
37
38
|
pretest: "pnpm check:modularity",
|
|
38
39
|
test: "vitest run tests/unit tests/int --coverage",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.264",
|
|
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",
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
"serve": "tsx bin/kody.ts serve",
|
|
42
42
|
"serve:vscode": "tsx bin/kody.ts serve vscode",
|
|
43
43
|
"serve:claude": "tsx bin/kody.ts serve claude",
|
|
44
|
-
"
|
|
44
|
+
"clean:dist": "node scripts/clean-dist.cjs",
|
|
45
|
+
"build": "pnpm clean:dist && tsup && node scripts/copy-assets.cjs",
|
|
45
46
|
"check:modularity": "tsx scripts/check-script-modularity.ts",
|
|
46
47
|
"pretest": "pnpm check:modularity",
|
|
47
48
|
"test": "vitest run tests/unit tests/int --coverage",
|