(lead: string, shell: ShellPlan)
| 329 | } |
| 330 | |
| 331 | export function withShellGuidance(lead: string, shell: ShellPlan): string { |
| 332 | const guidance = bashToolShellGuidance(shell); |
| 333 | return guidance ? `${lead} ${guidance}` : lead; |
| 334 | } |
| 335 | |
| 336 | export function buildStopBackgroundTaskTool(backgroundTasks: BackgroundTaskStopper): MakaTool { |
| 337 | return { |
no test coverage detected