@adhdev/daemon-core 1.0.28-rc.4 → 1.0.28-rc.6

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 (33) hide show
  1. package/dist/config/mesh-config.d.ts +2 -0
  2. package/dist/git/git-commands.d.ts +1 -0
  3. package/dist/index.js +7155 -7080
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.mjs +7158 -7083
  6. package/dist/index.mjs.map +1 -1
  7. package/dist/mesh/mesh-completion-synthesis.d.ts +29 -0
  8. package/dist/mesh/mesh-node-identity.d.ts +2 -0
  9. package/dist/mesh/mesh-refine-gates.d.ts +32 -0
  10. package/dist/mesh/mesh-runtime-store.d.ts +1 -0
  11. package/dist/mesh/mesh-work-queue.d.ts +15 -0
  12. package/dist/mesh/node-facts.d.ts +17 -0
  13. package/dist/providers/cli-provider-instance.d.ts +30 -57
  14. package/dist/providers/transcript-evidence.d.ts +63 -0
  15. package/dist/repo-mesh-types.d.ts +23 -0
  16. package/package.json +5 -3
  17. package/src/cli-adapters/cli-state-engine.ts +4 -3
  18. package/src/commands/high-family/mesh-status.ts +5 -0
  19. package/src/commands/router-refine.ts +30 -0
  20. package/src/commands/upgrade-helper.ts +15 -1
  21. package/src/config/mesh-config.ts +7 -0
  22. package/src/git/git-commands.ts +11 -1
  23. package/src/mesh/mesh-completion-synthesis.ts +76 -50
  24. package/src/mesh/mesh-node-identity.ts +37 -3
  25. package/src/mesh/mesh-queue-assignment.ts +34 -0
  26. package/src/mesh/mesh-reconcile-loop.ts +62 -71
  27. package/src/mesh/mesh-refine-gates.ts +58 -0
  28. package/src/mesh/mesh-runtime-store.ts +9 -1
  29. package/src/mesh/mesh-work-queue.ts +20 -1
  30. package/src/mesh/node-facts.ts +54 -0
  31. package/src/providers/cli-provider-instance.ts +72 -152
  32. package/src/providers/transcript-evidence.ts +105 -0
  33. package/src/repo-mesh-types.ts +23 -0
@@ -166,6 +166,8 @@ export declare function updateNode(meshId: string, nodeId: string, opts: {
166
166
  * Slots are NOT carried — they are coordinator-owned config
167
167
  * (REMOTE-NODE-SLOTS-COORDINATOR-LOCAL fix). */
168
168
  reportedMemberState?: MeshReportedMemberState;
169
+ /** Versioned runtime-facts bundle — whole-object replace, opaque. */
170
+ nodeFacts?: import('@adhdev/mesh-shared').MeshNodeFacts;
169
171
  }): LocalMeshNodeEntry | undefined;
170
172
  /**
171
173
  * Validate + normalize a kind-panel's slots (the SOLE MAGI slot normalizer): provider
@@ -142,6 +142,7 @@ type GitCommandSuccess = {
142
142
  daemonBuildVersion?: string;
143
143
  lastReportedAt?: number;
144
144
  };
145
+ reporterNodeFacts?: import('@adhdev/mesh-shared').MeshNodeFacts;
145
146
  } | {
146
147
  success: true;
147
148
  diffSummary: GitDiffSummary;