proper parallelization

This commit is contained in:
2026-05-30 20:46:05 -04:00
parent 73d1ee1a47
commit c7ab908bae
3 changed files with 16 additions and 4 deletions

View File

@@ -356,6 +356,10 @@ async function handleRun(
const mode = await selectExecutionMode(ctx, project, taskFile);
const plan = buildPlanByMode(mode, project, completed);
// Show execution plan before starting so user can see batch breakdown
const formattedPlan = formatExecutionPlan(plan);
ctx.ui.notify(`${formattedPlan}\n\nStarting ${mode} execution...`, "info");
await executePlanBatches(
plan,
project,