@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.
|
|
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);
|
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.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",
|
package/templates/kody.yml
CHANGED