baro-ai 0.45.2 → 0.46.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 +13 -3
- package/dist/cli.mjs.map +1 -1
- package/dist/run-architect.mjs +7 -1
- package/dist/run-architect.mjs.map +1 -1
- package/dist/run-planner.mjs +7 -0
- package/dist/run-planner.mjs.map +1 -1
- package/package.json +1 -1
package/dist/run-planner.mjs
CHANGED
|
@@ -164,6 +164,7 @@ async function runPlannerClaude(opts) {
|
|
|
164
164
|
"--output-format",
|
|
165
165
|
"json",
|
|
166
166
|
...opts.model ? ["--model", opts.model] : [],
|
|
167
|
+
...opts.effort ? ["--effort", opts.effort] : [],
|
|
167
168
|
"--permission-mode",
|
|
168
169
|
"bypassPermissions",
|
|
169
170
|
"--system-prompt",
|
|
@@ -10288,6 +10289,7 @@ function parseArgs(argv) {
|
|
|
10288
10289
|
let cwd;
|
|
10289
10290
|
let llm;
|
|
10290
10291
|
let model;
|
|
10292
|
+
let effort;
|
|
10291
10293
|
let contextFile;
|
|
10292
10294
|
let decisionFile;
|
|
10293
10295
|
let quick = false;
|
|
@@ -10311,6 +10313,9 @@ function parseArgs(argv) {
|
|
|
10311
10313
|
case "--model":
|
|
10312
10314
|
model = required(argv, ++i, "--model");
|
|
10313
10315
|
break;
|
|
10316
|
+
case "--effort":
|
|
10317
|
+
effort = required(argv, ++i, "--effort");
|
|
10318
|
+
break;
|
|
10314
10319
|
case "--context-file":
|
|
10315
10320
|
contextFile = required(argv, ++i, "--context-file");
|
|
10316
10321
|
break;
|
|
@@ -10332,6 +10337,7 @@ function parseArgs(argv) {
|
|
|
10332
10337
|
cwd,
|
|
10333
10338
|
llm,
|
|
10334
10339
|
model,
|
|
10340
|
+
effort,
|
|
10335
10341
|
contextFile,
|
|
10336
10342
|
decisionFile,
|
|
10337
10343
|
quick
|
|
@@ -10396,6 +10402,7 @@ async function main() {
|
|
|
10396
10402
|
goal: args.goal,
|
|
10397
10403
|
cwd: args.cwd,
|
|
10398
10404
|
model: args.model,
|
|
10405
|
+
effort: args.effort,
|
|
10399
10406
|
projectContext,
|
|
10400
10407
|
decisionDocument,
|
|
10401
10408
|
quick: args.quick
|