(value: boolean)
| 19 | |
| 20 | /** Set at plugin boot from `keep_subagents` config. */ |
| 21 | export function setKeepSubagents(value: boolean): void { |
| 22 | keepSubagents = value === true; |
| 23 | } |
| 24 | |
| 25 | /** True when subagent child sessions should be retained (not deleted). */ |
| 26 | export function shouldKeepSubagents(): boolean { |
no outgoing calls
no test coverage detected