@adhdev/daemon-core 0.9.82-rc.360 → 0.9.82-rc.362

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 (38) hide show
  1. package/dist/commands/cli-manager.d.ts +13 -0
  2. package/dist/commands/low-family/coordinator-prompt.d.ts +9 -0
  3. package/dist/commands/low-family/daemon-lifecycle.d.ts +2 -0
  4. package/dist/commands/low-family/diagnostics.d.ts +2 -0
  5. package/dist/commands/low-family/index.d.ts +3 -0
  6. package/dist/commands/low-family/mesh-ledger.d.ts +10 -0
  7. package/dist/commands/low-family/mesh-node-logs.d.ts +2 -0
  8. package/dist/commands/low-family/notification.d.ts +2 -0
  9. package/dist/commands/low-family/refine-config.d.ts +2 -0
  10. package/dist/commands/low-family/session-host.d.ts +2 -0
  11. package/dist/commands/low-family/spec-providerdev.d.ts +11 -0
  12. package/dist/commands/low-family/status-meta.d.ts +2 -0
  13. package/dist/commands/low-family/types.d.ts +33 -0
  14. package/dist/commands/router.d.ts +0 -1
  15. package/dist/index.js +5314 -5204
  16. package/dist/index.js.map +1 -1
  17. package/dist/index.mjs +4833 -4723
  18. package/dist/index.mjs.map +1 -1
  19. package/dist/mesh/mesh-events-utils.d.ts +0 -2
  20. package/package.json +2 -2
  21. package/src/commands/cli-manager.ts +69 -4
  22. package/src/commands/low-family/coordinator-prompt.ts +72 -0
  23. package/src/commands/low-family/daemon-lifecycle.ts +107 -0
  24. package/src/commands/low-family/diagnostics.ts +57 -0
  25. package/src/commands/low-family/index.ts +37 -0
  26. package/src/commands/low-family/mesh-ledger.ts +62 -0
  27. package/src/commands/low-family/mesh-node-logs.ts +81 -0
  28. package/src/commands/low-family/notification.ts +116 -0
  29. package/src/commands/low-family/refine-config.ts +106 -0
  30. package/src/commands/low-family/session-host.ts +274 -0
  31. package/src/commands/low-family/spec-providerdev.ts +217 -0
  32. package/src/commands/low-family/status-meta.ts +112 -0
  33. package/src/commands/low-family/types.ts +39 -0
  34. package/src/commands/router.ts +22 -1076
  35. package/src/mesh/contracts.ts +12 -3
  36. package/src/mesh/mesh-events-coordinator.ts +1 -1
  37. package/src/mesh/mesh-events-utils.ts +0 -20
  38. package/src/providers/cli-provider-instance.ts +16 -3
@@ -113,6 +113,19 @@ export declare class DaemonCliManager {
113
113
  key: string;
114
114
  } | null;
115
115
  private findAdapterBySessionId;
116
+ /**
117
+ * WTCLAIM (B): resolve the adapter for a mesh dispatch that named a node
118
+ * (meshContext.nodeId) but carried no explicit session. Matches by the
119
+ * instance's bound mesh node id (settings.meshNodeId, falling back to the
120
+ * sticky meshLastNodeId) first, then by the node workspace (workingDir).
121
+ *
122
+ * Unlike findAdapter's step-2 fuzzy fallback, this NEVER degrades to a
123
+ * provider-only first-match: on a daemon hosting BOTH a base node and a
124
+ * cloned worktree node (same daemonId), that fuzzy match could land a
125
+ * worktree-targeted task on the base session. Returns null when no session
126
+ * is bound to this node so the caller fails closed.
127
+ */
128
+ private findMeshNodeAdapter;
116
129
  handleCliCommand(cmd: string, args: any): Promise<CommandResult | null>;
117
130
  }
118
131
  export {};
@@ -0,0 +1,9 @@
1
+ /**
2
+ * RF-ROUTER LOW family — coordinator-prompt override/append file commands.
3
+ *
4
+ * Extracted verbatim from DaemonCommandRouter.executeDaemonCommand. Both handlers
5
+ * read/write only the on-disk ~/.adhdev/coordinator-prompts directory (no router
6
+ * instance state) and return the same CommandRouterResult the inlined cases did.
7
+ */
8
+ import type { LowFamilyHandler } from './types.js';
9
+ export declare const coordinatorPromptHandlers: Record<string, LowFamilyHandler>;
@@ -0,0 +1,2 @@
1
+ import type { LowFamilyHandler } from './types.js';
2
+ export declare const daemonLifecycleHandlers: Record<string, LowFamilyHandler>;
@@ -0,0 +1,2 @@
1
+ import type { LowFamilyHandler } from './types.js';
2
+ export declare const diagnosticsHandlers: Record<string, LowFamilyHandler>;
@@ -0,0 +1,3 @@
1
+ import type { LowFamilyRegistry } from './types.js';
2
+ export type { LowFamilyContext, LowFamilyHandler, LowFamilyRegistry } from './types.js';
3
+ export declare const lowFamilyRegistry: LowFamilyRegistry;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * RF-ROUTER LOW family — mesh ledger read / slice / import commands.
3
+ *
4
+ * Extracted verbatim from DaemonCommandRouter.executeDaemonCommand. Each handler
5
+ * touches only the on-disk mesh ledger (dynamically imported mesh-ledger module)
6
+ * keyed by meshId — no router instance state — and returns the same
7
+ * CommandRouterResult the inlined cases did.
8
+ */
9
+ import type { LowFamilyHandler } from './types.js';
10
+ export declare const meshLedgerHandlers: Record<string, LowFamilyHandler>;
@@ -0,0 +1,2 @@
1
+ import type { LowFamilyHandler } from './types.js';
2
+ export declare const meshNodeLogsHandlers: Record<string, LowFamilyHandler>;
@@ -0,0 +1,2 @@
1
+ import type { LowFamilyHandler } from './types.js';
2
+ export declare const notificationHandlers: Record<string, LowFamilyHandler>;
@@ -0,0 +1,2 @@
1
+ import type { LowFamilyHandler } from './types.js';
2
+ export declare const refineConfigHandlers: Record<string, LowFamilyHandler>;
@@ -0,0 +1,2 @@
1
+ import type { LowFamilyHandler } from './types.js';
2
+ export declare const sessionHostHandlers: Record<string, LowFamilyHandler>;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * RF-ROUTER LOW family — provider-dev / spec debug commands.
3
+ *
4
+ * Powers the dev console's spec editor: read/write a session's spec.json, validate
5
+ * an in-progress spec, and preview condition/section resolution against a live
6
+ * session's screen. Extracted verbatim from executeDaemonCommand; reads only
7
+ * ctx.deps.sessionRegistry + ctx.deps.cliManager. resolveSpecPathInProviders (a
8
+ * `this`-free module helper) is relocated here unchanged.
9
+ */
10
+ import type { LowFamilyHandler } from './types.js';
11
+ export declare const specProviderDevHandlers: Record<string, LowFamilyHandler>;
@@ -0,0 +1,2 @@
1
+ import type { LowFamilyHandler } from './types.js';
2
+ export declare const statusMetaHandlers: Record<string, LowFamilyHandler>;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * RF-ROUTER LOW family — shared types for the extracted low-coupling command
3
+ * handlers. Each handler is a pure function of (context, args): it reads only the
4
+ * router deps it needs and returns the exact CommandRouterResult the original
5
+ * `executeDaemonCommand` switch case returned, so the router facade is unchanged.
6
+ *
7
+ * Registry dispatch: DaemonCommandRouter.executeDaemonCommand looks up the cmd in
8
+ * lowFamilyRegistry BEFORE its switch; a hit returns the handler result, a miss
9
+ * falls through to the remaining switch (and ultimately CommandHandler delegation).
10
+ */
11
+ import type { CommandRouterDeps, CommandRouterResult } from '../router.js';
12
+ /** Mesh record resolved from the router's inline-mesh cache + local config. */
13
+ export type ResolvedMeshForCommand = {
14
+ mesh: any;
15
+ inline: boolean;
16
+ source: 'inline_cache' | 'inline_bootstrap' | 'local_config';
17
+ } | null;
18
+ export interface LowFamilyContext {
19
+ deps: CommandRouterDeps;
20
+ /**
21
+ * Bound `DaemonCommandRouter.getMeshForCommand`. A handful of LOW handlers
22
+ * (mesh-node-logs) must resolve a mesh node's owning daemonId from the
23
+ * router's inline-mesh cache, which is router instance state not present in
24
+ * `deps`. The router injects it at dispatch; handlers that don't need it
25
+ * ignore it. Optional so unit tests can omit it (and assert the guarded
26
+ * fallback) without constructing a full router.
27
+ */
28
+ getMeshForCommand?: (meshId: string, inlineMesh?: unknown, options?: {
29
+ preferInline?: boolean;
30
+ }) => Promise<ResolvedMeshForCommand>;
31
+ }
32
+ export type LowFamilyHandler = (ctx: LowFamilyContext, args: any) => Promise<CommandRouterResult>;
33
+ export type LowFamilyRegistry = Map<string, LowFamilyHandler>;
@@ -377,7 +377,6 @@ export declare class DaemonCommandRouter {
377
377
  private isCompletedHostedSession;
378
378
  private recordIntentionalMeshSessionStop;
379
379
  private cleanupMeshSessions;
380
- private traceSessionHostAction;
381
380
  /**
382
381
  * Unified command routing.
383
382
  * Returns result for all commands: