@kody-ade/kody-engine 0.3.85 → 0.3.87

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.85",
6
+ version: "0.3.87",
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",
@@ -2318,7 +2318,9 @@ function parseAgentResult(finalText) {
2318
2318
  }
2319
2319
  const hasDoneMarker = DONE_RE.test(text);
2320
2320
  const hasCommitMsg = /^[\s>*_#`~-]*COMMIT_MSG\s*:/im.test(text);
2321
- if (!hasDoneMarker && !hasCommitMsg) {
2321
+ const hasPrSummary = /^[\s>*_#`~-]*PR_SUMMARY\s*:/im.test(text);
2322
+ if (!hasDoneMarker && !hasCommitMsg && !hasPrSummary) {
2323
+ const tail = text.length > 400 ? `\u2026${text.slice(-400)}` : text;
2322
2324
  return {
2323
2325
  done: false,
2324
2326
  commitMessage: "",
@@ -2326,7 +2328,7 @@ function parseAgentResult(finalText) {
2326
2328
  feedbackActions: "",
2327
2329
  planDeviations: "",
2328
2330
  priorArt: "",
2329
- failureReason: "no DONE or FAILED marker in agent output"
2331
+ failureReason: `no DONE or FAILED marker in agent output \u2014 agent tail: ${tail}`
2330
2332
  };
2331
2333
  }
2332
2334
  const commitMatch = text.match(/^[\s>*_#`~-]*COMMIT_MSG[\s>*_#`~-]*\s*:\s*(.+)$/im);
@@ -8627,7 +8629,7 @@ ${HELP_TEXT}`);
8627
8629
  }
8628
8630
  }
8629
8631
  const cwd = args.cwd ?? process.cwd();
8630
- const configlessCommands = /* @__PURE__ */ new Set(["init"]);
8632
+ const configlessCommands = /* @__PURE__ */ new Set(["init", "goal-tick", "goal-scheduler"]);
8631
8633
  const skipConfig = configlessCommands.has(args.executableName ?? "");
8632
8634
  try {
8633
8635
  const result = await runExecutable(args.executableName, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.3.85",
3
+ "version": "0.3.87",
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",
@@ -54,7 +54,7 @@ on:
54
54
  # `memorize` writes to `.kody/vault/` and opens a daily PR. If your
55
55
  # `.gitignore` ignores `.kody/*`, add `!.kody/vault/` and `!.kody/vault/**`
56
56
  # so memorize's pages are tracked.
57
- - cron: "*/30 * * * *"
57
+ - cron: "*/15 * * * *"
58
58
 
59
59
  jobs:
60
60
  run: