@kody-ade/kody-engine 0.4.343 → 0.4.344
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 -7
- 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.344",
|
|
19
19
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
20
20
|
license: "MIT",
|
|
21
21
|
type: "module",
|
|
@@ -6721,7 +6721,7 @@ var init_evaluateAgencyBoundaries = __esm({
|
|
|
6721
6721
|
init_agencyBoundaryEval();
|
|
6722
6722
|
init_capabilityResult();
|
|
6723
6723
|
evaluateAgencyBoundariesScript = async (ctx, profile, agentResult) => {
|
|
6724
|
-
const results = collectResults(ctx.data.capabilityResults
|
|
6724
|
+
const results = collectResults(ctx.data.capabilityResults, agentResult);
|
|
6725
6725
|
const capabilityKind = agencyBoundaryCapabilityKind(ctx.data, profile);
|
|
6726
6726
|
const capability = agencyBoundaryCapability(ctx.data, profile);
|
|
6727
6727
|
const evalResult = evaluateAgencyBoundaries({
|
|
@@ -10918,7 +10918,7 @@ var init_applyCapabilityReports = __esm({
|
|
|
10918
10918
|
init_issue();
|
|
10919
10919
|
applyCapabilityReports = async (ctx, _profile, agentResult) => {
|
|
10920
10920
|
const reports = collectReports(ctx.data.capabilityReports, agentResult);
|
|
10921
|
-
const results = collectResults2(ctx.data.capabilityResults
|
|
10921
|
+
const results = collectResults2(ctx.data.capabilityResults, agentResult);
|
|
10922
10922
|
const resultTarget = parseResultTarget(ctx.data.capabilityResultTarget);
|
|
10923
10923
|
const resultGoalId = resultTarget?.id ?? (typeof ctx.args.goal === "string" && ctx.args.goal.length > 0 ? ctx.args.goal : null);
|
|
10924
10924
|
const explicitEvidence = resultTarget?.evidence ?? (typeof ctx.args.evidence === "string" && ctx.args.evidence.length > 0 ? ctx.args.evidence : void 0);
|
|
@@ -19748,9 +19748,8 @@ function collectShellSideChannels(ctx, stdout) {
|
|
|
19748
19748
|
}
|
|
19749
19749
|
const capabilityResults = parseCapabilityResultsFromText(stdout);
|
|
19750
19750
|
if (capabilityResults.length > 0) {
|
|
19751
|
-
const prior = Array.isArray(ctx.data.capabilityResults) ? ctx.data.capabilityResults :
|
|
19751
|
+
const prior = Array.isArray(ctx.data.capabilityResults) ? ctx.data.capabilityResults : [];
|
|
19752
19752
|
ctx.data.capabilityResults = [...prior, ...capabilityResults];
|
|
19753
|
-
ctx.data.dutyResults = ctx.data.capabilityResults;
|
|
19754
19753
|
}
|
|
19755
19754
|
}
|
|
19756
19755
|
function operatorRequestBlock(why) {
|
|
@@ -20345,8 +20344,8 @@ async function runExecutableChain(profileName, input) {
|
|
|
20345
20344
|
return result;
|
|
20346
20345
|
}
|
|
20347
20346
|
function handoffToJob(handoff) {
|
|
20348
|
-
const
|
|
20349
|
-
if (!
|
|
20347
|
+
const capabilityOrAction = handoff.workflow ?? handoff.action ?? handoff.capability;
|
|
20348
|
+
if (!capabilityOrAction) return null;
|
|
20350
20349
|
return {
|
|
20351
20350
|
action: handoff.action ?? handoff.capability,
|
|
20352
20351
|
capability: handoff.capability,
|
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.344",
|
|
4
4
|
"description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|