@workermill/agent 0.4.6 → 0.4.7
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/planner.js +1 -1
- package/package.json +1 -1
package/dist/planner.js
CHANGED
|
@@ -438,7 +438,7 @@ async function runTeamPlanning(task, basePrompt, claudePath, model, env, repoPat
|
|
|
438
438
|
console.log(`${ts()} ${taskLabel} ${chalk.magenta("◆ Team planning")} — running 3 analysts in parallel...`);
|
|
439
439
|
await postLog(taskId, `${PREFIX} Team planning: running codebase, requirements, and risk analysts in parallel...`);
|
|
440
440
|
await postProgress(taskId, "reading_repo", Math.round((Date.now() - startTime) / 1000), "Running parallel analysis agents...", 0, 0);
|
|
441
|
-
const analysisModel = model
|
|
441
|
+
const analysisModel = model;
|
|
442
442
|
const MAX_TEAM_RETRIES = 3;
|
|
443
443
|
let codebaseReport = "";
|
|
444
444
|
let requirementsReport = "";
|