@kody-ade/kody-engine 0.4.377 → 0.4.378
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 +6 -2
- package/package.json +1 -1
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.378",
|
|
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",
|
|
@@ -21755,10 +21755,14 @@ function workflowConditionContext(data) {
|
|
|
21755
21755
|
};
|
|
21756
21756
|
}
|
|
21757
21757
|
function resolveDottedPath2(root, dotted) {
|
|
21758
|
-
|
|
21758
|
+
const direct = dotted.split(".").reduce((cur, part) => {
|
|
21759
21759
|
if (!cur || typeof cur !== "object") return void 0;
|
|
21760
21760
|
return cur[part];
|
|
21761
21761
|
}, root);
|
|
21762
|
+
if (direct !== void 0 || !dotted.startsWith("result.")) return direct;
|
|
21763
|
+
const result = resolveDottedPath2(root, "result");
|
|
21764
|
+
if (!result || typeof result !== "object" || Array.isArray(result)) return direct;
|
|
21765
|
+
return resolveDottedPath2(result.facts, dotted.slice("result.".length));
|
|
21762
21766
|
}
|
|
21763
21767
|
function valueMatches(actual, expected) {
|
|
21764
21768
|
if (Array.isArray(expected)) return expected.some((entry) => valueMatches(actual, entry));
|
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.378",
|
|
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",
|