@sideboard-ai/cli 0.1.149 → 0.1.150
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/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7,6 +7,7 @@ import chalk from "chalk";
|
|
|
7
7
|
import { Command } from "commander";
|
|
8
8
|
import {
|
|
9
9
|
detectAgents,
|
|
10
|
+
followUpBehavior,
|
|
10
11
|
getOrchestrator,
|
|
11
12
|
listBranches,
|
|
12
13
|
listPrs,
|
|
@@ -235,7 +236,7 @@ async function main() {
|
|
|
235
236
|
process.stderr.write(event.event.data + "\n");
|
|
236
237
|
}
|
|
237
238
|
});
|
|
238
|
-
await orch.fanOut(refs, prompt);
|
|
239
|
+
await orch.fanOut(refs, prompt, { followUp: followUpBehavior() });
|
|
239
240
|
for (const ref of refs) {
|
|
240
241
|
await orch.waitForTurn(ref);
|
|
241
242
|
}
|
|
@@ -249,7 +250,7 @@ async function main() {
|
|
|
249
250
|
if (event.event.type === "stderr") process.stderr.write(event.event.data + "\n");
|
|
250
251
|
}
|
|
251
252
|
});
|
|
252
|
-
await orch.send(thread, prompt);
|
|
253
|
+
await orch.send(thread, prompt, { followUp: followUpBehavior() });
|
|
253
254
|
const done = await orch.waitForTurn(thread);
|
|
254
255
|
off();
|
|
255
256
|
console.log(chalk.dim(`
|