@kody-ade/kody-engine 0.4.468 → 0.4.469

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.
Files changed (2) hide show
  1. package/dist/bin/kody.js +4 -3
  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.468",
18
+ version: "0.4.469",
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",
@@ -25561,6 +25561,7 @@ async function runCi(argv) {
25561
25561
  }
25562
25562
  if (parsedRunRequest && "request" in parsedRunRequest) {
25563
25563
  }
25564
+ const explicitLoopRequest = parsedRunRequest && "request" in parsedRunRequest && parsedRunRequest.request.target.type === "loop";
25564
25565
  if (!args.issueNumber && !autoFallback && parsedRunRequest && "request" in parsedRunRequest) {
25565
25566
  const route = routeRunRequest(parsedRunRequest.request);
25566
25567
  if (route.kind === "error") {
@@ -25631,11 +25632,11 @@ async function runCi(argv) {
25631
25632
  cliArgs: directExecution.cliArgs,
25632
25633
  source: "project-folder"
25633
25634
  } : null);
25634
- const workflowRoute = manualGoalManager || capabilityRoute || !readWorkflowDefinition(config, cwd, forceRunAction) ? void 0 : {
25635
+ const workflowRoute = manualGoalManager || capabilityRoute || explicitLoopRequest || !readWorkflowDefinition(config, cwd, forceRunAction) ? void 0 : {
25635
25636
  workflow: forceRunAction,
25636
25637
  cliArgs: {}
25637
25638
  };
25638
- const loop = manualGoalManager || capabilityRoute || workflowRoute ? null : readLoopDefinition(cwd, forceRunAction);
25639
+ const loop = manualGoalManager || capabilityRoute || workflowRoute || explicitLoopRequest ? null : readLoopDefinition(cwd, forceRunAction);
25639
25640
  const loopRoute = loop ? loop.target.kind === "workflow" ? { workflow: loop.target.id, cliArgs: loop.input } : { capability: loop.target.id, action: loop.target.id, cliArgs: loop.input } : void 0;
25640
25641
  const scheduledWatchRoute = manualGoalManager || capabilityRoute || workflowRoute || loopRoute ? void 0 : dispatchScheduledWatches({ force: true, cwd }).find(
25641
25642
  (match) => match.action === forceRunAction || match.capability === forceRunAction || match.implementation === forceRunAction
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.468",
3
+ "version": "0.4.469",
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",