@kody-ade/kody-engine 0.3.84 → 0.3.86

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 CHANGED
@@ -3,7 +3,7 @@
3
3
  // package.json
4
4
  var package_default = {
5
5
  name: "@kody-ade/kody-engine",
6
- version: "0.3.84",
6
+ version: "0.3.86",
7
7
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
8
8
  license: "MIT",
9
9
  type: "module",
@@ -8627,7 +8627,7 @@ ${HELP_TEXT}`);
8627
8627
  }
8628
8628
  }
8629
8629
  const cwd = args.cwd ?? process.cwd();
8630
- const configlessCommands = /* @__PURE__ */ new Set(["init"]);
8630
+ const configlessCommands = /* @__PURE__ */ new Set(["init", "goal-tick", "goal-scheduler"]);
8631
8631
  const skipConfig = configlessCommands.has(args.executableName ?? "");
8632
8632
  try {
8633
8633
  const result = await runExecutable(args.executableName, {
@@ -41,8 +41,10 @@ for state_file in "${state_files[@]}"; do
41
41
  active=$((active + 1))
42
42
  echo "[goal-scheduler] → tick $goal_id"
43
43
 
44
- # Run the tick in a subshell so a non-zero exit doesn't kill the loop.
45
- if ! kody dispatch goal-tick --goal "$goal_id"; then
44
+ # Run the tick. Top-level kody invocation is `kody <executable>`
45
+ # there's no `dispatch` subcommand. A non-zero exit logs and continues
46
+ # so one stuck goal doesn't starve the rest of the schedule.
47
+ if ! kody goal-tick --goal "$goal_id"; then
46
48
  echo "[goal-scheduler] tick $goal_id failed (continuing)"
47
49
  fi
48
50
  done
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.3.84",
3
+ "version": "0.3.86",
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",