@kody-ade/kody-engine-lite 0.1.18 → 0.1.20

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/cli.js +3 -3
  2. package/package.json +1 -1
package/dist/bin/cli.js CHANGED
@@ -110,7 +110,7 @@ function createClaudeCodeRunner() {
110
110
  function createOpenCodeRunner() {
111
111
  return {
112
112
  async run(stageName, prompt, model, timeout, _taskDir, options) {
113
- const args2 = ["run"];
113
+ const args2 = ["run", "--agent", "build"];
114
114
  if (model) {
115
115
  args2.push("--model", model);
116
116
  }
@@ -1838,8 +1838,8 @@ ${issue.body ?? ""}`;
1838
1838
  process.exit(1);
1839
1839
  }
1840
1840
  } else {
1841
- console.error("--from <stage> is required for rerun (no status.json found)");
1842
- process.exit(1);
1841
+ logger.info("No status.json found \u2014 running full pipeline with feedback");
1842
+ input.command = "run";
1843
1843
  }
1844
1844
  }
1845
1845
  const config = getProjectConfig();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine-lite",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "description": "Autonomous SDLC pipeline: Kody orchestration + Claude Code + LiteLLM",
5
5
  "license": "MIT",
6
6
  "type": "module",