@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.
- package/dist/bin/cli.js +3 -3
- 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
|
-
|
|
1842
|
-
|
|
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();
|