baro-ai 0.58.0 → 0.59.0
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/cli.mjs +11 -0
- package/dist/cli.mjs.map +1 -1
- package/dist/runner.mjs +27 -6
- package/dist/runner.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -48085,6 +48085,17 @@ function storyTimeoutSecs(configured, effort) {
|
|
|
48085
48085
|
}
|
|
48086
48086
|
}
|
|
48087
48087
|
async function orchestrate(config) {
|
|
48088
|
+
for (const [k, v] of Object.entries({
|
|
48089
|
+
CI: "1",
|
|
48090
|
+
npm_config_yes: "true",
|
|
48091
|
+
npm_config_fund: "false",
|
|
48092
|
+
npm_config_audit: "false",
|
|
48093
|
+
PIP_NO_INPUT: "1",
|
|
48094
|
+
GIT_TERMINAL_PROMPT: "0",
|
|
48095
|
+
DEBIAN_FRONTEND: "noninteractive"
|
|
48096
|
+
})) {
|
|
48097
|
+
if (process.env[k] === void 0) process.env[k] = v;
|
|
48098
|
+
}
|
|
48088
48099
|
const env = new AgenticEnvironment();
|
|
48089
48100
|
const emitTui = config.emitTuiEvents ?? true;
|
|
48090
48101
|
const llm = config.llm ?? "claude";
|