(index: number)
| 893 | } |
| 894 | |
| 895 | function queuedTask(index: number): QueuedSubagentTask<number> { |
| 896 | return { |
| 897 | kind: 'spawn', |
| 898 | data: index, |
| 899 | profileName: 'coder', |
| 900 | parentToolCallId: 'call_swarm', |
| 901 | prompt: `Review item-${String(index)}`, |
| 902 | description: `Review #${String(index)}`, |
| 903 | runInBackground: false, |
| 904 | }; |
| 905 | } |
no outgoing calls
no test coverage detected