@adhdev/daemon-core 0.8.27 → 0.8.28

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.
@@ -327,8 +327,9 @@ export class AcpProviderInstance implements ProviderInstance {
327
327
  // Find configId for this category
328
328
  const opt = this.configOptions.find(c => c.category === category);
329
329
  if (!opt) {
330
- this.log.warn(`[${this.type}] No config option for category: ${category}`);
331
- return;
330
+ const message = `[${this.type}] No config option for category: ${category}`;
331
+ this.log.warn(message);
332
+ throw new Error(message);
332
333
  }
333
334
 
334
335
  // Static config mode: update selection and restart process
@@ -343,8 +344,9 @@ export class AcpProviderInstance implements ProviderInstance {
343
344
  }
344
345
 
345
346
  if (!this.connection || !this.sessionId) {
346
- this.log.warn(`[${this.type}] Cannot set config: no active connection/session`);
347
- return;
347
+ const message = `[${this.type}] Cannot set config: no active connection/session`;
348
+ this.log.warn(message);
349
+ throw new Error(message);
348
350
  }
349
351
 
350
352
  try {
@@ -361,7 +363,9 @@ export class AcpProviderInstance implements ProviderInstance {
361
363
  if (result?.configOptions) this.parseConfigOptions(result.configOptions);
362
364
  this.log.info(`[${this.type}] Config ${category} set to: ${value} | response: ${JSON.stringify(result)?.slice(0, 300)}`);
363
365
  } catch (e: any) {
364
- this.log.warn(`[${this.type}] set_config_option failed: ${e?.message}`);
366
+ const message = e?.message || 'Unknown ACP config error';
367
+ this.log.warn(`[${this.type}] set_config_option failed: ${message}`);
368
+ throw new Error(message);
365
369
  }
366
370
  }
367
371
 
@@ -380,8 +384,9 @@ export class AcpProviderInstance implements ProviderInstance {
380
384
  }
381
385
 
382
386
  if (!this.connection || !this.sessionId) {
383
- this.log.warn(`[${this.type}] Cannot set mode: no active connection/session`);
384
- return;
387
+ const message = `[${this.type}] Cannot set mode: no active connection/session`;
388
+ this.log.warn(message);
389
+ throw new Error(message);
385
390
  }
386
391
 
387
392
  try {
@@ -392,7 +397,9 @@ export class AcpProviderInstance implements ProviderInstance {
392
397
  this.currentMode = modeId;
393
398
  this.log.info(`[${this.type}] Mode set to: ${modeId}`);
394
399
  } catch (e: any) {
395
- this.log.warn(`[${this.type}] set_mode failed: ${e?.message}`);
400
+ const message = e?.message || 'Unknown ACP mode error';
401
+ this.log.warn(`[${this.type}] set_mode failed: ${message}`);
402
+ throw new Error(message);
396
403
  }
397
404
  }
398
405
 
@@ -447,7 +454,9 @@ export class AcpProviderInstance implements ProviderInstance {
447
454
  throw new Error(`[ACP:${this.type}] No spawn config defined`);
448
455
  }
449
456
 
450
- const command = spawnConfig.command;
457
+ const command = typeof this.settings.executablePath === 'string' && this.settings.executablePath.trim()
458
+ ? this.settings.executablePath.trim()
459
+ : spawnConfig.command;
451
460
  // Static config: create args via spawnArgBuilder (when provider defines it)
452
461
  let baseArgs = spawnConfig.args || [];
453
462
  if (this.provider.spawnArgBuilder && Object.keys(this.selectedConfig).length > 0) {
@@ -822,7 +831,7 @@ export class AcpProviderInstance implements ProviderInstance {
822
831
 
823
832
  private permissionResolvers: ((approved: boolean) => void)[] = [];
824
833
 
825
- private async resolvePermission(approved: boolean): Promise<void> {
834
+ async resolvePermission(approved: boolean): Promise<void> {
826
835
  const resolver = this.permissionResolvers.shift();
827
836
  if (resolver) {
828
837
  resolver(approved);
@@ -24,12 +24,19 @@ import type {
24
24
  ProviderModule,
25
25
  ProviderCategory,
26
26
  ProviderScripts,
27
+ ProviderSettingDef,
27
28
  ProviderSettingSchema,
28
29
  ResolvedProvider,
29
30
  } from './contracts.js';
30
31
 
32
+ interface ProviderAvailabilityState {
33
+ installed: boolean;
34
+ detectedPath: string | null;
35
+ }
36
+
31
37
  export class ProviderLoader {
32
38
  private providers = new Map<string, ProviderModule>();
39
+ private providerAvailability = new Map<string, ProviderAvailabilityState>();
33
40
  private userDir: string;
34
41
  private upstreamDir: string;
35
42
  private disableUpstream: boolean;
@@ -152,6 +159,7 @@ export class ProviderLoader {
152
159
  */
153
160
  loadAll(): void {
154
161
  this.providers.clear();
162
+ this.providerAvailability.clear();
155
163
 
156
164
  // 1. Load upstream (GitHub auto-download — primary source)
157
165
  let upstreamCount = 0;
@@ -236,11 +244,12 @@ export class ProviderLoader {
236
244
  const versionCommand = typeof verCmdConfig === 'object' && verCmdConfig !== null
237
245
  ? verCmdConfig[process.platform]
238
246
  : verCmdConfig;
247
+ const command = this.getSpawnCommand(p.type, p.spawn.command);
239
248
  result.push({
240
249
  id: p.type,
241
250
  displayName: p.displayName || p.name,
242
251
  icon: p.icon || '🔧',
243
- command: p.spawn.command,
252
+ command,
244
253
  category: p.category,
245
254
  ...(typeof versionCommand === 'string' && versionCommand.trim()
246
255
  ? { versionCommand: versionCommand.trim() }
@@ -386,6 +395,80 @@ export class ProviderLoader {
386
395
  .map(p => p.type);
387
396
  }
388
397
 
398
+ getSpawnCommand(type: string, fallback?: string): string {
399
+ const override = this.getOptionalStringSetting(type, 'executablePath');
400
+ if (override) return override;
401
+ return fallback || this.providers.get(type)?.spawn?.command || type;
402
+ }
403
+
404
+ getIdeCliCommand(type: string, fallback?: string | null): string | null {
405
+ const override = this.getOptionalStringSetting(type, 'cliPathOverride');
406
+ if (override) return override;
407
+ return fallback || this.providers.get(type)?.cli || null;
408
+ }
409
+
410
+ getIdePathCandidates(type: string, fallback?: string[]): string[] {
411
+ const override = this.getOptionalStringSetting(type, 'appPathOverride');
412
+ if (override) return [override];
413
+ if (fallback && fallback.length > 0) return fallback;
414
+ const osPaths = this.providers.get(type)?.paths?.[process.platform];
415
+ return Array.isArray(osPaths) ? [...osPaths] : [];
416
+ }
417
+
418
+ setProviderAvailability(type: string, state: { installed: boolean; detectedPath?: string | null }): void {
419
+ this.providerAvailability.set(type, {
420
+ installed: !!state.installed,
421
+ detectedPath: state.detectedPath ?? null,
422
+ });
423
+ }
424
+
425
+ setCliDetectionResults(results: Array<{ id: string; installed: boolean; path?: string }>, replace: boolean = true): void {
426
+ if (replace) {
427
+ for (const provider of this.providers.values()) {
428
+ if (provider.category === 'cli' || provider.category === 'acp') {
429
+ this.providerAvailability.set(provider.type, { installed: false, detectedPath: null });
430
+ }
431
+ }
432
+ }
433
+ for (const result of results) {
434
+ this.setProviderAvailability(result.id, {
435
+ installed: !!result.installed,
436
+ detectedPath: result.path || null,
437
+ });
438
+ }
439
+ }
440
+
441
+ setIdeDetectionResults(results: Array<{ id: string; installed: boolean; path?: string | null; cliCommand?: string | null }>, replace: boolean = true): void {
442
+ if (replace) {
443
+ for (const provider of this.providers.values()) {
444
+ if (provider.category === 'ide') {
445
+ this.providerAvailability.set(provider.type, { installed: false, detectedPath: null });
446
+ }
447
+ }
448
+ }
449
+ for (const result of results) {
450
+ this.setProviderAvailability(result.id, {
451
+ installed: !!result.installed,
452
+ detectedPath: result.cliCommand || result.path || null,
453
+ });
454
+ }
455
+ }
456
+
457
+ getAvailableProviderInfos(): Array<ProviderModule & { installed?: boolean; detectedPath?: string | null }> {
458
+ return this.getAll().map((provider) => {
459
+ const availability = this.providerAvailability.get(provider.type);
460
+ return {
461
+ ...provider,
462
+ ...(availability
463
+ ? {
464
+ installed: availability.installed,
465
+ detectedPath: availability.detectedPath,
466
+ }
467
+ : {}),
468
+ };
469
+ });
470
+ }
471
+
389
472
  /**
390
473
  * Register IDE providers to core/detector registry
391
474
  * → Enables detectIDEs() to detect provider.js-based IDEs
@@ -888,9 +971,8 @@ export class ProviderLoader {
888
971
  * Get public settings schema for a provider (for dashboard UI rendering)
889
972
  */
890
973
  getPublicSettings(type: string): ProviderSettingSchema[] {
891
- const provider = this.providers.get(type);
892
- if (!provider?.settings) return [];
893
- return Object.entries(provider.settings)
974
+ const settings = this.getSettingsSchema(type);
975
+ return Object.entries(settings)
894
976
  .filter(([, def]) => (def as any).public === true)
895
977
  .map(([key, def]) => ({ key, ...(def as any) }));
896
978
  }
@@ -911,8 +993,7 @@ export class ProviderLoader {
911
993
  * Resolved setting value for a provider (default + user override)
912
994
  */
913
995
  getSettingValue(type: string, key: string): any {
914
- const provider = this.providers.get(type);
915
- const schemaDef = provider?.settings?.[key];
996
+ const schemaDef = this.getSettingsSchema(type)[key];
916
997
  const defaultVal = schemaDef ? (schemaDef as any).default : undefined;
917
998
 
918
999
  // Load user-saved value
@@ -930,10 +1011,9 @@ export class ProviderLoader {
930
1011
  * All resolved settings for a provider (default + user override)
931
1012
  */
932
1013
  getSettings(type: string): Record<string, any> {
933
- const provider = this.providers.get(type);
934
- if (!provider?.settings) return {};
1014
+ const settings = this.getSettingsSchema(type);
935
1015
  const result: Record<string, any> = {};
936
- for (const [key, def] of Object.entries(provider.settings)) {
1016
+ for (const [key] of Object.entries(settings)) {
937
1017
  result[key] = this.getSettingValue(type, key);
938
1018
  }
939
1019
  return result;
@@ -943,8 +1023,7 @@ export class ProviderLoader {
943
1023
  * Save provider setting value (writes to config.json)
944
1024
  */
945
1025
  setSetting(type: string, key: string, value: any): boolean {
946
- const provider = this.providers.get(type);
947
- const schemaDef = provider?.settings?.[key] as any;
1026
+ const schemaDef = this.getSettingsSchema(type)[key] as any;
948
1027
  if (!schemaDef) return false;
949
1028
 
950
1029
  // Non-public settings cannot be modified externally
@@ -952,6 +1031,7 @@ export class ProviderLoader {
952
1031
 
953
1032
  // Type validation
954
1033
  if (schemaDef.type === 'boolean' && typeof value !== 'boolean') return false;
1034
+ if (schemaDef.type === 'string' && typeof value !== 'string') return false;
955
1035
  if (schemaDef.type === 'number') {
956
1036
  if (typeof value !== 'number') return false;
957
1037
  if (schemaDef.min !== undefined && value < schemaDef.min) return false;
@@ -974,6 +1054,59 @@ export class ProviderLoader {
974
1054
  }
975
1055
  }
976
1056
 
1057
+ private getOptionalStringSetting(type: string, key: string): string | null {
1058
+ const value = this.getSettingValue(type, key);
1059
+ if (typeof value !== 'string') return null;
1060
+ const trimmed = value.trim();
1061
+ return trimmed ? trimmed : null;
1062
+ }
1063
+
1064
+ private getSettingsSchema(type: string): Record<string, ProviderSettingDef> {
1065
+ const provider = this.providers.get(type);
1066
+ if (!provider) return {};
1067
+ return {
1068
+ ...this.getSyntheticSettings(type, provider),
1069
+ ...(provider.settings || {}),
1070
+ };
1071
+ }
1072
+
1073
+ private getSyntheticSettings(type: string, provider: ProviderModule): Record<string, ProviderSettingDef> {
1074
+ const result: Record<string, ProviderSettingDef> = {};
1075
+
1076
+ if ((provider.category === 'cli' || provider.category === 'acp') && provider.spawn?.command && !provider.settings?.executablePath) {
1077
+ result.executablePath = {
1078
+ type: 'string',
1079
+ default: '',
1080
+ public: true,
1081
+ label: 'Executable path',
1082
+ description: 'Optional absolute path for this provider binary. Leave blank to use the default PATH lookup.',
1083
+ };
1084
+ }
1085
+
1086
+ if (provider.category === 'ide') {
1087
+ if (provider.cli && !provider.settings?.cliPathOverride) {
1088
+ result.cliPathOverride = {
1089
+ type: 'string',
1090
+ default: '',
1091
+ public: true,
1092
+ label: 'CLI path override',
1093
+ description: 'Optional absolute path for the IDE CLI launcher. Leave blank to use the detected default.',
1094
+ };
1095
+ }
1096
+ if (provider.paths && !provider.settings?.appPathOverride) {
1097
+ result.appPathOverride = {
1098
+ type: 'string',
1099
+ default: '',
1100
+ public: true,
1101
+ label: 'App path override',
1102
+ description: 'Optional absolute path for the IDE app bundle or executable. Leave blank to use the default install locations.',
1103
+ };
1104
+ }
1105
+ }
1106
+
1107
+ return result;
1108
+ }
1109
+
977
1110
  // ─── Private ───────────────────────────────────
978
1111
 
979
1112
  /**
@@ -136,6 +136,8 @@ export interface AvailableProviderInfo {
136
136
  category: 'ide' | 'extension' | 'cli' | 'acp';
137
137
  displayName: string;
138
138
  icon: string;
139
+ installed?: boolean;
140
+ detectedPath?: string | null;
139
141
  }
140
142
 
141
143
  /** ACP config option (model/mode/thought_level selection) */
@@ -35,6 +35,14 @@ export interface StatusSnapshotOptions {
35
35
  displayName?: string;
36
36
  category: 'ide' | 'extension' | 'cli' | 'acp';
37
37
  }>;
38
+ getAvailableProviderInfos?: () => Array<{
39
+ type: string;
40
+ icon?: string;
41
+ displayName?: string;
42
+ category: 'ide' | 'extension' | 'cli' | 'acp';
43
+ installed?: boolean;
44
+ detectedPath?: string | null;
45
+ }>;
38
46
  };
39
47
  detectedIdes: Array<{
40
48
  id: string;
@@ -75,12 +83,22 @@ function buildDetectedIdeInfos(
75
83
  function buildAvailableProviders(
76
84
  providerLoader: StatusSnapshotOptions['providerLoader'],
77
85
  ): AvailableProviderInfo[] {
78
- return providerLoader.getAll().map((provider) => ({
86
+ const providers: Array<{
87
+ type: string;
88
+ icon?: string;
89
+ displayName?: string;
90
+ category: 'ide' | 'extension' | 'cli' | 'acp';
91
+ installed?: boolean;
92
+ detectedPath?: string | null;
93
+ }> = providerLoader.getAvailableProviderInfos?.() || providerLoader.getAll();
94
+ return providers.map((provider) => ({
79
95
  type: provider.type,
80
96
  name: provider.displayName || provider.type,
81
97
  displayName: provider.displayName || provider.type,
82
98
  icon: provider.icon || '💻',
83
99
  category: provider.category,
100
+ ...(provider.installed !== undefined ? { installed: provider.installed } : {}),
101
+ ...(provider.detectedPath !== undefined ? { detectedPath: provider.detectedPath } : {}),
84
102
  }));
85
103
  }
86
104