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