@kody-ade/kody-engine 0.4.548 → 0.4.550

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
@@ -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.548",
18
+ version: "0.4.550",
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",
@@ -17046,6 +17046,10 @@ function parseOutput(text2) {
17046
17046
  if (labelledOutput.found) return labelledOutput.value;
17047
17047
  const plainOutput = parseSingleJsonCandidate(fences.filter((match) => !match[1]).map((match) => match[2]));
17048
17048
  if (plainOutput.found) return plainOutput.value;
17049
+ const finalStatusOutput = parseSingleJsonCandidate(
17050
+ [...text2.matchAll(/<final_status>\s*([\s\S]*?)\s*<\/final_status>/gi)].map((match) => match[1])
17051
+ );
17052
+ if (finalStatusOutput.found) return finalStatusOutput.value;
17049
17053
  const legacyText = text2.trim();
17050
17054
  return legacyText ? { summary: legacyText, output: legacyText } : void 0;
17051
17055
  }
@@ -17926,8 +17930,8 @@ var prepareCapabilityDelivery;
17926
17930
  var init_prepareCapabilityDelivery = __esm({
17927
17931
  "src/scripts/prepareCapabilityDelivery.ts"() {
17928
17932
  "use strict";
17929
- init_capabilityDelivery();
17930
17933
  init_branch();
17934
+ init_capabilityDelivery();
17931
17935
  init_runFlow();
17932
17936
  prepareCapabilityDelivery = async (ctx, profile) => {
17933
17937
  const target = capabilityDeliveryTarget(ctx.data.capabilityInput);
@@ -36,7 +36,7 @@
36
36
  "claudeCode": {
37
37
  "model": "inherit",
38
38
  "permissionMode": "acceptEdits",
39
- "maxTurns": 60,
39
+ "maxTurns": 144,
40
40
  "maxThinkingTokens": null,
41
41
  "systemPromptAppend": null,
42
42
  "enableVerifyTool": true,
@@ -23,7 +23,7 @@
23
23
  "claudeCode": {
24
24
  "model": "inherit",
25
25
  "permissionMode": "acceptEdits",
26
- "maxTurns": 60,
26
+ "maxTurns": 144,
27
27
  "maxThinkingTokens": null,
28
28
  "systemPromptAppend": null,
29
29
  "tools": ["Read", "Bash", "Edit", "Write", "Glob", "Grep"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.548",
3
+ "version": "0.4.550",
4
4
  "description": "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative implementation profiles.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -93,6 +93,6 @@ jobs:
93
93
  uses: actions/upload-artifact@v4
94
94
  with:
95
95
  name: kody-quality-${{ github.run_id }}
96
- path: apps/dashboard/test-results/live-ui-gate/
96
+ path: test-results/quality-runs/
97
97
  if-no-files-found: ignore
98
98
  retention-days: 30