@kody-ade/kody-engine 0.4.448 → 0.4.449

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.
Files changed (2) hide show
  1. package/dist/bin/kody.js +11 -1
  2. 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.448",
18
+ version: "0.4.449",
19
19
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative implementation profiles.",
20
20
  license: "MIT",
21
21
  type: "module",
@@ -13984,6 +13984,10 @@ var init_dispatchSimpleLoops = __esm({
13984
13984
  const due = listLoopDefinitions(ctx.cwd).filter(
13985
13985
  (loop) => loop.enabled && loop.trigger.type === "schedule" && (force || dueSlot(loop, now) !== null)
13986
13986
  );
13987
+ process.stdout.write(
13988
+ `\u2192 kody: Loop scheduler found ${due.length} runnable Loop(s)${force ? " (manual)" : ""}
13989
+ `
13990
+ );
13987
13991
  const backend = createStateBackendFromEnv();
13988
13992
  const results = [];
13989
13993
  for (const loop of due) {
@@ -14027,6 +14031,12 @@ var init_dispatchSimpleLoops = __esm({
14027
14031
  await backend.finishAgencyDispatch(tenantId2, idempotencyKey, reservationId, status, (/* @__PURE__ */ new Date()).toISOString());
14028
14032
  results.push({ loopId: loop.id, status, reason: result.reason ?? status });
14029
14033
  }
14034
+ for (const result of results) {
14035
+ process.stdout.write(
14036
+ `\u2192 kody: Loop ${result.loopId} ${result.status}: ${result.reason}
14037
+ `
14038
+ );
14039
+ }
14030
14040
  ctx.data.simpleLoopDispatchResults = results;
14031
14041
  };
14032
14042
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.448",
3
+ "version": "0.4.449",
4
4
  "description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative implementation profiles.",
5
5
  "license": "MIT",
6
6
  "type": "module",