| 1 | export interface WireSessionContextSectionDiagnostics { |
| 2 | digest?: string; |
| 3 | chars?: number; |
| 4 | } |
| 5 | |
| 6 | export interface WireSessionContextDiagnostics { |
| 7 | version: number; |
| 8 | digest: string; |
| 9 | targetRole: "executor" | "planner"; |
| 10 | reasons?: string[]; |
| 11 | environment: WireSessionContextSectionDiagnostics; |
| 12 | workspace: WireSessionContextSectionDiagnostics; |
| 13 | backgroundMemory: WireSessionContextSectionDiagnostics; |
| 14 | skillsCatalog: WireSessionContextSectionDiagnostics; |
| 15 | } |
| 16 |