@adhdev/daemon-core 0.6.50 → 0.6.51

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-core",
3
- "version": "0.6.50",
3
+ "version": "0.6.51",
4
4
  "description": "ADHDev daemon core — CDP, IDE detection, providers, command execution",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,8 +13,8 @@
13
13
  "type": "select",
14
14
  "default": "terminal",
15
15
  "public": true,
16
- "label": "표시 모드",
17
- "description": "terminal: PTY 터미널 뷰, chat: 파싱된 대화 ",
16
+ "label": "Display Mode",
17
+ "description": "terminal: Native PTY view, chat: Parsed message view",
18
18
  "options": [
19
19
  "terminal",
20
20
  "chat"
@@ -24,15 +24,15 @@
24
24
  "type": "boolean",
25
25
  "default": true,
26
26
  "public": true,
27
- "label": "알림",
28
- "description": "상태 변경 알림을 표시합니다"
27
+ "label": "Notifications",
28
+ "description": "Display notifications on state changes"
29
29
  },
30
30
  "autoApprove": {
31
31
  "type": "boolean",
32
32
  "default": false,
33
33
  "public": true,
34
- "label": "자동 승인",
35
- "description": "도구 실행 승인을 자동으로 허용합니다"
34
+ "label": "Auto Approve",
35
+ "description": "Automatically approve tool execution without prompt"
36
36
  },
37
37
  "approvalAlert": {
38
38
  "type": "boolean",
@@ -12,7 +12,8 @@
12
12
  "type": "select",
13
13
  "default": "terminal",
14
14
  "public": true,
15
- "label": "표시 모드",
15
+ "label": "Display Mode",
16
+ "description": "terminal: Native PTY view, chat: Parsed message view",
16
17
  "options": [
17
18
  "terminal",
18
19
  "chat"
@@ -22,7 +23,8 @@
22
23
  "type": "boolean",
23
24
  "default": true,
24
25
  "public": true,
25
- "label": "알림"
26
+ "label": "Notifications",
27
+ "description": "Display notifications on state changes"
26
28
  },
27
29
  "autoApprove": {
28
30
  "type": "boolean",
@@ -12,7 +12,8 @@
12
12
  "type": "select",
13
13
  "default": "terminal",
14
14
  "public": true,
15
- "label": "표시 모드",
15
+ "label": "Display Mode",
16
+ "description": "terminal: Native PTY view, chat: Parsed message view",
16
17
  "options": [
17
18
  "terminal",
18
19
  "chat"
@@ -22,7 +23,8 @@
22
23
  "type": "boolean",
23
24
  "default": true,
24
25
  "public": true,
25
- "label": "알림"
26
+ "label": "Notifications",
27
+ "description": "Display notifications on state changes"
26
28
  },
27
29
  "autoApprove": {
28
30
  "type": "boolean",
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2026.03.27",
2
+ "version": "2026.03.28",
3
3
  "providers": {
4
4
  "agentpool-acp": {
5
5
  "providerVersion": "0.0.0",
@@ -10,7 +10,7 @@
10
10
  * category: 'cli'
11
11
  * binary: string — binary name
12
12
  * spawn: { command, args, shell, env }
13
- * patterns: { prompt, generating, approval, ready }
13
+ * patterns: { prompt, generating, approval, ready } — prompt helps end startup splash-gate early; sendMessage does not wait for it
14
14
  * timeouts?: { idleFinish, generatingIdle, maxResponse, approvalCooldown, outputSettle, ... }
15
15
  * cleanOutput(raw, lastUserInput): string
16
16
  */
@@ -253,6 +253,9 @@ export class ProviderCliAdapter implements CliAdapter {
253
253
  private idleTimeout: NodeJS.Timeout | null = null;
254
254
  private ready = false;
255
255
  private startupBuffer = '';
256
+ /** After spawn: briefly skip generating/settle so splash/redraw does not flip status; not used to gate sendMessage */
257
+ private startupParseGate = false;
258
+ private spawnAt = 0;
256
259
 
257
260
  // PTY I/O
258
261
  private onPtyDataCallback: ((data: string) => void) | null = null;
@@ -421,10 +424,16 @@ export class ProviderCliAdapter implements CliAdapter {
421
424
  this.ptyProcess = null;
422
425
  this.setStatus('stopped', 'pty_exit');
423
426
  this.ready = false;
427
+ this.startupParseGate = false;
428
+ this.spawnAt = 0;
424
429
  this.onStatusChange?.();
425
430
  });
426
431
 
427
- this.setStatus('starting', 'spawn');
432
+ this.spawnAt = Date.now();
433
+ this.startupParseGate = true;
434
+ this.startupBuffer = '';
435
+ this.ready = true;
436
+ this.setStatus('idle', 'pty_ready');
428
437
  this.onStatusChange?.();
429
438
  }
430
439
 
@@ -449,12 +458,11 @@ export class ProviderCliAdapter implements CliAdapter {
449
458
  // Rolling buffer (recent 1000 chars)
450
459
  this.recentOutputBuffer = (this.recentOutputBuffer + cleanData).slice(-1000);
451
460
 
452
- // ─── Phase 1: Startup ready status wait
453
- if (!this.ready) {
461
+ // ─── Startup window: first-run dialogs + avoid false generating during splash (sendMessage is not gated on prompt text)
462
+ if (this.startupParseGate) {
454
463
  this.startupBuffer += cleanData;
455
464
  LOG.info('CLI', `[${this.cliType}] startup chunk (${cleanData.length} chars): ${cleanData.slice(0, 200).replace(/\n/g, '\\n')}`);
456
465
 
457
- // Startup dialog auto-proceed (Enter)
458
466
  const dialogPatterns = [
459
467
  /Do you want to connect/i,
460
468
  /Do you trust the files/i,
@@ -468,14 +476,19 @@ export class ProviderCliAdapter implements CliAdapter {
468
476
  return;
469
477
  }
470
478
 
471
- // Prompt ready
472
- if (patterns.prompt.some(p => p.test(this.startupBuffer))) {
473
- this.ready = true;
474
- this.setStatus('idle', 'prompt_matched');
475
- LOG.info('CLI', `[${this.cliType}] Ready`);
476
- this.onStatusChange?.();
479
+ const elapsed = Date.now() - this.spawnAt;
480
+ const bufCap = this.startupBuffer.length > 12000;
481
+ const promptMatched = patterns.prompt.some(p => p.test(this.startupBuffer));
482
+ if (promptMatched || elapsed > 8000 || bufCap) {
483
+ this.startupParseGate = false;
484
+ if (promptMatched) {
485
+ LOG.info('CLI', `[${this.cliType}] ✓ Startup gate end (prompt matched)`);
486
+ } else {
487
+ LOG.info('CLI', `[${this.cliType}] startup gate end (${elapsed}ms, cap=${bufCap}, prompt=${promptMatched})`);
488
+ }
489
+ } else {
490
+ return;
477
491
  }
478
- return;
479
492
  }
480
493
 
481
494
  if (cleanData.trim().length > 5) {
@@ -695,6 +708,8 @@ export class ProviderCliAdapter implements CliAdapter {
695
708
  this.ptyProcess = null;
696
709
  this.setStatus('stopped', 'stop_cmd');
697
710
  this.ready = false;
711
+ this.startupParseGate = false;
712
+ this.spawnAt = 0;
698
713
  this.onStatusChange?.();
699
714
  }, this.timeouts.shutdownGrace);
700
715
  }
@@ -747,16 +762,29 @@ export class ProviderCliAdapter implements CliAdapter {
747
762
  * Used by DevServer /api/cli/debug endpoint.
748
763
  */
749
764
  getDebugState(): Record<string, any> {
765
+ const sb = this.startupBuffer;
766
+ const testOnStartup = (p: RegExp): boolean => {
767
+ const flags = p.flags.includes('g') ? p.flags.replace(/g/g, '') : p.flags;
768
+ return new RegExp(p.source, flags).test(sb);
769
+ };
770
+ const promptDiagnostics = this.provider.patterns.prompt.map((p) => ({
771
+ pattern: p.toString(),
772
+ matchedAgainstStartupBuffer: testOnStartup(p),
773
+ }));
750
774
  return {
751
775
  type: this.cliType,
752
776
  name: this.cliName,
753
777
  status: this.currentStatus,
754
778
  ready: this.ready,
779
+ startupParseGate: this.startupParseGate,
780
+ spawnAt: this.spawnAt,
755
781
  workingDir: this.workingDir,
756
782
  messages: this.messages.slice(-20),
757
783
  messageCount: this.messages.length,
758
- // Buffers
759
- startupBuffer: this.startupBuffer.slice(-500),
784
+ // Buffers (longer tails here than in periodic logs — for matching provider.json patterns)
785
+ startupBuffer: sb.slice(-4000),
786
+ startupBufferLength: sb.length,
787
+ promptDiagnostics,
760
788
  recentOutputBuffer: this.recentOutputBuffer.slice(-500),
761
789
  settledBuffer: this.settledBuffer.slice(-500),
762
790
  responseBuffer: this.responseBuffer.slice(-500),