@adhdev/daemon-core 0.9.82-rc.18 → 0.9.82-rc.181

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.
Files changed (225) hide show
  1. package/dist/boot/process-hardening.d.ts +50 -0
  2. package/dist/chat/source-machine.d.ts +166 -0
  3. package/dist/chat/source-resolver.d.ts +104 -0
  4. package/dist/chat/subscription-updates.d.ts +1 -0
  5. package/dist/cli-adapter-types.d.ts +22 -2
  6. package/dist/cli-adapters/cli-script-runner.d.ts +117 -0
  7. package/dist/cli-adapters/cli-state-engine.d.ts +178 -0
  8. package/dist/cli-adapters/provider-cli-adapter.d.ts +106 -63
  9. package/dist/cli-adapters/provider-cli-parse.d.ts +4 -0
  10. package/dist/cli-adapters/provider-cli-shared.d.ts +29 -0
  11. package/dist/cli-adapters/raw-terminal-io.d.ts +37 -0
  12. package/dist/commands/handler.d.ts +110 -0
  13. package/dist/commands/mesh-coordinator.d.ts +72 -1
  14. package/dist/commands/router.d.ts +22 -0
  15. package/dist/config/chat-history.d.ts +8 -0
  16. package/dist/config/config.d.ts +5 -0
  17. package/dist/config/mesh-config.d.ts +72 -1
  18. package/dist/git/git-commands.d.ts +5 -1
  19. package/dist/index.d.ts +35 -8
  20. package/dist/index.js +20754 -5387
  21. package/dist/index.js.map +1 -1
  22. package/dist/index.mjs +20567 -5270
  23. package/dist/index.mjs.map +1 -1
  24. package/dist/installer.d.ts +1 -4
  25. package/dist/ipc/local-ipc-server.d.ts +91 -0
  26. package/dist/launch.d.ts +1 -1
  27. package/dist/logging/async-batch-writer.d.ts +10 -0
  28. package/dist/mesh/beads-db.d.ts +72 -0
  29. package/dist/mesh/contracts.d.ts +164 -0
  30. package/dist/mesh/coordinator-prompt.d.ts +30 -0
  31. package/dist/mesh/coordinator-registry.d.ts +59 -0
  32. package/dist/mesh/mesh-active-work.d.ts +90 -0
  33. package/dist/mesh/mesh-events.d.ts +97 -5
  34. package/dist/mesh/mesh-fast-forward.d.ts +41 -0
  35. package/dist/mesh/mesh-host-ownership.d.ts +9 -0
  36. package/dist/mesh/mesh-ledger.d.ts +58 -1
  37. package/dist/mesh/mesh-refine-status.d.ts +26 -0
  38. package/dist/mesh/mesh-work-queue.d.ts +54 -6
  39. package/dist/mesh/preview-freshness.d.ts +18 -0
  40. package/dist/mesh/refine-config.d.ts +193 -0
  41. package/dist/mesh/worktree-bootstrap-config.d.ts +113 -0
  42. package/dist/providers/approval-utils.d.ts +13 -0
  43. package/dist/providers/cli-provider-instance.d.ts +35 -3
  44. package/dist/providers/contracts.d.ts +98 -5
  45. package/dist/providers/external-sources.d.ts +71 -0
  46. package/dist/providers/native-history/antigravity-cli-transcript.d.ts +100 -0
  47. package/dist/providers/native-history/claude-cli-transcript.d.ts +70 -0
  48. package/dist/providers/native-history/codex-cli-transcript.d.ts +73 -0
  49. package/dist/providers/native-history/dispatcher.d.ts +25 -0
  50. package/dist/providers/native-history/hermes-cli-transcript.d.ts +30 -0
  51. package/dist/providers/native-history/index.d.ts +13 -0
  52. package/dist/providers/provider-instance-manager.d.ts +12 -0
  53. package/dist/providers/provider-instance.d.ts +12 -0
  54. package/dist/providers/provider-loader.d.ts +26 -4
  55. package/dist/providers/provider-trust.d.ts +31 -0
  56. package/dist/providers/read-chat-contract.d.ts +29 -0
  57. package/dist/providers/sdk/v1/builders/acp/detect-status.d.ts +68 -0
  58. package/dist/providers/sdk/v1/builders/cli/detect-status.d.ts +85 -0
  59. package/dist/providers/sdk/v1/builders/cli/parse-approval-squash.d.ts +59 -0
  60. package/dist/providers/sdk/v1/builders/cli/parse-approval.d.ts +65 -0
  61. package/dist/providers/sdk/v1/builders/cli/parse-session.d.ts +91 -0
  62. package/dist/providers/sdk/v1/builders/cli/visible-region.d.ts +42 -0
  63. package/dist/providers/sdk/v1/fixture-tooling/format.d.ts +126 -0
  64. package/dist/providers/sdk/v1/fixture-tooling/index.d.ts +8 -0
  65. package/dist/providers/sdk/v1/fixture-tooling/replay.d.ts +38 -0
  66. package/dist/providers/sdk/v1/index.d.ts +30 -0
  67. package/dist/providers/sdk/v1/sandbox/README-design.d.ts +193 -0
  68. package/dist/providers/sdk/v1/sandbox/require-whitelist.d.ts +74 -0
  69. package/dist/providers/sdk/v1/sandbox/script-runner.d.ts +98 -0
  70. package/dist/providers/sdk/v1/types/cli/index.d.ts +277 -0
  71. package/dist/providers/sdk/v1/types/common/index.d.ts +169 -0
  72. package/dist/providers/sdk/v1/validators/index.d.ts +5 -0
  73. package/dist/providers/sdk/v1/validators/manifest.d.ts +40 -0
  74. package/dist/providers/sdk/v1/validators/taint.d.ts +52 -0
  75. package/dist/providers/spec/adapter.d.ts +56 -0
  76. package/dist/providers/spec/cli-adapter.d.ts +97 -0
  77. package/dist/providers/spec/driver.d.ts +159 -0
  78. package/dist/providers/spec/evaluator.d.ts +47 -0
  79. package/dist/providers/spec/loader.d.ts +14 -0
  80. package/dist/providers/spec/native-history-executor.d.ts +39 -0
  81. package/dist/providers/spec/route.d.ts +4 -0
  82. package/dist/providers/spec/schema.gen.d.ts +511 -0
  83. package/dist/providers/spec/types.d.ts +212 -0
  84. package/dist/providers/transcript-v2.d.ts +176 -0
  85. package/dist/providers/types/interactive-prompt.d.ts +48 -0
  86. package/dist/repo-mesh-types.d.ts +102 -1
  87. package/dist/sessions/registry.d.ts +3 -0
  88. package/dist/shared-types.d.ts +42 -1
  89. package/dist/status/reporter.d.ts +2 -0
  90. package/dist/status/snapshot.d.ts +1 -0
  91. package/dist/types.d.ts +5 -0
  92. package/package.json +7 -2
  93. package/src/agent-stream/poller.ts +2 -3
  94. package/src/boot/daemon-lifecycle.ts +17 -10
  95. package/src/boot/process-hardening.ts +89 -0
  96. package/src/chat/source-machine.ts +534 -0
  97. package/src/chat/source-resolver.ts +0 -0
  98. package/src/chat/subscription-updates.ts +14 -1
  99. package/src/cli-adapter-types.d.ts +1 -0
  100. package/src/cli-adapter-types.ts +21 -2
  101. package/src/cli-adapters/cli-script-runner.ts +421 -0
  102. package/src/cli-adapters/cli-state-engine.ts +1086 -0
  103. package/src/cli-adapters/provider-cli-adapter.d.ts +1 -1
  104. package/src/cli-adapters/provider-cli-adapter.ts +670 -1137
  105. package/src/cli-adapters/provider-cli-parse.d.ts +1 -0
  106. package/src/cli-adapters/provider-cli-parse.ts +13 -0
  107. package/src/cli-adapters/provider-cli-runtime.ts +3 -1
  108. package/src/cli-adapters/provider-cli-shared.d.ts +2 -0
  109. package/src/cli-adapters/provider-cli-shared.ts +59 -11
  110. package/src/cli-adapters/raw-terminal-io.ts +252 -0
  111. package/src/cli-adapters/terminal-backends/ghostty-vt-backend.ts +17 -1
  112. package/src/cli-adapters/terminal-backends/xterm-backend.ts +8 -1
  113. package/src/commands/chat-commands.ts +1597 -60
  114. package/src/commands/cli-manager.ts +230 -3
  115. package/src/commands/handler.ts +809 -2
  116. package/src/commands/mesh-coordinator.ts +231 -127
  117. package/src/commands/router.ts +3495 -502
  118. package/src/config/chat-history.ts +91 -24
  119. package/src/config/config.ts +12 -0
  120. package/src/config/mesh-config.ts +280 -2
  121. package/src/config/recent-activity.ts +8 -2
  122. package/src/daemon/dev-cli-debug.ts +10 -1
  123. package/src/detection/ide-detector.ts +26 -16
  124. package/src/git/git-commands.ts +17 -5
  125. package/src/git/git-worktree.ts +8 -1
  126. package/src/index.ts +113 -7
  127. package/src/installer.d.ts +1 -1
  128. package/src/installer.ts +8 -6
  129. package/src/ipc/local-ipc-server.ts +278 -0
  130. package/src/launch.d.ts +1 -1
  131. package/src/launch.ts +37 -28
  132. package/src/logging/async-batch-writer.ts +55 -0
  133. package/src/logging/logger.ts +2 -1
  134. package/src/mesh/beads-db.ts +486 -0
  135. package/src/mesh/contracts.ts +329 -0
  136. package/src/mesh/coordinator-prompt.ts +204 -30
  137. package/src/mesh/coordinator-registry.ts +121 -0
  138. package/src/mesh/mesh-active-work.ts +437 -0
  139. package/src/mesh/mesh-events.ts +963 -67
  140. package/src/mesh/mesh-fast-forward.ts +438 -0
  141. package/src/mesh/mesh-host-ownership.ts +73 -0
  142. package/src/mesh/mesh-ledger.ts +457 -104
  143. package/src/mesh/mesh-refine-status.ts +144 -0
  144. package/src/mesh/mesh-work-queue.ts +263 -159
  145. package/src/mesh/preview-freshness.ts +118 -0
  146. package/src/mesh/refine-config.ts +366 -0
  147. package/src/mesh/worktree-bootstrap-config.ts +247 -0
  148. package/src/providers/approval-utils.d.ts +4 -0
  149. package/src/providers/approval-utils.ts +47 -5
  150. package/src/providers/chat-message-normalization.ts +4 -11
  151. package/src/providers/cli-provider-instance.ts +651 -57
  152. package/src/providers/contracts.ts +105 -5
  153. package/src/providers/external-sources.ts +218 -0
  154. package/src/providers/ide-provider-instance.ts +19 -5
  155. package/src/providers/native-history/antigravity-cli-transcript.ts +643 -0
  156. package/src/providers/native-history/claude-cli-transcript.ts +396 -0
  157. package/src/providers/native-history/codex-cli-transcript.ts +419 -0
  158. package/src/providers/native-history/dispatcher.ts +231 -0
  159. package/src/providers/native-history/hermes-cli-transcript.ts +230 -0
  160. package/src/providers/native-history/index.ts +30 -0
  161. package/src/providers/provider-instance-manager.ts +30 -0
  162. package/src/providers/provider-instance.ts +9 -0
  163. package/src/providers/provider-loader.ts +585 -50
  164. package/src/providers/provider-schema.ts +31 -13
  165. package/src/providers/provider-trust.ts +114 -0
  166. package/src/providers/read-chat-contract.ts +76 -16
  167. package/src/providers/sdk/README.md +49 -0
  168. package/src/providers/sdk/v1/builders/acp/detect-status.ts +144 -0
  169. package/src/providers/sdk/v1/builders/cli/detect-status.ts +262 -0
  170. package/src/providers/sdk/v1/builders/cli/parse-approval-squash.ts +158 -0
  171. package/src/providers/sdk/v1/builders/cli/parse-approval.ts +250 -0
  172. package/src/providers/sdk/v1/builders/cli/parse-session.ts +276 -0
  173. package/src/providers/sdk/v1/builders/cli/visible-region.ts +143 -0
  174. package/src/providers/sdk/v1/fixture-tooling/format.ts +130 -0
  175. package/src/providers/sdk/v1/fixture-tooling/index.ts +22 -0
  176. package/src/providers/sdk/v1/fixture-tooling/replay.ts +352 -0
  177. package/src/providers/sdk/v1/index.ts +152 -0
  178. package/src/providers/sdk/v1/sandbox/README-design.ts +195 -0
  179. package/src/providers/sdk/v1/sandbox/require-whitelist.ts +472 -0
  180. package/src/providers/sdk/v1/sandbox/script-runner.ts +150 -0
  181. package/src/providers/sdk/v1/schemas/cli/provider.schema.json +458 -0
  182. package/src/providers/sdk/v1/schemas/primitives/acp-session-protocol-v1.json +131 -0
  183. package/src/providers/sdk/v1/schemas/primitives/native-history-codex-rollout-v1.json +66 -0
  184. package/src/providers/sdk/v1/schemas/primitives/tui-approval-squash-v1.json +91 -0
  185. package/src/providers/sdk/v1/schemas/primitives/tui-assistant-block-v1.json +91 -0
  186. package/src/providers/sdk/v1/schemas/primitives/tui-cue-ordering-v1.json +47 -0
  187. package/src/providers/sdk/v1/schemas/primitives/tui-dispatch-order-v1.json +32 -0
  188. package/src/providers/sdk/v1/schemas/primitives/tui-footer-chrome-v1.json +42 -0
  189. package/src/providers/sdk/v1/schemas/primitives/tui-index-finder-v1.json +27 -0
  190. package/src/providers/sdk/v1/schemas/primitives/tui-modal-v1.json +125 -0
  191. package/src/providers/sdk/v1/schemas/primitives/tui-prompt-marker-v1.json +45 -0
  192. package/src/providers/sdk/v1/schemas/primitives/tui-session-id-extraction-v1.json +46 -0
  193. package/src/providers/sdk/v1/schemas/primitives/tui-settled-prompt-v1.json +71 -0
  194. package/src/providers/sdk/v1/schemas/primitives/tui-spinner-v1.json +83 -0
  195. package/src/providers/sdk/v1/schemas/primitives/tui-transcript-pty-v1.json +83 -0
  196. package/src/providers/sdk/v1/schemas/primitives/tui-visible-region-v1.json +57 -0
  197. package/src/providers/sdk/v1/schemas/primitives/tui-welcome-screen-v1.json +35 -0
  198. package/src/providers/sdk/v1/types/cli/index.ts +365 -0
  199. package/src/providers/sdk/v1/types/common/index.ts +210 -0
  200. package/src/providers/sdk/v1/validators/index.ts +19 -0
  201. package/src/providers/sdk/v1/validators/manifest.ts +110 -0
  202. package/src/providers/sdk/v1/validators/taint.ts +309 -0
  203. package/src/providers/spec/adapter.ts +168 -0
  204. package/src/providers/spec/cli-adapter.ts +507 -0
  205. package/src/providers/spec/driver.ts +540 -0
  206. package/src/providers/spec/evaluator.ts +298 -0
  207. package/src/providers/spec/loader.ts +130 -0
  208. package/src/providers/spec/native-history-executor.ts +706 -0
  209. package/src/providers/spec/route.ts +51 -0
  210. package/src/providers/spec/schema.gen.ts +511 -0
  211. package/src/providers/spec/schema.json +211 -0
  212. package/src/providers/spec/types.ts +231 -0
  213. package/src/providers/transcript-v2.ts +567 -0
  214. package/src/providers/types/interactive-prompt.ts +396 -0
  215. package/src/providers/version-archive.ts +38 -20
  216. package/src/repo-mesh-types.ts +112 -1
  217. package/src/sessions/registry.ts +3 -0
  218. package/src/shared-types.ts +45 -1
  219. package/src/status/builders.ts +24 -6
  220. package/src/status/reporter.ts +15 -0
  221. package/src/status/snapshot.ts +84 -25
  222. package/src/system/host-memory.ts +29 -12
  223. package/src/types.ts +5 -0
  224. package/dist/mesh/mesh-sync.d.ts +0 -53
  225. package/src/mesh/mesh-sync.ts +0 -111
@@ -0,0 +1,113 @@
1
+ import { type MeshRefineValidationCommandPlan, type RepoMeshRefineValidationCommandConfig } from './refine-config.js';
2
+ import type { MeshAsyncJobLifecycle } from '../repo-mesh-types.js';
3
+ export type WorktreeBootstrapStatus = 'ready' | 'running' | 'failed' | 'not_configured' | 'disabled' | 'stale';
4
+ export interface RepoMeshWorktreeBootstrapConfig {
5
+ version: 1;
6
+ enabled?: boolean;
7
+ runOnClone?: boolean;
8
+ required?: boolean;
9
+ commands?: RepoMeshRefineValidationCommandConfig[];
10
+ staleInputs?: string[];
11
+ }
12
+ export interface WorktreeBootstrapState extends MeshAsyncJobLifecycle {
13
+ status: WorktreeBootstrapStatus;
14
+ required: boolean;
15
+ configSource?: string;
16
+ configSourceType?: 'repo_file' | 'mesh_policy' | 'unavailable' | 'invalid';
17
+ lastCommand?: string;
18
+ exitCode?: number | null;
19
+ commandsRun?: Array<Record<string, unknown>>;
20
+ staleInputs?: string[];
21
+ }
22
+ export interface WorktreeBootstrapConfigLoadResult {
23
+ config?: RepoMeshWorktreeBootstrapConfig;
24
+ source: string;
25
+ sourceType: 'repo_file' | 'mesh_policy' | 'unavailable' | 'invalid';
26
+ path?: string;
27
+ error?: string;
28
+ }
29
+ export declare const MESH_WORKTREE_BOOTSTRAP_CONFIG_LOCATIONS: string[];
30
+ export declare const MESH_WORKTREE_BOOTSTRAP_CONFIG_SCHEMA: {
31
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
32
+ readonly title: "ADHDev Repo Mesh Worktree Bootstrap Config";
33
+ readonly type: "object";
34
+ readonly additionalProperties: false;
35
+ readonly required: readonly ["version"];
36
+ readonly properties: {
37
+ readonly version: {
38
+ readonly const: 1;
39
+ };
40
+ readonly enabled: {
41
+ readonly type: "boolean";
42
+ readonly default: true;
43
+ };
44
+ readonly runOnClone: {
45
+ readonly type: "boolean";
46
+ readonly default: true;
47
+ };
48
+ readonly required: {
49
+ readonly type: "boolean";
50
+ readonly default: true;
51
+ };
52
+ readonly staleInputs: {
53
+ readonly type: "array";
54
+ readonly maxItems: 16;
55
+ readonly items: {
56
+ readonly type: "string";
57
+ readonly minLength: 1;
58
+ };
59
+ };
60
+ readonly commands: {
61
+ readonly type: "array";
62
+ readonly minItems: 1;
63
+ readonly maxItems: 4;
64
+ readonly items: {
65
+ readonly type: "object";
66
+ readonly additionalProperties: false;
67
+ readonly required: readonly ["command"];
68
+ readonly properties: {
69
+ readonly command: {
70
+ readonly type: "string";
71
+ readonly minLength: 1;
72
+ };
73
+ readonly args: {
74
+ readonly type: "array";
75
+ readonly items: {
76
+ readonly type: "string";
77
+ };
78
+ };
79
+ readonly category: {
80
+ readonly enum: readonly ["typecheck", "test", "lint", "build", "custom"];
81
+ };
82
+ readonly cwd: {
83
+ readonly type: "string";
84
+ };
85
+ readonly timeoutMs: {
86
+ readonly type: "number";
87
+ readonly minimum: 1000;
88
+ readonly maximum: 600000;
89
+ };
90
+ readonly outputLimitBytes: {
91
+ readonly type: "number";
92
+ readonly minimum: 1024;
93
+ readonly maximum: 1048576;
94
+ };
95
+ readonly env: {
96
+ readonly type: "object";
97
+ readonly additionalProperties: {
98
+ readonly type: "string";
99
+ };
100
+ };
101
+ };
102
+ };
103
+ };
104
+ };
105
+ };
106
+ export declare function validateMeshWorktreeBootstrapConfig(config: unknown, source?: string): {
107
+ valid: boolean;
108
+ errors: string[];
109
+ commands: MeshRefineValidationCommandPlan[];
110
+ rejectedCommands: Array<Record<string, unknown>>;
111
+ };
112
+ export declare function loadMeshWorktreeBootstrapConfig(mesh: any, workspace: string): WorktreeBootstrapConfigLoadResult;
113
+ export declare function runMeshWorktreeBootstrap(mesh: any, workspace: string): Promise<WorktreeBootstrapState>;
@@ -4,4 +4,17 @@ export declare function pickApprovalButton(buttons: string[] | null | undefined,
4
4
  index: number;
5
5
  label: string;
6
6
  };
7
+ export declare function pickAutoApprovalButton(buttons: string[] | null | undefined): {
8
+ index: number;
9
+ label: string;
10
+ };
7
11
  export declare function formatAutoApprovalMessage(modalMessage?: string, buttonLabel?: string): string;
12
+ /**
13
+ * Returns true when the given text (e.g. last assistant message content, or
14
+ * the tail of the PTY screen) looks like an active approval/input prompt
15
+ * rather than a completed assistant response. Used to prevent false
16
+ * idle/completion events when Claude Code surfaces a "Do you want to proceed?"
17
+ * style prompt that the PTY parser captures as an assistant turn while the
18
+ * session is still awaiting user input.
19
+ */
20
+ export declare function looksLikeActiveApprovalPromptText(content: string): boolean;
@@ -45,9 +45,10 @@ export declare class CliProviderInstance implements ProviderInstance {
45
45
  private monitor;
46
46
  private generatingDebounceTimer;
47
47
  private generatingDebouncePending;
48
- private lastApprovalEventAt;
48
+ private lastApprovalEventFingerprint;
49
49
  private autoApproveBusy;
50
50
  private autoApproveBusyTimer;
51
+ private lastAutoApprovalSignature;
51
52
  private controlValues;
52
53
  private summaryMetadata;
53
54
  private appliedEffectKeys;
@@ -63,6 +64,7 @@ export declare class CliProviderInstance implements ProviderInstance {
63
64
  private suppressIdleHistoryReplay;
64
65
  private errorMessage;
65
66
  private errorReason;
67
+ private activeInteractivePrompt;
66
68
  private presentationMode;
67
69
  private providerSessionId?;
68
70
  private launchMode;
@@ -93,17 +95,45 @@ export declare class CliProviderInstance implements ProviderInstance {
93
95
  setPresentationMode(mode: 'terminal' | 'chat'): void;
94
96
  getPresentationMode(): 'terminal' | 'chat';
95
97
  getHotChatSessionState(): HotChatSessionState;
96
- getSessionModalState(): SessionModalState;
98
+ getSessionModalState(sessionId?: string): SessionModalState;
97
99
  updateSettings(newSettings: Record<string, any>): void;
100
+ /**
101
+ * Stamp a direct-dispatch mesh assignment on this instance.
102
+ * setupMeshEventForwarding reads settings.meshNodeFor + meshActiveTaskId to
103
+ * route generating_completed back to the originating coordinator. Without
104
+ * this stamp, mesh_send_task --direct targets a plain CLI session whose
105
+ * completion events silently drop because the forwarder has nothing to
106
+ * match against.
107
+ */
108
+ attachMeshAssignment(assignment: {
109
+ meshId: string;
110
+ nodeId?: string;
111
+ taskId?: string;
112
+ }): void;
113
+ /**
114
+ * Clear a previously-attached mesh assignment after the task reaches a
115
+ * terminal state. Leaving meshNodeFor pinned would route this session's
116
+ * subsequent unrelated turns (e.g. ad-hoc dashboard chats) to the
117
+ * coordinator as if they were task completions.
118
+ */
119
+ detachMeshAssignment(): void;
98
120
  onEvent(event: string, data?: any): void;
121
+ recordAcknowledgedUserInput(input: InputEnvelope | string): void;
99
122
  dispose(): void;
100
123
  private completedDebounceTimer;
101
124
  private completedDebouncePending;
125
+ private lastExternalCompletionProbe;
102
126
  private enforceFreshSessionLaunchIfNeeded;
103
127
  private completionHasFinalAssistantMessage;
128
+ private buildExternalTranscriptProbe;
129
+ private recordPendingTranscriptProbe;
130
+ private readExternalCompletionMessages;
131
+ private completionFinalAssistantEvidence;
132
+ private completionFinalSummary;
133
+ private buildCompletedFinalizationDiagnostic;
104
134
  private hasAdapterPendingResponse;
105
135
  private shouldSuppressStaleParsedBusyStatus;
106
- private getCompletedFinalizationBlockReason;
136
+ private getCompletedFinalizationBlock;
107
137
  private scheduleCompletedDebounceFlush;
108
138
  private flushCompletedDebounceIfFinalized;
109
139
  private maybeAutoApproveStatus;
@@ -127,6 +157,8 @@ export declare class CliProviderInstance implements ProviderInstance {
127
157
  private mergeConversationMessages;
128
158
  private formatApprovalRequestMessage;
129
159
  private promoteProviderSessionId;
160
+ private shouldHydrateExistingProviderHistory;
161
+ private shouldSuppressFreshLaunchStartupReplay;
130
162
  private syncCanonicalSavedHistoryIfNeeded;
131
163
  private restorePersistedHistoryFromCurrentSession;
132
164
  private getProbeDirectories;
@@ -10,6 +10,14 @@ import type { ProviderSummaryMetadata } from '../shared-types.js';
10
10
  import type { ChatMessageKind } from './chat-message-normalization.js';
11
11
  export type ReadChatTurnStatus = 'open' | 'waiting_approval' | 'complete' | 'error';
12
12
  export interface ReadChatResult {
13
+ /**
14
+ * Declared chat contract version. Absent or `'1.0'` → legacy v1 payload
15
+ * (current shape). `'2.0'` → v2 payload conforming to transcript-v2.ts
16
+ * (ReadChatResultV2). Validators in read-chat-contract.ts route on this
17
+ * field. A1 only adds the field; A2 will make v2 the daemon-internal
18
+ * canonical form and reject unrecognised versions at provider load time.
19
+ */
20
+ contractVersion?: import('./transcript-v2.js').ChatContractVersion;
13
21
  messages: ChatMessage[];
14
22
  status: AgentStatus;
15
23
  activeModal?: ModalInfo | null;
@@ -297,7 +305,55 @@ export interface ProviderMeshCoordinatorConfig {
297
305
  /** Copyable setup template. Supports {{meshId}}, {{adhdevMcpCommand}}, {{workspace}}, {{serverName}}. */
298
306
  template?: string;
299
307
  };
308
+ /**
309
+ * How the coordinator system prompt reaches the launched CLI. Replaces the
310
+ * old hard-coded `if (cliType === 'claude-cli') push --append-system-prompt`
311
+ * branches in router.ts: a new CLI now ships its injection rule in its
312
+ * provider.v1.json, no daemon code change needed. Users can override the
313
+ * rendered prompt or the injection mechanism per-provider; if omitted, no
314
+ * system prompt is injected (safe default — won't crash spawn with a flag
315
+ * the CLI doesn't recognize).
316
+ */
317
+ systemPromptInjection?: MeshCoordinatorSystemPromptInjection;
300
318
  }
319
+ /**
320
+ * Declarative description of how a CLI accepts a session-scoped system prompt.
321
+ *
322
+ * Modes:
323
+ * - cli_arg → push `flag` + prompt onto spawn args (Claude)
324
+ * - config_override → push `flag` + a templated key=value config override (Codex)
325
+ * - context_file → write prompt into a workspace markdown the CLI
326
+ * auto-loads as project context (Gemini, Antigravity)
327
+ * - env_var → expose prompt to the spawned process as $name (Hermes)
328
+ *
329
+ * The prompt text is templated with `{prompt}` (raw) or `{prompt_json}`
330
+ * (JSON-encoded for embedding inside config-override strings).
331
+ */
332
+ export type MeshCoordinatorSystemPromptInjection = {
333
+ mode: 'cli_arg';
334
+ /** Spawn-args flag, e.g. '--append-system-prompt'. The prompt becomes the next argv. */
335
+ flag: string;
336
+ } | {
337
+ mode: 'config_override';
338
+ /** Spawn-args flag, e.g. '-c'. Followed by `template` with placeholders rendered. */
339
+ flag: string;
340
+ /** Template using {prompt} or {prompt_json}, e.g. 'developer_instructions={prompt_json}'. */
341
+ template: string;
342
+ } | {
343
+ mode: 'context_file';
344
+ /** Workspace-relative file path the CLI auto-loads, e.g. 'AGENTS.md' or 'GEMINI.md'. */
345
+ path: string;
346
+ /**
347
+ * Optional wrapper around the prompt. Use `{prompt}` placeholder. Existing
348
+ * wrapper-delimited blocks are replaced rather than duplicated, so re-launching
349
+ * a coordinator doesn't pile up copies. If omitted, the prompt is appended raw.
350
+ */
351
+ wrapper?: string;
352
+ } | {
353
+ mode: 'env_var';
354
+ /** Env-var name, e.g. 'HERMES_EPHEMERAL_SYSTEM_PROMPT'. */
355
+ name: string;
356
+ };
301
357
  export interface ProviderCompatibilityEntry {
302
358
  ideVersion: string;
303
359
  scriptDir: string;
@@ -378,6 +434,14 @@ export interface ProviderModule {
378
434
  extensionIdPattern_flags?: string;
379
435
  compatibility?: ProviderCompatibilityEntry[];
380
436
  defaultScriptDir?: string;
437
+ /**
438
+ * v1 declarative tui block (spinner/settledPrompt/modal/dispatchOrder/etc).
439
+ * When present, the daemon's CliScriptRunner builds canonical
440
+ * (input → verdict) functions from this and injects them into provider
441
+ * scripts as `sdk.declarativeDetectStatus` and `sdk.declarativeParseApproval`.
442
+ * v0 / verified-tier providers can omit this entirely.
443
+ */
444
+ tui?: Record<string, unknown>;
381
445
  /**
382
446
  * Scripts that can run at the IDE main-page level (not just inside the extension webview session frame).
383
447
  * Default: ['listModes', 'setMode', 'listModels', 'setModel'].
@@ -429,8 +493,16 @@ export interface ProviderModule {
429
493
  /** History behavior config — controls message filtering and collapse during replay */
430
494
  historyBehavior?: ProviderHistoryBehavior;
431
495
  /**
432
- * Canonical history sync config — for providers that maintain native history files.
433
- * When set, daemon syncs from native format into ADHDev JSONL store on each tick.
496
+ * Native history config — for providers that maintain native history files.
497
+ * When set, daemon reads/lists provider-native transcripts directly. This is
498
+ * the canonical v1 field name; the legacy `canonicalHistory` field name is
499
+ * still accepted by the loader and aliased onto this field at load time.
500
+ */
501
+ nativeHistory?: NativeHistoryConfig;
502
+ /**
503
+ * @deprecated Legacy v0 alias for {@link ProviderModule.nativeHistory}.
504
+ * Loader populates this from `nativeHistory` so existing internal readers
505
+ * keep working during the transition. Remove after one release.
434
506
  */
435
507
  canonicalHistory?: ProviderCanonicalHistoryConfig;
436
508
  /**
@@ -561,20 +633,25 @@ export interface ProviderHistoryBehavior {
561
633
  * daemon-core. They let each provider own native transcript file discovery and
562
634
  * parsing while daemon-core only validates/pages the normalized result.
563
635
  */
564
- export interface ProviderCanonicalHistoryScriptsConfig {
636
+ export interface NativeHistoryScriptsConfig {
565
637
  /** Reads one native session. Default: 'readNativeHistory'. */
566
638
  readSession?: string;
567
639
  /** Lists native sessions with summary metadata. Default: 'listNativeHistory'. */
568
640
  listSessions?: string;
569
641
  }
570
642
  /**
571
- * Canonical history sync config for providers that maintain their own native history files.
643
+ * @deprecated Use {@link NativeHistoryScriptsConfig}. Retained as an alias for
644
+ * one release so external consumers that referenced the old name keep compiling.
645
+ */
646
+ export type ProviderCanonicalHistoryScriptsConfig = NativeHistoryScriptsConfig;
647
+ /**
648
+ * Native history config — for providers that maintain their own native history files.
572
649
  *
573
650
  * Preferred mode is provider-owned scripts via `scripts`. `format` is now an
574
651
  * opaque provider label retained for diagnostics/backward compatibility; daemon
575
652
  * live paths must not branch on provider-specific format values.
576
653
  */
577
- export interface ProviderCanonicalHistoryConfig {
654
+ export interface NativeHistoryConfig {
578
655
  /** Opaque provider-owned history format label. */
579
656
  format?: string;
580
657
  /** Optional native history glob/template for diagnostics only. */
@@ -590,7 +667,23 @@ export interface ProviderCanonicalHistoryConfig {
590
667
  * Omitted mode defaults to 'native-source'.
591
668
  */
592
669
  mode?: 'native-source' | 'materialized-mirror' | 'disabled';
670
+ /**
671
+ * Chat transcript contract version this provider's read_chat output
672
+ * conforms to. See transcript-v2.ts for the v2 invariants. Absent or `'1.0'`
673
+ * → legacy v1 payload (current behaviour). `'2.0'` → strict v2 payload
674
+ * (stable providerUnitKey/bubbleId/sequence, strict enums, honest coverage).
675
+ *
676
+ * A1 only surfaces this field; validators in read-chat-contract.ts route
677
+ * on it. A2 makes v2 the daemon-internal canonical form and rejects
678
+ * unrecognised values at provider load time.
679
+ */
680
+ contractVersion?: import('./transcript-v2.js').ChatContractVersion;
593
681
  }
682
+ /**
683
+ * @deprecated Use {@link NativeHistoryConfig}. Retained as an alias for one
684
+ * release so external consumers that referenced the old name keep compiling.
685
+ */
686
+ export type ProviderCanonicalHistoryConfig = NativeHistoryConfig;
594
687
  /**
595
688
  * Auto-implement spawn config — controls how the provider is spawned for autonomous AI-driven
596
689
  * provider script implementation (dev-auto-implement.ts).
@@ -0,0 +1,71 @@
1
+ export interface ExternalSource {
2
+ /** Unique short identifier, e.g. "@vendor-x". User-supplied or derived from the URL. */
3
+ name: string;
4
+ /** Full git URL (https://, git@, …). */
5
+ url: string;
6
+ /** Branch / tag / commit-ish to track. Defaults to `main`. */
7
+ ref: string;
8
+ /** ISO timestamp when first registered. */
9
+ addedAt: string;
10
+ }
11
+ export interface ExternalSourcesFile {
12
+ /** Schema version — bump if shape changes. */
13
+ schema: 1;
14
+ sources: ExternalSource[];
15
+ }
16
+ /**
17
+ * Per-type active source selection. Only types reachable from more than
18
+ * one source need an entry — single-source types have no ambiguity.
19
+ *
20
+ * Shape: { active: { "<type>": "<source-name>" } }
21
+ */
22
+ export interface ProvidersActiveFile {
23
+ schema: 1;
24
+ active: Record<string, string>;
25
+ }
26
+ export declare function externalRoot(): string;
27
+ export declare function sourcesFilePath(): string;
28
+ export declare function activeFilePath(): string;
29
+ export declare function loadExternalSources(): ExternalSourcesFile;
30
+ export declare function saveExternalSources(file: ExternalSourcesFile): void;
31
+ export declare function loadProvidersActive(): ProvidersActiveFile;
32
+ export declare function saveProvidersActive(file: ProvidersActiveFile): void;
33
+ /**
34
+ * Derive a short identifier from a git URL when the user didn't supply one.
35
+ * https://github.com/vendor/extra-providers.git → "@vendor-extra-providers"
36
+ * git@github.com:vendor/extra-providers → "@vendor-extra-providers"
37
+ *
38
+ * Idempotent; safe to call before validation since it produces a string
39
+ * regardless of input shape.
40
+ */
41
+ export declare function deriveSourceName(url: string): string;
42
+ /**
43
+ * Return the per-source category/type tree currently on disk under
44
+ * ~/.adhdev/external/<source>/. Used by the conflict detector and by
45
+ * list_provider_sources.
46
+ */
47
+ export interface SourceInventoryEntry {
48
+ sourceName: string;
49
+ /** Map: category → list of provider types. */
50
+ providers: Record<string, string[]>;
51
+ }
52
+ export declare function inventoryExternalSources(): SourceInventoryEntry[];
53
+ /**
54
+ * For a given category+type, list every source that currently exposes it.
55
+ * Returns source names in disk-walk order; callers can use the first one
56
+ * when no explicit active selection exists.
57
+ */
58
+ export declare function sourcesProviding(category: string, type: string): string[];
59
+ /**
60
+ * Resolve which source should be active for a given category+type.
61
+ * - If exactly one source provides it → that source.
62
+ * - If multiple sources provide it → the one named in providers-active.json
63
+ * (when present) or null (ambiguous; loader should warn and pick
64
+ * the first deterministically so daemon doesn't refuse to boot).
65
+ * - If none → null.
66
+ */
67
+ export declare function resolveActiveSource(category: string, type: string, activeFile?: ProvidersActiveFile): {
68
+ source: string | null;
69
+ ambiguous: boolean;
70
+ candidates: string[];
71
+ };
@@ -0,0 +1,100 @@
1
+ /**
2
+ * antigravity-cli-transcript — Daemon-side built-in native history adapter for antigravity-cli.
3
+ *
4
+ * Antigravity CLI stores conversations in multiple complementary locations:
5
+ *
6
+ * 1. ~/.gemini/antigravity-cli/history.jsonl
7
+ * Lightweight index of user prompts, one row per turn:
8
+ * { conversationId: string, display: string, workspace: string, timestamp: number }
9
+ *
10
+ * 2. ~/.gemini/antigravity-cli/brain/<uuid>/.system_generated/logs/transcript*.jsonl
11
+ * Per-session full transcript, one row per agent step:
12
+ * { source: 'USER_EXPLICIT'|'MODEL', type: string, content: string, status: 'DONE'|..., created_at: number }
13
+ *
14
+ * 3. ~/.gemini/antigravity-cli/conversations/<uuid>.pb
15
+ * Protobuf binary — schema not publicly documented. Adapter extracts
16
+ * printable UTF-8 text runs as best-effort content (no proto library needed).
17
+ *
18
+ * This adapter provides:
19
+ * - Full coverage when a brain transcript exists (authoritative source).
20
+ * - Partial coverage (user prompts only) from history.jsonl as fallback.
21
+ * - Best-effort raw-string extraction from .pb files when no other source exists.
22
+ *
23
+ * watchPath (from provider.v1.json):
24
+ * ~/.gemini/antigravity-cli/history.jsonl
25
+ * ~/.gemini/antigravity-cli/brain/{uuid}/.system_generated/logs/transcript*.jsonl
26
+ * ~/.gemini/antigravity-cli/conversations/{uuid}.pb
27
+ *
28
+ * OSS code (AGPL-3.0). Must not import from packages/ (proprietary).
29
+ */
30
+ export type NativeHistoryRole = 'user' | 'assistant' | 'system';
31
+ export type NativeHistoryKind = 'standard' | 'tool' | 'session_start';
32
+ export interface NativeHistoryMessage {
33
+ ts: string;
34
+ receivedAt: number;
35
+ role: NativeHistoryRole;
36
+ content: string;
37
+ kind: NativeHistoryKind;
38
+ senderName?: string;
39
+ agent: 'antigravity-cli';
40
+ historySessionId: string;
41
+ workspace?: string;
42
+ /** Stable per-message identity (v2 contract). */
43
+ providerUnitKey?: string;
44
+ }
45
+ export interface NativeHistorySession {
46
+ messages: NativeHistoryMessage[];
47
+ providerSessionId: string;
48
+ source: 'provider-native';
49
+ sourcePath: string;
50
+ sourceMtimeMs: number;
51
+ /**
52
+ * 'full' — brain transcript was available and parsed.
53
+ * 'partial' — only history.jsonl user-prompts are available.
54
+ * 'best-effort' — .pb file bytes were used for raw text extraction.
55
+ */
56
+ nativeHistoryCoverage: 'full' | 'partial' | 'best-effort';
57
+ workspace?: string;
58
+ partialReason?: string;
59
+ }
60
+ export interface NativeHistorySessionMeta {
61
+ historySessionId: string;
62
+ sessionId: string;
63
+ sourcePath: string;
64
+ sourceMtimeMs: number;
65
+ messageCount: number;
66
+ firstMessageAt: number;
67
+ lastMessageAt: number;
68
+ sessionTitle?: string;
69
+ preview?: string;
70
+ workspace?: string;
71
+ agent: 'antigravity-cli';
72
+ source: 'provider-native';
73
+ nativeHistoryCoverage: 'full' | 'partial' | 'best-effort';
74
+ partialReason?: string;
75
+ }
76
+ /**
77
+ * Read a single Antigravity CLI session by its source file path.
78
+ *
79
+ * `sessionPath` is the absolute path to one of:
80
+ * - A brain transcript JSONL: ~/.gemini/antigravity-cli/brain/<uuid>/.system_generated/logs/transcript*.jsonl
81
+ * - The shared history.jsonl: ~/.gemini/antigravity-cli/history.jsonl
82
+ * - A conversation protobuf: ~/.gemini/antigravity-cli/conversations/<uuid>.pb
83
+ *
84
+ * The session UUID is inferred from the directory name (brain), filename (pb), or
85
+ * must be provided explicitly via `sessionId` for history.jsonl paths.
86
+ *
87
+ * Returns `null` when the file is missing, empty, or yields no parseable messages.
88
+ */
89
+ export declare function readSession(sessionPath: string, sessionId?: string, workspace?: string): NativeHistorySession | null;
90
+ /**
91
+ * List all Antigravity CLI sessions found across all watchPath locations.
92
+ *
93
+ * Priority:
94
+ * 1. Brain transcript sessions (full coverage) — preferred source.
95
+ * 2. History JSONL entries without a brain transcript (partial coverage).
96
+ * 3. .pb conversation files without any other source (best-effort).
97
+ *
98
+ * Returns summary metadata sorted by most recently updated first.
99
+ */
100
+ export declare function listSessions(_watchPath: string): Promise<NativeHistorySessionMeta[]>;
@@ -0,0 +1,70 @@
1
+ /**
2
+ * claude-cli-transcript — Daemon-side built-in native history adapter for claude-cli.
3
+ *
4
+ * Reads Claude Code JSONL transcript files directly without shelling out to a JS override.
5
+ * The transcript format is one JSON object per line, where each line has:
6
+ * - type: 'user' | 'assistant'
7
+ * - message: { content: string | ContentBlock[] }
8
+ * - timestamp: number (ms epoch) | string (ISO)
9
+ * - sessionId?: string
10
+ * - cwd?: string
11
+ *
12
+ * OSS code (AGPL-3.0). Must not import from packages/ (proprietary).
13
+ */
14
+ export type NativeHistoryRole = 'user' | 'assistant' | 'system';
15
+ export type NativeHistoryKind = 'standard' | 'tool' | 'session_start';
16
+ export interface NativeHistoryMessage {
17
+ ts: string;
18
+ receivedAt: number;
19
+ role: NativeHistoryRole;
20
+ content: string;
21
+ kind: NativeHistoryKind;
22
+ senderName?: string;
23
+ agent: 'claude-cli';
24
+ historySessionId: string;
25
+ workspace?: string;
26
+ /** Stable per-message identity (v2 contract). */
27
+ providerUnitKey?: string;
28
+ }
29
+ export interface NativeHistorySession {
30
+ messages: NativeHistoryMessage[];
31
+ providerSessionId: string;
32
+ source: 'provider-native';
33
+ sourcePath: string;
34
+ sourceMtimeMs: number;
35
+ nativeHistoryCoverage: 'full';
36
+ workspace?: string;
37
+ }
38
+ export interface NativeHistorySessionMeta {
39
+ historySessionId: string;
40
+ sessionId: string;
41
+ sourcePath: string;
42
+ sourceMtimeMs: number;
43
+ messageCount: number;
44
+ firstMessageAt: number;
45
+ lastMessageAt: number;
46
+ sessionTitle?: string;
47
+ preview?: string;
48
+ workspace?: string;
49
+ agent: 'claude-cli';
50
+ source: 'provider-native';
51
+ nativeHistoryCoverage: 'full';
52
+ }
53
+ /**
54
+ * Read a single Claude Code session by its transcript file path.
55
+ *
56
+ * `sessionPath` is the absolute path to a `<uuid>.jsonl` file.
57
+ * Returns `null` when the file is missing, empty, or yields no parseable messages.
58
+ */
59
+ export declare function readSession(sessionPath: string): NativeHistorySession | null;
60
+ /**
61
+ * List all Claude Code sessions under the given glob-style watchPath base dir.
62
+ *
63
+ * `watchPath` is the pattern from provider.v1.json (`~/.claude/projects/**\/*.jsonl`).
64
+ * This implementation expands the home directory and scans `~/.claude/projects/`
65
+ * recursively, collecting all `.jsonl` files.
66
+ *
67
+ * Returns summary metadata for each session (no full message reads on this hot path;
68
+ * each file is opened only for lightweight scanning).
69
+ */
70
+ export declare function listSessions(watchPath: string): Promise<NativeHistorySessionMeta[]>;
@@ -0,0 +1,73 @@
1
+ /**
2
+ * codex-cli-transcript — Daemon-side built-in native history adapter for codex-cli.
3
+ *
4
+ * Reads Codex CLI rollout JSONL session files directly without shelling out to a JS override.
5
+ * Files are stored at ~/.codex/sessions/<uuid>[-<slug>].jsonl.
6
+ *
7
+ * Format — each line is a JSON object of one of these types:
8
+ * { type: 'session_meta', timestamp: number, payload: { id: string, cwd: string, ... } }
9
+ * { type: 'response_item', timestamp: number, payload: { type: 'message', role: 'user'|'assistant', content: ... } }
10
+ * { type: 'response_item', timestamp: number, payload: { type: 'function_call' | 'custom_tool_call', name?: string, arguments?: string, input?: unknown } }
11
+ * { type: 'response_item', timestamp: number, payload: { type: 'function_call_output' | 'custom_tool_call_output', output?: string, result?: string } }
12
+ *
13
+ * watchPath (from provider.v1.json): ~/.codex/sessions
14
+ *
15
+ * OSS code (AGPL-3.0). Must not import from packages/ (proprietary).
16
+ */
17
+ export type NativeHistoryRole = 'user' | 'assistant' | 'system';
18
+ export type NativeHistoryKind = 'standard' | 'tool' | 'session_start';
19
+ export interface NativeHistoryMessage {
20
+ ts: string;
21
+ receivedAt: number;
22
+ role: NativeHistoryRole;
23
+ content: string;
24
+ kind: NativeHistoryKind;
25
+ senderName?: string;
26
+ agent: 'codex-cli';
27
+ historySessionId: string;
28
+ workspace?: string;
29
+ /** Stable per-message identity (v2 contract). */
30
+ providerUnitKey?: string;
31
+ }
32
+ export interface NativeHistorySession {
33
+ messages: NativeHistoryMessage[];
34
+ providerSessionId: string;
35
+ source: 'provider-native';
36
+ sourcePath: string;
37
+ sourceMtimeMs: number;
38
+ nativeHistoryCoverage: 'full';
39
+ workspace?: string;
40
+ }
41
+ export interface NativeHistorySessionMeta {
42
+ historySessionId: string;
43
+ sessionId: string;
44
+ sourcePath: string;
45
+ sourceMtimeMs: number;
46
+ messageCount: number;
47
+ firstMessageAt: number;
48
+ lastMessageAt: number;
49
+ sessionTitle?: string;
50
+ preview?: string;
51
+ workspace?: string;
52
+ agent: 'codex-cli';
53
+ source: 'provider-native';
54
+ nativeHistoryCoverage: 'full';
55
+ }
56
+ /**
57
+ * Read a single Codex CLI session by its JSONL file path.
58
+ *
59
+ * `sessionPath` is the absolute path to a `<uuid>[-<slug>].jsonl` file
60
+ * under ~/.codex/sessions/.
61
+ * Returns `null` when the file is missing, empty, or yields no parseable messages.
62
+ */
63
+ export declare function readSession(sessionPath: string): NativeHistorySession | null;
64
+ /**
65
+ * List all Codex CLI sessions under the given watchPath base dir.
66
+ *
67
+ * `watchPath` is the value from provider.v1.json (`~/.codex/sessions`).
68
+ * Expands the home directory and scans the directory recursively,
69
+ * collecting all `.jsonl` files.
70
+ *
71
+ * Returns summary metadata for each session, sorted by most recently updated first.
72
+ */
73
+ export declare function listSessions(watchPath: string): Promise<NativeHistorySessionMeta[]>;