@kody-ade/kody-engine 0.4.562 → 0.4.563
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 +7 -3
- 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.563",
|
|
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",
|
|
@@ -2538,6 +2538,10 @@ function resolveCapabilityAction(action, projectCapabilitiesRoot = getProjectCap
|
|
|
2538
2538
|
if (!isSafeName(action)) return null;
|
|
2539
2539
|
return listCapabilityActions(projectCapabilitiesRoot).find((d) => d.action === action) ?? null;
|
|
2540
2540
|
}
|
|
2541
|
+
function resolveOperatorCapabilityAction(action, projectCapabilitiesRoot = getProjectCapabilitiesRoot()) {
|
|
2542
|
+
if (!isSafeName(action)) return null;
|
|
2543
|
+
return listBuiltinCapabilityActions(getBuiltinCapabilitiesRoot()).find((candidate) => candidate.action === action) ?? resolveCapabilityAction(action, projectCapabilitiesRoot);
|
|
2544
|
+
}
|
|
2541
2545
|
function hasCapabilityAction(action, projectCapabilitiesRoot = getProjectCapabilitiesRoot()) {
|
|
2542
2546
|
return resolveCapabilityAction(action, projectCapabilitiesRoot) !== null;
|
|
2543
2547
|
}
|
|
@@ -25573,10 +25577,10 @@ function primaryNumericInputName(implementation) {
|
|
|
25573
25577
|
return intInput?.name ?? null;
|
|
25574
25578
|
}
|
|
25575
25579
|
function resolveOperatorAction(action, projectCapabilitiesRoot) {
|
|
25576
|
-
return
|
|
25580
|
+
return resolveOperatorCapabilityAction(action, projectCapabilitiesRoot);
|
|
25577
25581
|
}
|
|
25578
25582
|
function resolveConfiguredAction(action, projectCapabilitiesRoot) {
|
|
25579
|
-
return
|
|
25583
|
+
return resolveOperatorCapabilityAction(action, projectCapabilitiesRoot);
|
|
25580
25584
|
}
|
|
25581
25585
|
function requiredRoute(action, projectCapabilitiesRoot) {
|
|
25582
25586
|
const route = resolveConfiguredAction(action, projectCapabilitiesRoot);
|
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.563",
|
|
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",
|