docs: clarify fanout_dispatch guideline about auto delivery vs collect
This commit is contained in:
parent
f7f9dca6b2
commit
61fac63409
2
index.ts
2
index.ts
|
|
@ -51,7 +51,7 @@ export default function (pi: ExtensionAPI) {
|
||||||
promptGuidelines: [
|
promptGuidelines: [
|
||||||
"Use fanout_dispatch to run multiple agents in parallel without blocking the main session.",
|
"Use fanout_dispatch to run multiple agents in parallel without blocking the main session.",
|
||||||
"After dispatching, you may do other work. Check status later with fanout_status.",
|
"After dispatching, you may do other work. Check status later with fanout_status.",
|
||||||
"When jobs complete, the system will notify you. Retrieve output with fanout_collect.",
|
"Completed jobs deliver their output automatically via follow-up messages. Use fanout_collect if you need the full, untruncated result or to archive old jobs.",
|
||||||
],
|
],
|
||||||
|
|
||||||
execute: async (
|
execute: async (
|
||||||
|
|
|
||||||
Reference in New Issue