feat: show screen thumbnails in pod streams

This commit is contained in:
Yahya Alhinai
2026-06-28 05:33:00 +00:00
parent 1080bfd85f
commit c771e1594c
6 changed files with 39 additions and 8 deletions
+1
View File
@@ -14,6 +14,7 @@ export interface PodActivityEvent {
actor?: string;
actors?: string[];
file?: string;
imageUrl?: string;
severity: PodActivitySeverity;
at: string;
}
+2
View File
@@ -16,6 +16,8 @@ export interface EngineerContext {
hasUnpushedChanges?: boolean;
/** 01 confidence in this read of the screen. */
confidence: number;
/** Small redacted-size JPEG data URL for sidebar preview, not the full frame. */
screenshotDataUrl?: string;
/** ISO timestamp of the observation this context came from. */
observedAt: string;
}