@adhdev/daemon-core 0.9.82-rc.326 → 0.9.82-rc.328
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/dist/config/mesh-config.d.ts +5 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +529 -337
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +528 -337
- package/dist/index.mjs.map +1 -1
- package/dist/mesh/mesh-active-work.d.ts +66 -0
- package/dist/mesh/mesh-work-queue.d.ts +2 -0
- package/dist/repo-mesh-types.d.ts +12 -0
- package/package.json +2 -2
- package/src/commands/router.ts +47 -6
- package/src/config/mesh-config.ts +7 -0
- package/src/index.ts +2 -2
- package/src/mesh/mesh-active-work.ts +154 -0
- package/src/mesh/mesh-reconcile-loop.ts +144 -1
- package/src/mesh/mesh-work-queue.ts +28 -8
- package/src/repo-mesh-types.ts +12 -0
package/src/repo-mesh-types.ts
CHANGED
|
@@ -533,6 +533,18 @@ export interface LocalMeshNodeEntry {
|
|
|
533
533
|
/** Operator-defined capability tags used by mesh queue matching. */
|
|
534
534
|
capabilities?: string[];
|
|
535
535
|
userOverrides: Partial<RepoMeshNodeCapabilities>;
|
|
536
|
+
/**
|
|
537
|
+
* Live, self-healed platform/arch reported by the daemon that owns this
|
|
538
|
+
* node's workspace (its own process.platform/process.arch), carried on the
|
|
539
|
+
* git_status envelope and persisted by the coordinator on each direct git
|
|
540
|
+
* probe. This is auto-detected truth, kept DISTINCT from `userOverrides`
|
|
541
|
+
* (operator intent) so capability-tag derivation can prefer an explicit
|
|
542
|
+
* operator override while still self-correcting auto-detected nodes — and so
|
|
543
|
+
* a stale value is overwritten by the next report rather than sticking.
|
|
544
|
+
* Absent until the first direct probe succeeds.
|
|
545
|
+
*/
|
|
546
|
+
reportedPlatform?: string;
|
|
547
|
+
reportedArch?: string;
|
|
536
548
|
policy: RepoMeshNodePolicy;
|
|
537
549
|
/**
|
|
538
550
|
* Per-node instruction surfaced in the coordinator prompt so the LLM
|