(taskCount: number)
| 231 | } |
| 232 | |
| 233 | function buildBackgroundStartNote(taskCount: number): string { |
| 234 | return taskCount === 1 |
| 235 | ? "Task started in background. Use task_await to monitor progress." |
| 236 | : "Tasks started in background. Use task_await to monitor progress."; |
| 237 | } |
| 238 | |
| 239 | function buildForegroundContinuationNote( |
| 240 | taskCount: number, |