()
| 676 | } |
| 677 | |
| 678 | get hasActiveTurn(): boolean { |
| 679 | for (const agent of this.readyAgents()) { |
| 680 | if (agent.turn.hasActiveTurn) return true; |
| 681 | } |
| 682 | return false; |
| 683 | } |
| 684 | |
| 685 | protected get metadataPath() { |
| 686 | return join(this.options.homedir, 'state.json'); |
nothing calls this directly
no test coverage detected