* Read foreground agent internal events from * GET /sessions/{id}/worker/internal-events. * Returns transcript entries from the last compaction boundary, or null on failure. * Used for session resume.
()
| 840 | * Used for session resume. |
| 841 | */ |
| 842 | async readInternalEvents(): Promise<InternalEvent[] | null> { |
| 843 | return this.paginatedGet('/worker/internal-events', {}, 'internal_events') |
| 844 | } |
| 845 | |
| 846 | /** |
| 847 | * Read all subagent internal events from |
no test coverage detected