@adhdev/daemon-core 0.9.82-rc.325 → 0.9.82-rc.326

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -48,6 +48,21 @@ export interface CliSessionStatus {
48
48
  errorMessage?: string;
49
49
  errorReason?: string;
50
50
  providerSessionId?: string;
51
+ /**
52
+ * Timestamp (ms) of the most recent raw PTY output chunk. Advances on every
53
+ * byte the process emits, including tool/build output that produces no
54
+ * parsed assistant text. Liveness watchdogs use this to distinguish a real
55
+ * stall (no output at all) from an active turn whose assistant buffer is
56
+ * momentarily static while a tool runs.
57
+ */
58
+ lastOutputAt?: number;
59
+ /**
60
+ * Timestamp (ms) of the most recent *visible* terminal screen change.
61
+ * Stricter than lastOutputAt — only advances when the rendered screen
62
+ * content actually differs, so repeated keepalive bytes do not register as
63
+ * progress. Preferred liveness signal for the long-generating watchdog.
64
+ */
65
+ lastScreenChangeAt?: number;
51
66
  bufferState?: {
52
67
  responseBuffer?: {
53
68
  truncated: boolean;
@@ -121,6 +121,8 @@ type GitCommandFailure = {
121
121
  type GitCommandSuccess = {
122
122
  success: true;
123
123
  status: GitRepoStatus;
124
+ reporterPlatform?: string;
125
+ reporterArch?: string;
124
126
  } | {
125
127
  success: true;
126
128
  diffSummary: GitDiffSummary;