(
_sessionId: string,
_elapsed: string,
activity: SessionActivity,
_trail: string[],
)
| 448 | }, |
| 449 | |
| 450 | updateSessionStatus( |
| 451 | _sessionId: string, |
| 452 | _elapsed: string, |
| 453 | activity: SessionActivity, |
| 454 | _trail: string[], |
| 455 | ): void { |
| 456 | // Cache tool activity for the second status line |
| 457 | if (activity.type === 'tool_start') { |
| 458 | lastToolSummary = activity.summary |
| 459 | lastToolTime = Date.now() |
| 460 | } |
| 461 | renderStatusLine() |
| 462 | }, |
| 463 | |
| 464 | clearStatus(): void { |
| 465 | stopConnecting() |
nothing calls this directly
no test coverage detected