@kody-ade/kody-engine 0.4.451 → 0.4.452
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.452",
|
|
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",
|
|
@@ -17121,8 +17121,24 @@ var init_parseSimpleCapabilityOutput = __esm({
|
|
|
17121
17121
|
parseSimpleCapabilityOutput = async (ctx, _profile, agentResult) => {
|
|
17122
17122
|
const output = parseOutput(agentResult?.finalText);
|
|
17123
17123
|
if (output === void 0) {
|
|
17124
|
+
const failure = {
|
|
17125
|
+
status: "failed",
|
|
17126
|
+
summary: "Capability did not return one JSON value"
|
|
17127
|
+
};
|
|
17124
17128
|
ctx.output.exitCode = 64;
|
|
17125
|
-
ctx.output.reason =
|
|
17129
|
+
ctx.output.reason = failure.summary;
|
|
17130
|
+
ctx.data.capabilityOutput = failure;
|
|
17131
|
+
ctx.data.capabilityResults = [
|
|
17132
|
+
{
|
|
17133
|
+
version: 1,
|
|
17134
|
+
status: "blocked",
|
|
17135
|
+
summary: failure.summary,
|
|
17136
|
+
facts: failure,
|
|
17137
|
+
artifacts: [],
|
|
17138
|
+
missingEvidence: [],
|
|
17139
|
+
blockers: [failure.summary]
|
|
17140
|
+
}
|
|
17141
|
+
];
|
|
17126
17142
|
return;
|
|
17127
17143
|
}
|
|
17128
17144
|
ctx.data.capabilityOutput = output;
|
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.452",
|
|
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",
|