@kody-ade/kody-engine 0.4.229 → 0.4.230
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 +4 -4
- package/package.json +1 -1
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.230",
|
|
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",
|
|
@@ -12895,7 +12895,7 @@ var runScheduledExecutableTick;
|
|
|
12895
12895
|
var init_runScheduledExecutableTick = __esm({
|
|
12896
12896
|
"src/scripts/runScheduledExecutableTick.ts"() {
|
|
12897
12897
|
"use strict";
|
|
12898
|
-
|
|
12898
|
+
init_registry();
|
|
12899
12899
|
init_jobState();
|
|
12900
12900
|
init_tickShellRunner();
|
|
12901
12901
|
runScheduledExecutableTick = async (ctx, profile, args) => {
|
|
@@ -12910,10 +12910,10 @@ var init_runScheduledExecutableTick = __esm({
|
|
|
12910
12910
|
ctx.output.reason = `runScheduledExecutableTick: ctx.args.${slugArg} must be non-empty duty slug`;
|
|
12911
12911
|
return;
|
|
12912
12912
|
}
|
|
12913
|
-
const duty =
|
|
12913
|
+
const duty = resolveDutyFolder(slug, path37.join(ctx.cwd, jobsDir));
|
|
12914
12914
|
if (!duty) {
|
|
12915
12915
|
ctx.output.exitCode = 99;
|
|
12916
|
-
ctx.output.reason = `runScheduledExecutableTick: duty folder not found or incomplete: ${
|
|
12916
|
+
ctx.output.reason = `runScheduledExecutableTick: duty folder not found or incomplete: ${slug} (searched ${jobsDir} and company store)`;
|
|
12917
12917
|
return;
|
|
12918
12918
|
}
|
|
12919
12919
|
const shellPath = path37.join(profile.dir, shell);
|
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.230",
|
|
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",
|