@adhdev/daemon-core 0.9.82-rc.17 → 0.9.82-rc.170

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 (221) 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 +7 -0
  16. package/dist/config/config.d.ts +5 -0
  17. package/dist/config/mesh-config.d.ts +71 -1
  18. package/dist/git/git-commands.d.ts +5 -1
  19. package/dist/index.d.ts +35 -6
  20. package/dist/index.js +18621 -3760
  21. package/dist/index.js.map +1 -1
  22. package/dist/index.mjs +18525 -3732
  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 +96 -5
  34. package/dist/mesh/mesh-fast-forward.d.ts +39 -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 +44 -5
  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 +9 -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 +24 -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.d.ts +3 -0
  53. package/dist/providers/provider-loader.d.ts +26 -4
  54. package/dist/providers/provider-trust.d.ts +31 -0
  55. package/dist/providers/read-chat-contract.d.ts +29 -0
  56. package/dist/providers/sdk/v1/builders/acp/detect-status.d.ts +68 -0
  57. package/dist/providers/sdk/v1/builders/cli/detect-status.d.ts +85 -0
  58. package/dist/providers/sdk/v1/builders/cli/parse-approval-squash.d.ts +59 -0
  59. package/dist/providers/sdk/v1/builders/cli/parse-approval.d.ts +65 -0
  60. package/dist/providers/sdk/v1/builders/cli/parse-session.d.ts +91 -0
  61. package/dist/providers/sdk/v1/builders/cli/visible-region.d.ts +42 -0
  62. package/dist/providers/sdk/v1/fixture-tooling/format.d.ts +126 -0
  63. package/dist/providers/sdk/v1/fixture-tooling/index.d.ts +8 -0
  64. package/dist/providers/sdk/v1/fixture-tooling/replay.d.ts +38 -0
  65. package/dist/providers/sdk/v1/index.d.ts +30 -0
  66. package/dist/providers/sdk/v1/sandbox/README-design.d.ts +193 -0
  67. package/dist/providers/sdk/v1/sandbox/require-whitelist.d.ts +74 -0
  68. package/dist/providers/sdk/v1/sandbox/script-runner.d.ts +98 -0
  69. package/dist/providers/sdk/v1/types/cli/index.d.ts +277 -0
  70. package/dist/providers/sdk/v1/types/common/index.d.ts +169 -0
  71. package/dist/providers/sdk/v1/validators/index.d.ts +5 -0
  72. package/dist/providers/sdk/v1/validators/manifest.d.ts +40 -0
  73. package/dist/providers/sdk/v1/validators/taint.d.ts +52 -0
  74. package/dist/providers/spec/adapter.d.ts +56 -0
  75. package/dist/providers/spec/cli-adapter.d.ts +95 -0
  76. package/dist/providers/spec/driver.d.ts +149 -0
  77. package/dist/providers/spec/evaluator.d.ts +47 -0
  78. package/dist/providers/spec/loader.d.ts +14 -0
  79. package/dist/providers/spec/native-history-executor.d.ts +39 -0
  80. package/dist/providers/spec/route.d.ts +4 -0
  81. package/dist/providers/spec/schema.gen.d.ts +511 -0
  82. package/dist/providers/spec/types.d.ts +212 -0
  83. package/dist/providers/transcript-v2.d.ts +176 -0
  84. package/dist/providers/types/interactive-prompt.d.ts +48 -0
  85. package/dist/repo-mesh-types.d.ts +100 -1
  86. package/dist/sessions/registry.d.ts +3 -0
  87. package/dist/shared-types.d.ts +42 -1
  88. package/dist/status/reporter.d.ts +2 -0
  89. package/dist/status/snapshot.d.ts +1 -0
  90. package/dist/types.d.ts +5 -0
  91. package/package.json +7 -2
  92. package/src/agent-stream/poller.ts +2 -3
  93. package/src/boot/daemon-lifecycle.ts +17 -10
  94. package/src/boot/process-hardening.ts +89 -0
  95. package/src/chat/source-machine.ts +534 -0
  96. package/src/chat/source-resolver.ts +0 -0
  97. package/src/chat/subscription-updates.ts +14 -1
  98. package/src/cli-adapter-types.d.ts +1 -0
  99. package/src/cli-adapter-types.ts +21 -2
  100. package/src/cli-adapters/cli-script-runner.ts +421 -0
  101. package/src/cli-adapters/cli-state-engine.ts +1086 -0
  102. package/src/cli-adapters/provider-cli-adapter.d.ts +1 -1
  103. package/src/cli-adapters/provider-cli-adapter.ts +670 -1137
  104. package/src/cli-adapters/provider-cli-parse.d.ts +1 -0
  105. package/src/cli-adapters/provider-cli-parse.ts +13 -0
  106. package/src/cli-adapters/provider-cli-runtime.ts +3 -1
  107. package/src/cli-adapters/provider-cli-shared.d.ts +2 -0
  108. package/src/cli-adapters/provider-cli-shared.ts +59 -11
  109. package/src/cli-adapters/raw-terminal-io.ts +252 -0
  110. package/src/cli-adapters/terminal-backends/ghostty-vt-backend.ts +17 -1
  111. package/src/cli-adapters/terminal-backends/xterm-backend.ts +8 -1
  112. package/src/commands/chat-commands.ts +1597 -60
  113. package/src/commands/cli-manager.ts +214 -3
  114. package/src/commands/handler.ts +809 -2
  115. package/src/commands/mesh-coordinator.ts +231 -127
  116. package/src/commands/router.ts +3559 -502
  117. package/src/config/chat-history.ts +87 -24
  118. package/src/config/config.ts +12 -0
  119. package/src/config/mesh-config.ts +264 -2
  120. package/src/config/recent-activity.ts +8 -2
  121. package/src/daemon/dev-cli-debug.ts +10 -1
  122. package/src/detection/ide-detector.ts +26 -16
  123. package/src/git/git-commands.ts +17 -5
  124. package/src/git/git-worktree.ts +8 -1
  125. package/src/index.ts +113 -5
  126. package/src/installer.d.ts +1 -1
  127. package/src/installer.ts +8 -6
  128. package/src/ipc/local-ipc-server.ts +278 -0
  129. package/src/launch.d.ts +1 -1
  130. package/src/launch.ts +37 -28
  131. package/src/logging/async-batch-writer.ts +55 -0
  132. package/src/logging/logger.ts +2 -1
  133. package/src/mesh/beads-db.ts +479 -0
  134. package/src/mesh/contracts.ts +329 -0
  135. package/src/mesh/coordinator-prompt.ts +204 -30
  136. package/src/mesh/coordinator-registry.ts +121 -0
  137. package/src/mesh/mesh-active-work.ts +437 -0
  138. package/src/mesh/mesh-events.ts +879 -61
  139. package/src/mesh/mesh-fast-forward.ts +430 -0
  140. package/src/mesh/mesh-host-ownership.ts +73 -0
  141. package/src/mesh/mesh-ledger.ts +457 -104
  142. package/src/mesh/mesh-refine-status.ts +144 -0
  143. package/src/mesh/mesh-work-queue.ts +216 -158
  144. package/src/mesh/preview-freshness.ts +118 -0
  145. package/src/mesh/refine-config.ts +366 -0
  146. package/src/mesh/worktree-bootstrap-config.ts +247 -0
  147. package/src/providers/approval-utils.d.ts +4 -0
  148. package/src/providers/approval-utils.ts +47 -5
  149. package/src/providers/chat-message-normalization.ts +4 -11
  150. package/src/providers/cli-provider-instance.ts +452 -54
  151. package/src/providers/contracts.ts +105 -5
  152. package/src/providers/external-sources.ts +218 -0
  153. package/src/providers/ide-provider-instance.ts +19 -5
  154. package/src/providers/native-history/antigravity-cli-transcript.ts +643 -0
  155. package/src/providers/native-history/claude-cli-transcript.ts +396 -0
  156. package/src/providers/native-history/codex-cli-transcript.ts +419 -0
  157. package/src/providers/native-history/dispatcher.ts +227 -0
  158. package/src/providers/native-history/hermes-cli-transcript.ts +230 -0
  159. package/src/providers/native-history/index.ts +30 -0
  160. package/src/providers/provider-instance.ts +3 -0
  161. package/src/providers/provider-loader.ts +585 -50
  162. package/src/providers/provider-schema.ts +31 -13
  163. package/src/providers/provider-trust.ts +114 -0
  164. package/src/providers/read-chat-contract.ts +76 -16
  165. package/src/providers/sdk/README.md +49 -0
  166. package/src/providers/sdk/v1/builders/acp/detect-status.ts +144 -0
  167. package/src/providers/sdk/v1/builders/cli/detect-status.ts +262 -0
  168. package/src/providers/sdk/v1/builders/cli/parse-approval-squash.ts +158 -0
  169. package/src/providers/sdk/v1/builders/cli/parse-approval.ts +250 -0
  170. package/src/providers/sdk/v1/builders/cli/parse-session.ts +276 -0
  171. package/src/providers/sdk/v1/builders/cli/visible-region.ts +143 -0
  172. package/src/providers/sdk/v1/fixture-tooling/format.ts +130 -0
  173. package/src/providers/sdk/v1/fixture-tooling/index.ts +22 -0
  174. package/src/providers/sdk/v1/fixture-tooling/replay.ts +352 -0
  175. package/src/providers/sdk/v1/index.ts +152 -0
  176. package/src/providers/sdk/v1/sandbox/README-design.ts +195 -0
  177. package/src/providers/sdk/v1/sandbox/require-whitelist.ts +472 -0
  178. package/src/providers/sdk/v1/sandbox/script-runner.ts +150 -0
  179. package/src/providers/sdk/v1/schemas/cli/provider.schema.json +458 -0
  180. package/src/providers/sdk/v1/schemas/primitives/acp-session-protocol-v1.json +131 -0
  181. package/src/providers/sdk/v1/schemas/primitives/native-history-codex-rollout-v1.json +66 -0
  182. package/src/providers/sdk/v1/schemas/primitives/tui-approval-squash-v1.json +91 -0
  183. package/src/providers/sdk/v1/schemas/primitives/tui-assistant-block-v1.json +91 -0
  184. package/src/providers/sdk/v1/schemas/primitives/tui-cue-ordering-v1.json +47 -0
  185. package/src/providers/sdk/v1/schemas/primitives/tui-dispatch-order-v1.json +32 -0
  186. package/src/providers/sdk/v1/schemas/primitives/tui-footer-chrome-v1.json +42 -0
  187. package/src/providers/sdk/v1/schemas/primitives/tui-index-finder-v1.json +27 -0
  188. package/src/providers/sdk/v1/schemas/primitives/tui-modal-v1.json +125 -0
  189. package/src/providers/sdk/v1/schemas/primitives/tui-prompt-marker-v1.json +45 -0
  190. package/src/providers/sdk/v1/schemas/primitives/tui-session-id-extraction-v1.json +46 -0
  191. package/src/providers/sdk/v1/schemas/primitives/tui-settled-prompt-v1.json +71 -0
  192. package/src/providers/sdk/v1/schemas/primitives/tui-spinner-v1.json +83 -0
  193. package/src/providers/sdk/v1/schemas/primitives/tui-transcript-pty-v1.json +83 -0
  194. package/src/providers/sdk/v1/schemas/primitives/tui-visible-region-v1.json +57 -0
  195. package/src/providers/sdk/v1/schemas/primitives/tui-welcome-screen-v1.json +35 -0
  196. package/src/providers/sdk/v1/types/cli/index.ts +365 -0
  197. package/src/providers/sdk/v1/types/common/index.ts +210 -0
  198. package/src/providers/sdk/v1/validators/index.ts +19 -0
  199. package/src/providers/sdk/v1/validators/manifest.ts +110 -0
  200. package/src/providers/sdk/v1/validators/taint.ts +309 -0
  201. package/src/providers/spec/adapter.ts +168 -0
  202. package/src/providers/spec/cli-adapter.ts +430 -0
  203. package/src/providers/spec/driver.ts +502 -0
  204. package/src/providers/spec/evaluator.ts +298 -0
  205. package/src/providers/spec/loader.ts +130 -0
  206. package/src/providers/spec/native-history-executor.ts +623 -0
  207. package/src/providers/spec/route.ts +51 -0
  208. package/src/providers/spec/schema.gen.ts +511 -0
  209. package/src/providers/spec/schema.json +211 -0
  210. package/src/providers/spec/types.ts +231 -0
  211. package/src/providers/transcript-v2.ts +567 -0
  212. package/src/providers/types/interactive-prompt.ts +297 -0
  213. package/src/providers/version-archive.ts +38 -20
  214. package/src/repo-mesh-types.ts +110 -1
  215. package/src/sessions/registry.ts +3 -0
  216. package/src/shared-types.ts +45 -1
  217. package/src/status/builders.ts +24 -6
  218. package/src/status/reporter.ts +15 -0
  219. package/src/status/snapshot.ts +84 -25
  220. package/src/system/host-memory.ts +29 -12
  221. package/src/types.ts +5 -0
@@ -30,9 +30,33 @@ import type {
30
30
  ResolvedProvider,
31
31
  } from './contracts.js';
32
32
  import { validateProviderDefinition } from './provider-schema.js';
33
+ import {
34
+ loadProvidersActive,
35
+ resolveActiveSource,
36
+ } from './external-sources.js';
33
37
  import type { ProviderSourceMode } from '../config/config.js';
34
38
  import type { ProviderSourceConfigSnapshot, ProviderUserDirSource } from '../config/provider-source-config.js';
35
39
 
40
+ /**
41
+ * Adds a provider-script root to the require whitelist. Wrapped in a
42
+ * try/catch + null check so a loader hot-path can't crash on a path
43
+ * that doesn't exist yet or one the whitelist hook rejects.
44
+ *
45
+ * The require-whitelist module is loaded lazily on first call. Eagerly
46
+ * top-level importing it pulls `node:fs.realpathSync.native` into
47
+ * module evaluation, which breaks unit tests that partially mock `fs`
48
+ * (e.g. test/commands/get-logs-incremental.test.ts mocks only
49
+ * existsSync + readFileSync). Lazy load keeps that mock surface valid.
50
+ */
51
+ function registerProviderScriptRootSafely(root: string | null | undefined): void {
52
+ if (!root || typeof root !== 'string') return;
53
+ try {
54
+ const { registerProviderScriptRoot } =
55
+ require('./sdk/v1/sandbox/require-whitelist.js') as typeof import('./sdk/v1/sandbox/require-whitelist.js');
56
+ registerProviderScriptRoot(root);
57
+ } catch { /* boot-time only — swallow */ }
58
+ }
59
+
36
60
  interface ProviderAvailabilityState {
37
61
  installed: boolean;
38
62
  detectedPath: string | null;
@@ -92,7 +116,9 @@ export class ProviderLoader {
92
116
  }
93
117
 
94
118
  private static readonly GITHUB_TARBALL_URL = 'https://github.com/vilmire/adhdev-providers/archive/refs/heads/main.tar.gz';
119
+ private static readonly REGISTRY_BASE_URL = 'https://api.adhf.dev/api/v1/registry';
95
120
  private static readonly META_FILE = '.meta.json';
121
+ private static readonly REGISTRY_META_FILE = '.registry-meta.json';
96
122
  private static readonly REPO_PROVIDER_DIRNAME = 'adhdev-providers';
97
123
  private static readonly SIBLING_MARKER_FILE = '.adhdev-provider-root';
98
124
  private static readonly SIBLING_ENV_VAR = 'ADHDEV_USE_SIBLING_PROVIDERS';
@@ -193,6 +219,33 @@ export class ProviderLoader {
193
219
  sourceMode: options?.sourceMode,
194
220
  disableUpstream: options?.disableUpstream,
195
221
  });
222
+
223
+ // One-time migration: ~/.adhdev/marketplace → ~/.adhdev/external.
224
+ // The directory was renamed when the "marketplace" install model was
225
+ // dropped in favour of explicit external git sources. Best-effort:
226
+ // if the rename fails we leave both dirs in place and log so the user
227
+ // can investigate.
228
+ this.migrateMarketplaceDirToExternal();
229
+ }
230
+
231
+ private migrateMarketplaceDirToExternal(): void {
232
+ try {
233
+ const home = os.homedir();
234
+ const oldDir = path.join(home, '.adhdev', 'marketplace');
235
+ const newDir = path.join(home, '.adhdev', 'external');
236
+ if (!fs.existsSync(oldDir)) return;
237
+ if (fs.existsSync(newDir)) {
238
+ // Both exist — don't merge. Leave old in place; surface in logs so
239
+ // the user can decide what to keep. Loader still loads from
240
+ // external/ only, so old marketplace/ becomes inert.
241
+ this.log(`Migration skipped: both ~/.adhdev/marketplace and ~/.adhdev/external exist (marketplace dir is now inert and can be removed manually).`);
242
+ return;
243
+ }
244
+ fs.renameSync(oldDir, newDir);
245
+ this.log(`Migrated ~/.adhdev/marketplace → ~/.adhdev/external (one-time rename after provider source-layer cleanup).`);
246
+ } catch (e: any) {
247
+ this.log(`Marketplace→external migration failed: ${e?.message || e}`);
248
+ }
196
249
  }
197
250
 
198
251
  private log(msg: string): void {
@@ -224,7 +277,12 @@ export class ProviderLoader {
224
277
  * Highest-priority editable overrides come first.
225
278
  */
226
279
  getProviderRoots(): string[] {
227
- return [this.userDir, this.upstreamDir];
280
+ // Order matters: user customs > external (3rd-party sources) > upstream
281
+ // (official auto-sync). findProviderDirInternal walks this list in order
282
+ // to locate the provider dir containing the scripts/, so external must
283
+ // be included here even though loadAll() also reads it directly.
284
+ const externalDir = path.join(os.homedir(), '.adhdev', 'external');
285
+ return [this.userDir, externalDir, this.upstreamDir];
228
286
  }
229
287
 
230
288
  getSourceConfig(): ProviderSourceConfigSnapshot {
@@ -316,16 +374,19 @@ export class ProviderLoader {
316
374
 
317
375
  /**
318
376
  * Load all providers (3-tier priority)
319
- * 1. .upstream/ (GitHub auto-download — primary source)
320
- * 2. User custom (~/.adhdev/providers/ excluding .upstream)
321
- * User custom always wins (highest priority).
377
+ * 1. ~/.adhdev/providers/.upstream/ official git, auto-synced
378
+ * 2. ~/.adhdev/external/ 3rd-party git sources, user-added,
379
+ * bundled providers may include arbitrary JS (untrusted by default)
380
+ * 3. ~/.adhdev/providers/ (excluding .upstream) — user-authored customs,
381
+ * always wins
382
+ * Highest priority listed last (overwrites earlier loads).
322
383
  * If .upstream/ is empty, call fetchLatest() before loadAll().
323
384
  */
324
385
  loadAll(): void {
325
386
  this.providers.clear();
326
387
  this.providerAvailability.clear();
327
388
 
328
- // 1. Load upstream (GitHub auto-download — primary source)
389
+ // 1. Load upstream (GitHub auto-download — primary official source)
329
390
  let upstreamCount = 0;
330
391
  if (!this.disableUpstream && fs.existsSync(this.upstreamDir)) {
331
392
  upstreamCount = this.loadDir(this.upstreamDir);
@@ -336,7 +397,90 @@ export class ProviderLoader {
336
397
  this.log('Upstream loading disabled (sourceMode=no-upstream)');
337
398
  }
338
399
 
339
- // 2. Load user custom (excluding .upstream — highest priority, never auto-updated)
400
+ // 2. Load external providers from ~/.adhdev/external/<source-name>/
401
+ // (3rd-party git sources). Overrides upstream but is itself overridden
402
+ // by user customs in step 3.
403
+ //
404
+ // Each registered source is a separate subdirectory so two sources can
405
+ // both expose the same provider type without overwriting each other.
406
+ // When more than one source provides the same type, providers-active.json
407
+ // chooses the active one; without an explicit choice we deterministically
408
+ // pick the first in disk-walk order and log the ambiguity so the user
409
+ // can resolve it from the dashboard.
410
+ //
411
+ // Any non-spec manifest (tui block / overrides / scriptDir) coming from
412
+ // an external source runs JavaScript the daemon hasn't audited, so
413
+ // dashboards must surface an "untrusted source" badge before letting
414
+ // the user enable them.
415
+ const externalDir = path.join(os.homedir(), '.adhdev', 'external');
416
+ if (fs.existsSync(externalDir)) {
417
+ // Legacy layout (pre-source-namespace): manifests sit directly at
418
+ // external/<category>/<type>/. Detect by presence of category dirs at
419
+ // the root and migrate inline by treating the whole tree as a single
420
+ // implicit source. Loader behavior unchanged for legacy callers.
421
+ const rootEntries = (() => {
422
+ try { return fs.readdirSync(externalDir, { withFileTypes: true }); }
423
+ catch { return [] as fs.Dirent[]; }
424
+ })();
425
+ const KNOWN_CATEGORIES = new Set(['cli', 'ide', 'extension', 'acp']);
426
+ const looksLegacy = rootEntries.some(e => e.isDirectory() && KNOWN_CATEGORIES.has(e.name));
427
+ if (looksLegacy) {
428
+ // Tree shape predates per-source dirs — treat the whole thing as a
429
+ // single anonymous source so existing installs keep working until
430
+ // they're migrated to a real source registration.
431
+ const externalCount = this.loadDir(externalDir);
432
+ if (externalCount > 0) {
433
+ this.log(`Loaded ${externalCount} external providers (legacy unnamed source)`);
434
+ }
435
+ } else {
436
+ // New layout: external/<source-name>/<category>/<type>/…
437
+ const activeFile = loadProvidersActive();
438
+ let totalLoaded = 0;
439
+ const ambiguousTypes: { type: string; chosen: string; candidates: string[] }[] = [];
440
+ // Per-source load, then filter by active-selection: for each type
441
+ // present in more than one source, only the active source's copy
442
+ // is left in this.providers.
443
+ for (const sourceEntry of rootEntries) {
444
+ if (!sourceEntry.isDirectory()) continue;
445
+ const sourceDir = path.join(externalDir, sourceEntry.name);
446
+ const sourceLoaded = this.loadDir(sourceDir);
447
+ if (sourceLoaded > 0) {
448
+ totalLoaded += sourceLoaded;
449
+ this.log(`Loaded ${sourceLoaded} providers from external source "${sourceEntry.name}"`);
450
+ }
451
+ }
452
+ // Resolve ambiguities — when the same type came from multiple
453
+ // sources, the last load wins by default. Replay with the active
454
+ // selection so the user-chosen source ends up winning.
455
+ for (const [type] of this.providers) {
456
+ const prov = this.providers.get(type);
457
+ if (!prov) continue;
458
+ const resolved = resolveActiveSource(prov.category, type, activeFile);
459
+ if (resolved.candidates.length <= 1) continue;
460
+ if (resolved.ambiguous) {
461
+ ambiguousTypes.push({ type, chosen: resolved.source ?? '?', candidates: resolved.candidates });
462
+ }
463
+ if (resolved.source && resolved.source !== '?') {
464
+ const sourceDir = path.join(externalDir, resolved.source);
465
+ // Reload only this source's copy of the conflicting type so it
466
+ // overwrites whatever else won the initial pass.
467
+ const reloadCount = this.loadDir(sourceDir);
468
+ // reloadCount is a sanity check — we expect ≥1
469
+ if (reloadCount === 0) {
470
+ this.log(`Active source "${resolved.source}" no longer provides ${type}`);
471
+ }
472
+ }
473
+ }
474
+ if (totalLoaded > 0) {
475
+ this.log(`Loaded ${totalLoaded} external providers (3rd-party sources)`);
476
+ }
477
+ for (const a of ambiguousTypes) {
478
+ this.log(`Ambiguous provider "${a.type}" — provided by [${a.candidates.join(', ')}], defaulted to "${a.chosen}". Set the active source from the dashboard to silence this warning.`);
479
+ }
480
+ }
481
+ }
482
+
483
+ // 3. Load user custom (excluding .upstream — highest priority, never auto-updated)
340
484
  if (fs.existsSync(this.userDir)) {
341
485
  const userCount = this.loadDir(this.userDir, ['.upstream']);
342
486
  if (userCount > 0) {
@@ -909,18 +1053,28 @@ export class ProviderLoader {
909
1053
 
910
1054
  for (const entry of compat) {
911
1055
  if (this.matchesVersion(currentVersion, entry.ideVersion)) {
912
- const loaded = this.loadScriptsFromDir(type, entry.scriptDir);
913
- if (loaded) {
914
- resolved.scripts = loaded;
915
- this.debugLog(` [compatibility] ${type} v${currentVersion} ${entry.scriptDir}`);
916
- resolved._resolvedScriptDir = entry.scriptDir;
917
- resolved._resolvedScriptsSource = `compatibility:${entry.ideVersion}`;
918
- if (providerDir) {
919
- const fullDir = path.join(providerDir, entry.scriptDir);
920
- resolved._resolvedScriptsPath = fs.existsSync(path.join(fullDir, 'scripts.js'))
921
- ? path.join(fullDir, 'scripts.js')
922
- : fullDir;
1056
+ // entry.scriptDir is optional now — spec-driven providers (agy,
1057
+ // codex on >=0.137, claude on >=2.1) only ship `spec` here, so
1058
+ // there's nothing to load from the filesystem. SpecCliAdapter
1059
+ // takes over via the `spec` path later in this method.
1060
+ if (entry.scriptDir) {
1061
+ const loaded = this.loadScriptsFromDir(type, entry.scriptDir);
1062
+ if (loaded) {
1063
+ resolved.scripts = loaded;
1064
+ this.debugLog(` [compatibility] ${type} v${currentVersion} → ${entry.scriptDir}`);
1065
+ resolved._resolvedScriptDir = entry.scriptDir;
1066
+ resolved._resolvedScriptsSource = `compatibility:${entry.ideVersion}`;
1067
+ if (providerDir) {
1068
+ const fullDir = path.join(providerDir, entry.scriptDir);
1069
+ resolved._resolvedScriptsPath = fs.existsSync(path.join(fullDir, 'scripts.js'))
1070
+ ? path.join(fullDir, 'scripts.js')
1071
+ : fullDir;
1072
+ }
1073
+ matched = true;
923
1074
  }
1075
+ } else {
1076
+ // Spec-only entry — still counts as a match so the
1077
+ // defaultScriptDir fallback below doesn't kick in.
924
1078
  matched = true;
925
1079
  }
926
1080
  break; // first match wins
@@ -988,7 +1142,12 @@ export class ProviderLoader {
988
1142
  }
989
1143
 
990
1144
  // 3. Composite override (OS + version)
991
- if (base.overrides) {
1145
+ // Legacy shape: base.overrides is an Array<{ when: {os,version}, scripts }>.
1146
+ // v1 manifests (Phase 3-4) repurposed `overrides` as an object map of
1147
+ // capability overrides (e.g. { detectStatus: { path, schema } }), which is
1148
+ // consumed by the SDK builders, not by this resolver. Only iterate when
1149
+ // the field is in the legacy array shape.
1150
+ if (Array.isArray(base.overrides)) {
992
1151
  for (const override of base.overrides) {
993
1152
  const osMatch = !override.when.os || override.when.os === currentOs;
994
1153
  const verMatch = !override.when.version || (currentVersion && this.matchesVersion(currentVersion, override.when.version));
@@ -996,6 +1155,40 @@ export class ProviderLoader {
996
1155
  resolved.scripts = { ...resolved.scripts, ...override.scripts };
997
1156
  }
998
1157
  }
1158
+ } else if (base.overrides && typeof base.overrides === 'object') {
1159
+ // v1 manifest shape: { detectStatus: { path }, parseSession: { path }, ... }
1160
+ // Each script name maps to a path inside the provider directory. We load
1161
+ // the file and merge its export(s) into resolved.scripts. Lets a
1162
+ // provider override a single primitive (e.g. just detectStatus) while
1163
+ // letting the SDK synthesize the rest from the tui block.
1164
+ const providerDir = this.findProviderDirInternal(base.type);
1165
+ if (providerDir) {
1166
+ for (const [scriptName, override] of Object.entries(base.overrides as Record<string, any>)) {
1167
+ if (!override || typeof override.path !== 'string') continue;
1168
+ const fullPath = path.join(providerDir, override.path);
1169
+ if (!fs.existsSync(fullPath)) {
1170
+ this.log(` [overrides] ${base.type}: ${scriptName} path not found: ${fullPath}`);
1171
+ continue;
1172
+ }
1173
+ try {
1174
+ // Override scripts go through the same whitelist gate as the
1175
+ // main scripts dir. Use the provider parent root so a v1
1176
+ // override can still require ../_shared helpers.
1177
+ registerProviderScriptRootSafely(path.dirname(path.dirname(providerDir)));
1178
+ delete require.cache[require.resolve(fullPath)];
1179
+ const fn = require(fullPath);
1180
+ const target = typeof fn === 'function' ? fn : (fn && fn[scriptName]);
1181
+ if (typeof target === 'function') {
1182
+ resolved.scripts = { ...resolved.scripts, [scriptName]: target } as any;
1183
+ this.log(` [overrides] ${base.type}: ${scriptName} loaded from ${override.path}`);
1184
+ } else {
1185
+ this.log(` [overrides] ${base.type}: ${scriptName} export missing in ${override.path}`);
1186
+ }
1187
+ } catch (e: any) {
1188
+ this.log(` [overrides] ${base.type}: ${scriptName} require failed: ${e?.message || e}`);
1189
+ }
1190
+ }
1191
+ }
999
1192
  }
1000
1193
 
1001
1194
  if ((resolved.category === 'cli' || resolved.category === 'acp') && resolved.spawn?.command) {
@@ -1006,6 +1199,125 @@ export class ProviderLoader {
1006
1199
  };
1007
1200
  }
1008
1201
 
1202
+ // (spec migration) Late-binding spec.json native-history hook. Runs
1203
+ // *after* every script-loading path (compatibility / defaultScriptDir /
1204
+ // overrides) so it deterministically wins over a legacy v1 scripts.js
1205
+ // export. Three modes, picked by spec.json's native_history block:
1206
+ // 1. source — declarative jsonl/sqlite executor (new-provider path,
1207
+ // no daemon change needed for new on-disk formats)
1208
+ // 2. override_path — provider-supplied reader file (escape hatch for
1209
+ // exotic formats); module default-exports a reader fn
1210
+ // 3. reader — built-in reader id (claude-cli / codex-cli /
1211
+ // antigravity-cli / hermes-cli), kept for backwards
1212
+ // compatibility with the four shipped providers
1213
+ if (providerDir) {
1214
+ try {
1215
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
1216
+ const fs = require('node:fs');
1217
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
1218
+ const path = require('node:path');
1219
+ // Pick the right spec file for the detected CLI version. Resolution
1220
+ // order:
1221
+ // 1. compatibility[i].spec where ideVersion matches currentVersion
1222
+ // (lets a provider ship specs/2.0.json, specs/2.1.json, etc.
1223
+ // alongside the matching scriptDir)
1224
+ // 2. specs/default.json — explicit fallback
1225
+ // 3. spec.json — legacy single-spec layout
1226
+ // Missing files fall through silently to the next candidate.
1227
+ const candidates: string[] = [];
1228
+ if (Array.isArray((base as any).compatibility)) {
1229
+ for (const entry of (base as any).compatibility) {
1230
+ if (typeof entry?.spec !== 'string') continue;
1231
+ // If currentVersion is unknown (cli-manager hasn't probed yet)
1232
+ // we still let compatibility entries that don't pin a version
1233
+ // through, plus any entry whose pin matches.
1234
+ const matches = !entry.ideVersion
1235
+ || (currentVersion && this.matchesVersion(currentVersion, entry.ideVersion))
1236
+ || !currentVersion;
1237
+ if (matches) candidates.push(path.join(providerDir, entry.spec));
1238
+ }
1239
+ }
1240
+ candidates.push(path.join(providerDir, 'specs', 'default.json'));
1241
+ candidates.push(path.join(providerDir, 'spec.json'));
1242
+ const specPath = candidates.find((p: string) => fs.existsSync(p));
1243
+ if (specPath) {
1244
+ // Hand the resolved spec path off to route.ts via a hidden field
1245
+ // so the routing layer doesn't have to repeat the candidate walk.
1246
+ (resolved as any)._resolvedSpecPath = specPath;
1247
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
1248
+ const { loadSpec } = require('./spec/loader.js');
1249
+ const r = loadSpec(specPath);
1250
+ // Stub each control_bar entry as a provider.scripts.<id>. The
1251
+ // upstream invoke_provider_script gate checks that the script
1252
+ // name exists on provider.scripts before calling adapter.invokeScript;
1253
+ // for spec providers the *actual* dispatch happens inside
1254
+ // SpecCliAdapter.invokeScript which maps the name to control_bar.
1255
+ // The stub is just a presence marker so the gate doesn't reject.
1256
+ if (r.ok) {
1257
+ const controls = r.spec.control_bar ?? [];
1258
+ if (controls.length > 0) {
1259
+ resolved.scripts = { ...(resolved.scripts || {}) };
1260
+ for (const ctl of controls) {
1261
+ if (!(resolved.scripts as any)[ctl.id]) {
1262
+ (resolved.scripts as any)[ctl.id] = (..._args: unknown[]) => ({
1263
+ __spec_control: true,
1264
+ controlId: ctl.id,
1265
+ actionType: ctl.action.type,
1266
+ });
1267
+ }
1268
+ }
1269
+ }
1270
+ }
1271
+ const nh = r.ok ? r.spec.native_history : undefined;
1272
+ if (nh) {
1273
+ let reader: ((input: any) => any) | null = null;
1274
+ let format = 'spec';
1275
+
1276
+ if (nh.source) {
1277
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
1278
+ const { executeNativeHistory } = require('./spec/native-history-executor.js');
1279
+ format = `spec-${nh.source.kind}`;
1280
+ reader = (input: any) => executeNativeHistory(nh, input);
1281
+ } else if (nh.override_path) {
1282
+ const overrideFile = path.resolve(providerDir, nh.override_path);
1283
+ if (fs.existsSync(overrideFile)) {
1284
+ try {
1285
+ registerProviderScriptRootSafely(path.dirname(path.dirname(providerDir)));
1286
+ delete require.cache[require.resolve(overrideFile)];
1287
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
1288
+ const mod = require(overrideFile);
1289
+ const fn = typeof mod === 'function' ? mod : (mod && typeof mod.default === 'function' ? mod.default : null);
1290
+ if (fn) {
1291
+ format = 'spec-override';
1292
+ reader = (input: any) => fn(input);
1293
+ }
1294
+ } catch { /* fall through — leave native unavailable */ }
1295
+ }
1296
+ } else if (nh.reader) {
1297
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
1298
+ const { createNativeHistoryDispatcher } = require('./native-history/dispatcher.js');
1299
+ const dispatch = createNativeHistoryDispatcher(nh.reader);
1300
+ format = nh.reader;
1301
+ reader = (input: any) => dispatch(input);
1302
+ }
1303
+
1304
+ if (reader) {
1305
+ resolved.scripts = { ...(resolved.scripts || {}) };
1306
+ (resolved.scripts as any).readNativeHistory = reader;
1307
+ (resolved as any).nativeHistory = {
1308
+ format,
1309
+ watchPath: undefined,
1310
+ scripts: { readSession: 'readNativeHistory' },
1311
+ mode: 'native-source',
1312
+ };
1313
+ }
1314
+ }
1315
+ }
1316
+ } catch {
1317
+ // Best-effort — spec wiring failure must not break legacy providers.
1318
+ }
1319
+ }
1320
+
1009
1321
  return resolved;
1010
1322
  }
1011
1323
 
@@ -1016,16 +1328,27 @@ export class ProviderLoader {
1016
1328
  private loadScriptsFromDir(type: string, scriptDir: string): Partial<ProviderScripts> | null {
1017
1329
  const providerDir = this.findProviderDirInternal(type);
1018
1330
  if (!providerDir) {
1019
- this.log(` [loadScriptsFromDir] ${type}: providerDir not found`);
1331
+ // No provider dir for this type a spec-only provider with no
1332
+ // legacy scripts/v1 layout is a normal configuration, not a
1333
+ // problem to surface at INFO. resolve() calls this on every
1334
+ // request; INFO spam every 200ms drowns out the real signal.
1335
+ this.debugLog(`[loadScriptsFromDir] ${type}: providerDir not found`);
1020
1336
  return null;
1021
1337
  }
1022
1338
 
1023
1339
  const dir = path.join(providerDir, scriptDir);
1024
1340
  if (!fs.existsSync(dir)) {
1025
- this.log(` [loadScriptsFromDir] ${type}: dir not found: ${dir}`);
1341
+ this.debugLog(`[loadScriptsFromDir] ${type}: dir not found: ${dir}`);
1026
1342
  return null;
1027
1343
  }
1028
1344
 
1345
+ // Register the provider's *parent root* (e.g. .../adhdev-providers/) so
1346
+ // the require whitelist gates every script + every _shared helper this
1347
+ // provider may reach. Picking the grandparent (one above the category
1348
+ // dir `cli/`) lets sibling helpers in `_shared` resolve while still
1349
+ // blocking `../../etc/...` escapes. Idempotent.
1350
+ registerProviderScriptRootSafely(path.dirname(path.dirname(providerDir)));
1351
+
1029
1352
  // Return cached scripts if available (cleared on reload/watch)
1030
1353
  const cached = this.scriptsCache.get(dir);
1031
1354
  if (cached) return cached;
@@ -1036,7 +1359,7 @@ export class ProviderLoader {
1036
1359
  try {
1037
1360
  delete require.cache[require.resolve(scriptsJs)];
1038
1361
  const loaded = require(scriptsJs);
1039
- this.log(` [loadScriptsFromDir] ${type}: loaded scripts.js from ${dir} (${Object.keys(loaded).length} exports)`);
1362
+ this.debugLog(`[loadScriptsFromDir] ${type}: loaded scripts.js from ${dir} (${Object.keys(loaded).length} exports)`);
1040
1363
  this.scriptsCache.set(dir, loaded);
1041
1364
  return loaded;
1042
1365
  } catch (e) {
@@ -1067,13 +1390,17 @@ export class ProviderLoader {
1067
1390
  awaitWriteFinish: { stabilityThreshold: 200, pollInterval: 50 },
1068
1391
  });
1069
1392
 
1393
+ let reloadTimer: ReturnType<typeof setTimeout> | null = null;
1070
1394
  const handleChange = (filePath: string) => {
1071
1395
  if (/[\/\\]fixtures[\/\\]/.test(filePath)) {
1072
1396
  return;
1073
1397
  }
1074
1398
  if (filePath.endsWith('.js') || filePath.endsWith('.json')) {
1075
- this.log(`File changed: ${path.basename(filePath)}, reloading...`);
1076
- this.reload();
1399
+ if (reloadTimer) clearTimeout(reloadTimer);
1400
+ reloadTimer = setTimeout(() => {
1401
+ this.log(`File changed: ${path.basename(filePath)}, reloading...`);
1402
+ this.reload();
1403
+ }, 300);
1077
1404
  }
1078
1405
  };
1079
1406
 
@@ -1124,13 +1451,118 @@ export class ProviderLoader {
1124
1451
  *
1125
1452
  * @returns Whether an update occurred
1126
1453
  */
1454
+ /**
1455
+ * Sync providers from the ADHDev registry (registry.adhf.dev).
1456
+ *
1457
+ * Downloads only providers whose server checksum differs from the locally
1458
+ * cached checksum. Falls back gracefully to the GitHub tarball path if the
1459
+ * registry is unreachable or returns an unexpected response.
1460
+ *
1461
+ * Returns `{ updated: true }` when at least one provider file changed on disk,
1462
+ * `{ updated: false }` when everything is already current, or
1463
+ * `{ updated: false, error }` when the registry couldn't be reached and we
1464
+ * should proceed to the GitHub tarball fallback.
1465
+ */
1466
+ async fetchFromRegistry(): Promise<{ updated: boolean; error?: string }> {
1467
+ if (this.disableUpstream) {
1468
+ this.log('Registry sync skipped (sourceMode=no-upstream)');
1469
+ return { updated: false };
1470
+ }
1471
+ this.log(`Registry sync starting (${ProviderLoader.REGISTRY_BASE_URL})...`);
1472
+
1473
+ const https = require('https') as typeof import('https');
1474
+ const regMetaPath = path.join(this.upstreamDir, ProviderLoader.REGISTRY_META_FILE);
1475
+
1476
+ // Load cached checksums
1477
+ let cachedChecksums: Record<string, string> = {};
1478
+ try {
1479
+ if (fs.existsSync(regMetaPath)) {
1480
+ cachedChecksums = JSON.parse(fs.readFileSync(regMetaPath, 'utf-8')).checksums ?? {};
1481
+ }
1482
+ } catch { }
1483
+
1484
+ try {
1485
+ // 1. Fetch provider list
1486
+ const listUrl = `${ProviderLoader.REGISTRY_BASE_URL}/providers`;
1487
+ const listBody = await new Promise<string>((resolve, reject) => {
1488
+ const req = https.get(listUrl, { headers: { 'User-Agent': 'adhdev-daemon', 'Accept': 'application/json' }, timeout: 10000 }, (res) => {
1489
+ if (res.statusCode !== 200) { reject(new Error(`registry list HTTP ${res.statusCode}`)); return; }
1490
+ const chunks: Buffer[] = [];
1491
+ res.on('data', (c: Buffer) => chunks.push(c));
1492
+ res.on('end', () => resolve(Buffer.concat(chunks).toString('utf-8')));
1493
+ });
1494
+ req.on('error', reject);
1495
+ req.on('timeout', () => { req.destroy(); reject(new Error('registry list timeout')); });
1496
+ });
1497
+
1498
+ const list = JSON.parse(listBody) as { providers: Array<{ type: string; category: string; checksum: string; version: string }> };
1499
+ if (!Array.isArray(list.providers)) throw new Error('unexpected registry response shape');
1500
+
1501
+ let updatedCount = 0;
1502
+
1503
+ for (const entry of list.providers) {
1504
+ const { type, category, checksum, version } = entry;
1505
+ const cacheKey = `${category}/${type}`;
1506
+ if (cachedChecksums[cacheKey] === checksum) continue; // already current
1507
+
1508
+ // Download this provider's manifest
1509
+ const dlUrl = `${ProviderLoader.REGISTRY_BASE_URL}/providers/${type}/${version}/download`;
1510
+ const manifestBody = await new Promise<string>((resolve, reject) => {
1511
+ const req = https.get(dlUrl, { headers: { 'User-Agent': 'adhdev-daemon', 'Accept': 'application/json' }, timeout: 30000 }, (res) => {
1512
+ if (res.statusCode !== 200) { reject(new Error(`registry download HTTP ${res.statusCode} for ${type}@${version}`)); return; }
1513
+ const chunks: Buffer[] = [];
1514
+ res.on('data', (c: Buffer) => chunks.push(c));
1515
+ res.on('end', () => resolve(Buffer.concat(chunks).toString('utf-8')));
1516
+ });
1517
+ req.on('error', reject);
1518
+ req.on('timeout', () => { req.destroy(); reject(new Error(`download timeout for ${type}`)); });
1519
+ });
1520
+
1521
+ // Verify checksum
1522
+ const actualChecksum = await new Promise<string>((resolve) => {
1523
+ const crypto = require('crypto') as typeof import('crypto');
1524
+ resolve(crypto.createHash('sha256').update(manifestBody, 'utf-8').digest('hex'));
1525
+ });
1526
+ if (actualChecksum !== checksum) {
1527
+ this.log(`⚠ Registry checksum mismatch for ${type}@${version} — skipping`);
1528
+ continue;
1529
+ }
1530
+
1531
+ // Write to upstream dir
1532
+ const providerDir = path.join(this.upstreamDir, category, type);
1533
+ fs.mkdirSync(providerDir, { recursive: true });
1534
+ fs.writeFileSync(path.join(providerDir, 'provider.json'), manifestBody, 'utf-8');
1535
+
1536
+ cachedChecksums[cacheKey] = checksum;
1537
+ updatedCount++;
1538
+ this.log(`✓ Registry updated: ${category}/${type}@${version}`);
1539
+ }
1540
+
1541
+ // Persist updated checksums
1542
+ fs.mkdirSync(this.upstreamDir, { recursive: true });
1543
+ fs.writeFileSync(regMetaPath, JSON.stringify({
1544
+ checksums: cachedChecksums,
1545
+ syncedAt: new Date().toISOString(),
1546
+ providerCount: list.providers.length,
1547
+ }, null, 2));
1548
+
1549
+ this.log(`Registry sync complete: ${list.providers.length} providers, ${updatedCount} updated`);
1550
+ return { updated: updatedCount > 0 };
1551
+ } catch (e: any) {
1552
+ this.log(`⚠ Registry sync failed (falling back to GitHub tarball): ${e?.message}`);
1553
+ return { updated: false, error: e?.message };
1554
+ }
1555
+ }
1556
+
1127
1557
  async fetchLatest(): Promise<{ updated: boolean; error?: string }> {
1128
1558
  if (this.disableUpstream) {
1129
1559
  this.log('Upstream fetch skipped (sourceMode=no-upstream)');
1130
1560
  return { updated: false };
1131
1561
  }
1132
1562
  const https = require('https') as typeof import('https');
1133
- const { execSync } = require('child_process') as typeof import('child_process');
1563
+ const { exec } = require('child_process') as typeof import('child_process');
1564
+ const { promisify } = require('util');
1565
+ const execAsync = promisify(exec);
1134
1566
 
1135
1567
  const metaPath = path.join(this.upstreamDir, ProviderLoader.META_FILE);
1136
1568
  let prevEtag = '';
@@ -1207,7 +1639,7 @@ export class ProviderLoader {
1207
1639
 
1208
1640
  // Extract
1209
1641
  fs.mkdirSync(tmpExtract, { recursive: true });
1210
- execSync(`tar -xzf "${tmpTar}" -C "${tmpExtract}"`, { timeout: 30000 });
1642
+ await execAsync(`tar -xzf "${tmpTar}" -C "${tmpExtract}"`, { timeout: 30000 });
1211
1643
 
1212
1644
  // Tarball internal structure: adhdev-providers-main/ide/... → strip 1 level
1213
1645
  const extracted = fs.readdirSync(tmpExtract);
@@ -1315,15 +1747,17 @@ export class ProviderLoader {
1315
1747
  } catch { }
1316
1748
  }
1317
1749
 
1318
- /** Count provider files (provider.js or provider.json) */
1750
+ /** Count provider files (provider.v1.json or provider.json — at most one per dir). */
1319
1751
  private countProviders(dir: string): number {
1320
1752
  if (!fs.existsSync(dir)) return 0;
1321
1753
  let count = 0;
1322
1754
  const scan = (d: string) => {
1323
1755
  try {
1324
- for (const entry of fs.readdirSync(d, { withFileTypes: true })) {
1756
+ const entries = fs.readdirSync(d, { withFileTypes: true });
1757
+ const hasManifest = entries.some(e => e.name === 'provider.v1.json' || e.name === 'provider.json');
1758
+ if (hasManifest) count++;
1759
+ for (const entry of entries) {
1325
1760
  if (entry.isDirectory()) scan(path.join(d, entry.name));
1326
- else if (entry.name === 'provider.json') count++;
1327
1761
  }
1328
1762
  } catch { }
1329
1763
  };
@@ -1372,11 +1806,15 @@ export class ProviderLoader {
1372
1806
  return args ? args.map((arg) => /\s/.test(arg) ? JSON.stringify(arg) : arg).join(' ') : '';
1373
1807
  }
1374
1808
  const schemaDef = this.getSettingsSchema(providerType)[key];
1375
- const defaultVal = schemaDef
1376
- ? (key === 'autoApprove' && schemaDef.type === 'boolean'
1377
- ? true
1378
- : schemaDef.default)
1379
- : undefined;
1809
+ // (fix) Previously this hard-coded `autoApprove` boolean default to `true`,
1810
+ // overriding whatever schemaDef.default the provider.json declared. That
1811
+ // surfaced as soon as a provider added an `autoApprove` schema entry with
1812
+ // default=false: the user had never opted in but the daemon treated the
1813
+ // session as auto-approve, which then triggered recordAutoApproval every
1814
+ // time the CLI showed an approval modal — producing a flood of system
1815
+ // "Auto-approved: ..." messages and keeping the session pinned to
1816
+ // generating while modals cycled in and out. Trust the schemaDef.default.
1817
+ const defaultVal = schemaDef ? schemaDef.default : undefined;
1380
1818
 
1381
1819
  const config = this.readConfig();
1382
1820
  const userVal = config?.providerSettings?.[providerType]?.[key];
@@ -1490,10 +1928,17 @@ export class ProviderLoader {
1490
1928
  ...this.getSyntheticSettings(type, provider),
1491
1929
  ...(provider.settings || {}),
1492
1930
  };
1931
+ // (fix) Previously this clause forced `autoApprove.default = true` for any
1932
+ // boolean autoApprove schema, even when the provider.json explicitly set
1933
+ // `default: false`. Combined with the synthetic-settings fallback at
1934
+ // getSyntheticSettings (which also defaults autoApprove to true when the
1935
+ // provider doesn't supply one), that meant CLI providers silently turned on
1936
+ // auto-approval, producing a flood of "Auto-approved: ..." system messages
1937
+ // every time an approval modal appeared and pinning the session to
1938
+ // generating while modals cycled. Trust the provider's declared default.
1493
1939
  if (result.autoApprove?.type === 'boolean') {
1494
1940
  result.autoApprove = {
1495
1941
  ...result.autoApprove,
1496
- default: true,
1497
1942
  public: true,
1498
1943
  label: result.autoApprove.label || 'Auto Approve',
1499
1944
  description: result.autoApprove.description || 'Automatically approve actionable prompts without sending approval alerts.',
@@ -1518,7 +1963,10 @@ export class ProviderLoader {
1518
1963
  if (!provider.settings?.autoApprove) {
1519
1964
  result.autoApprove = {
1520
1965
  type: 'boolean',
1521
- default: true,
1966
+ // (fix) Safe default is *off*. Auto-approving every modal without the
1967
+ // user opting in produced silent-bash-execution surprises and the
1968
+ // "Auto-approved: ..." system-message flood seen on AGY/Codex.
1969
+ default: false,
1522
1970
  public: true,
1523
1971
  label: 'Auto Approve',
1524
1972
  description: 'Automatically approve actionable prompts without sending approval alerts.',
@@ -1581,23 +2029,32 @@ export class ProviderLoader {
1581
2029
  const cat = provider.category;
1582
2030
 
1583
2031
  const searchRoots = this.getProviderRoots();
2032
+ const hasManifest = (dir: string) =>
2033
+ fs.existsSync(path.join(dir, 'provider.v1.json')) || fs.existsSync(path.join(dir, 'provider.json'));
2034
+ const readManifestType = (dir: string): string | null => {
2035
+ for (const file of ['provider.v1.json', 'provider.json']) {
2036
+ const p = path.join(dir, file);
2037
+ if (!fs.existsSync(p)) continue;
2038
+ try {
2039
+ const data = JSON.parse(fs.readFileSync(p, 'utf-8'));
2040
+ if (typeof data?.type === 'string') return data.type;
2041
+ } catch { /* skip */ }
2042
+ }
2043
+ return null;
2044
+ };
1584
2045
  for (const root of searchRoots) {
1585
2046
  if (!fs.existsSync(root)) continue;
1586
2047
  const candidate = this.getProviderDir(root, cat, type);
1587
- if (fs.existsSync(path.join(candidate, 'provider.json'))) return candidate;
2048
+ if (hasManifest(candidate)) return candidate;
1588
2049
  // Scan category dir for type match
1589
2050
  const catDir = path.join(root, cat);
1590
2051
  if (fs.existsSync(catDir)) {
1591
2052
  try {
1592
2053
  for (const entry of fs.readdirSync(catDir, { withFileTypes: true })) {
1593
2054
  if (!entry.isDirectory()) continue;
1594
- const jsonPath = path.join(catDir, entry.name, 'provider.json');
1595
- if (fs.existsSync(jsonPath)) {
1596
- try {
1597
- const data = JSON.parse(fs.readFileSync(jsonPath, 'utf-8'));
1598
- if (data.type === type) return path.join(catDir, entry.name);
1599
- } catch { /* skip */ }
1600
- }
2055
+ const entryDir = path.join(catDir, entry.name);
2056
+ const manifestType = readManifestType(entryDir);
2057
+ if (manifestType === type) return entryDir;
1601
2058
  }
1602
2059
  } catch { /* skip */ }
1603
2060
  }
@@ -1690,17 +2147,44 @@ export class ProviderLoader {
1690
2147
  return;
1691
2148
  }
1692
2149
 
1693
- // Check if this directory has provider.json
2150
+ // v1-first manifest selection. provider.v1.json (the SDK-shape
2151
+ // manifest with `overrides`, `tui`, `source`, `canonicalHistory`)
2152
+ // wins over provider.json (legacy). Without this branch the v1
2153
+ // file is silently ignored — that's how the codex-cli `overrides`
2154
+ // path and the tui-block builders went un-honored for the first
2155
+ // pass of SDK rollout.
2156
+ const hasV1 = entries.some(e => e.name === 'provider.v1.json');
1694
2157
  const hasJson = entries.some(e => e.name === 'provider.json');
1695
2158
 
1696
- if (hasJson) {
1697
- const jsonPath = path.join(d, 'provider.json');
2159
+ if (hasV1 || hasJson) {
2160
+ const manifestFile = hasV1 ? 'provider.v1.json' : 'provider.json';
2161
+ const jsonPath = path.join(d, manifestFile);
1698
2162
  try {
1699
2163
  const raw = fs.readFileSync(jsonPath, 'utf-8');
1700
2164
  const mod = JSON.parse(raw) as Omit<ProviderModule, 'extensionIdPattern'> & {
1701
2165
  extensionIdPattern?: RegExp | string;
1702
2166
  };
1703
2167
 
2168
+ // Validate v1 manifests against the SDK schema. Failures are
2169
+ // surfaced as a single warning line with all issues attached
2170
+ // so manifest authors don't need to guess which field is wrong.
2171
+ // Loading still proceeds — bricking the daemon on a single
2172
+ // bad field would be worse than running with a known warning.
2173
+ if (hasV1 && mod?.category === 'cli') {
2174
+ try {
2175
+ const { validateCliProviderManifest, formatManifestValidationIssues } =
2176
+ require('./sdk/v1/validators/manifest.js') as typeof import('./sdk/v1/validators/manifest.js');
2177
+ const validation = validateCliProviderManifest(mod);
2178
+ if (!validation.ok) {
2179
+ this.log(`⚠ ${jsonPath}: schema validation failed:\n${formatManifestValidationIssues(validation.issues)}`);
2180
+ }
2181
+ } catch (e: any) {
2182
+ // Validator load failed — log once and continue so a
2183
+ // broken validator can't take down provider loading.
2184
+ this.log(`⚠ ${jsonPath}: validator unavailable: ${e?.message || e}`);
2185
+ }
2186
+ }
2187
+
1704
2188
  // Restore RegExp fields from JSON (extensionIdPattern)
1705
2189
  if (typeof mod.extensionIdPattern === 'string') {
1706
2190
  const flags = mod.extensionIdPattern_flags || '';
@@ -1712,6 +2196,22 @@ export class ProviderLoader {
1712
2196
  ...(extensionIdPattern instanceof RegExp ? { extensionIdPattern } : {}),
1713
2197
  };
1714
2198
 
2199
+ // v1 manifests use `nativeHistory` as the canonical field name.
2200
+ // Legacy v0 manifests use `canonicalHistory`. The daemon's
2201
+ // runtime + downstream code reads `provider.nativeHistory`, so
2202
+ // for legacy manifests we copy `canonicalHistory` into
2203
+ // `nativeHistory` here. We also keep `canonicalHistory`
2204
+ // populated in both directions (deprecated alias) so any
2205
+ // external consumers still reading the old name keep working
2206
+ // during the one-release deprecation window.
2207
+ const nh = (normalizedProvider as any).nativeHistory;
2208
+ const ch = (normalizedProvider as any).canonicalHistory;
2209
+ if (nh && !ch) {
2210
+ (normalizedProvider as any).canonicalHistory = nh;
2211
+ } else if (ch && !nh) {
2212
+ (normalizedProvider as any).nativeHistory = ch;
2213
+ }
2214
+
1715
2215
  const validation = validateProviderDefinition(normalizedProvider);
1716
2216
  for (const warning of validation.warnings) {
1717
2217
  this.log(`⚠ ${jsonPath}: ${warning}`);
@@ -1725,6 +2225,10 @@ export class ProviderLoader {
1725
2225
  const scriptsPath = path.join(d, 'scripts.js');
1726
2226
  if (!hasCompatibility && fs.existsSync(scriptsPath)) {
1727
2227
  try {
2228
+ // Gate the IDE/extension scripts.js (legacy single-file
2229
+ // format) under the same whitelist. `d` here is the
2230
+ // provider dir; its grandparent contains _shared.
2231
+ registerProviderScriptRootSafely(path.dirname(path.dirname(d)));
1728
2232
  delete require.cache[require.resolve(scriptsPath)];
1729
2233
  const scripts = require(scriptsPath) as Partial<ProviderScripts>;
1730
2234
  normalizedProvider.scripts = scripts;
@@ -1733,14 +2237,40 @@ export class ProviderLoader {
1733
2237
  }
1734
2238
  }
1735
2239
 
2240
+ // Classify trust based on which on-disk layer this manifest
2241
+ // came from + whether it ships JavaScript hooks. The dashboard
2242
+ // uses this to render trust badges; non-spec external manifests
2243
+ // need an explicit user confirm before activation.
2244
+ const externalDirAbs = path.join(os.homedir(), '.adhdev', 'external');
2245
+ const layer: 'user' | 'upstream' | 'external' = d.startsWith(externalDirAbs)
2246
+ ? 'external'
2247
+ : (d.startsWith(this.userDir) && !d.includes('.upstream') ? 'user' : 'upstream');
2248
+ try {
2249
+ const { inspectManifestShape, classifyTrust } =
2250
+ require('./provider-trust.js') as typeof import('./provider-trust.js');
2251
+ const shape = inspectManifestShape(mod as Record<string, unknown>);
2252
+ const trust = classifyTrust(layer, shape);
2253
+ (normalizedProvider as any)._sourceLayer = layer;
2254
+ (normalizedProvider as any)._sourceTrust = trust;
2255
+ (normalizedProvider as any)._manifestShape = shape;
2256
+ // For external-namespaced layouts (external/<source>/…) record
2257
+ // which source the manifest came from so dashboards can name
2258
+ // it in the trust badge.
2259
+ if (layer === 'external') {
2260
+ const rel = path.relative(externalDirAbs, d);
2261
+ const firstSeg = rel.split(path.sep)[0];
2262
+ if (firstSeg && firstSeg !== '..') (normalizedProvider as any)._sourceName = firstSeg;
2263
+ }
2264
+ } catch { /* best-effort — trust is enrichment, not gating */ }
2265
+
1736
2266
  const existed = this.providers.has(normalizedProvider.type);
1737
2267
  this.providers.set(normalizedProvider.type, normalizedProvider);
1738
2268
  count++;
1739
- // Identify source tier for debugging
1740
- const source = d.startsWith(this.userDir) && !d.includes('.upstream')
1741
- ? 'user' : 'upstream';
2269
+ const source = (normalizedProvider as any)._sourceLayer ?? 'upstream';
1742
2270
  const overrideWarning = existed && source === 'user' ? ' ⚠ OVERRIDES upstream' : '';
1743
- this.log(` ${existed ? '🔄' : '✅'} ${normalizedProvider.type} (${normalizedProvider.category}) ${normalizedProvider.name} [${source}]${overrideWarning}`);
2271
+ const sourceName = (normalizedProvider as any)._sourceName;
2272
+ const sourceLabel = sourceName ? `${source}/${sourceName}` : source;
2273
+ this.log(` ${existed ? '🔄' : '✅'} ${normalizedProvider.type} (${normalizedProvider.category}) — ${normalizedProvider.name} [${sourceLabel}]${overrideWarning}`);
1744
2274
  }
1745
2275
  } catch (e) {
1746
2276
  this.log(`⚠ Failed to load ${jsonPath}: ${(e as Error).message}`);
@@ -1752,6 +2282,11 @@ export class ProviderLoader {
1752
2282
  for (const entry of entries) {
1753
2283
  if (!entry.isDirectory()) continue;
1754
2284
  if (entry.name.startsWith('_') || entry.name.startsWith('.')) continue;
2285
+ // `examples/` is a documentation / scaffold tree (e.g. stub-cli),
2286
+ // not a real provider source. SDK authors copy from here when
2287
+ // writing a new provider; daemon-core tests reference the
2288
+ // manifest by path. Keep it off the dashboard's provider list.
2289
+ if (d === dir && entry.name === 'examples') continue;
1755
2290
  if (excludeDirs && d === dir && excludeDirs.includes(entry.name)) continue;
1756
2291
  scan(path.join(d, entry.name));
1757
2292
  }