@adhdev/daemon-standalone 0.9.82-rc.391 → 0.9.82-rc.392
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/index.js
CHANGED
|
@@ -30108,10 +30108,10 @@ var require_dist3 = __commonJS({
|
|
|
30108
30108
|
}
|
|
30109
30109
|
function getDaemonBuildInfo() {
|
|
30110
30110
|
if (cached2) return cached2;
|
|
30111
|
-
const commit = readInjected(true ? "
|
|
30112
|
-
const commitShort = readInjected(true ? "
|
|
30113
|
-
const version2 = readInjected(true ? "0.9.82-rc.
|
|
30114
|
-
const builtAt = readInjected(true ? "2026-06-
|
|
30111
|
+
const commit = readInjected(true ? "62225119ccdbf6c3c153a4225ff6ba2032ad87e1" : void 0) ?? "unknown";
|
|
30112
|
+
const commitShort = readInjected(true ? "62225119" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
30113
|
+
const version2 = readInjected(true ? "0.9.82-rc.392" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
30114
|
+
const builtAt = readInjected(true ? "2026-06-26T13:05:40.071Z" : void 0);
|
|
30115
30115
|
cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
|
|
30116
30116
|
return cached2;
|
|
30117
30117
|
}
|
package/package.json
CHANGED
|
@@ -3421,6 +3421,7 @@ async function meshEnqueueTask(ctx, args) {
|
|
|
3421
3421
|
}
|
|
3422
3422
|
{
|
|
3423
3423
|
const queueTrigger = await triggerMeshQueueAndReport(ctx);
|
|
3424
|
+
const coordinatorDaemonId = resolveCoordinatorDaemonId(ctx);
|
|
3424
3425
|
const dispatchPromises = [];
|
|
3425
3426
|
for (const node of ctx.mesh.nodes) {
|
|
3426
3427
|
const isLocalNode = isLocalControlPlaneNode(ctx, node);
|
|
@@ -3428,7 +3429,15 @@ async function meshEnqueueTask(ctx, args) {
|
|
|
3428
3429
|
if (targetNodeId && node.id !== targetNodeId) continue;
|
|
3429
3430
|
if (!(0, import_daemon_core3.nodeSatisfiesRequiredTags)(requiredTags, (0, import_daemon_core3.buildMeshNodeCapabilityTags)(node))) continue;
|
|
3430
3431
|
dispatchPromises.push(
|
|
3431
|
-
ipcDispatchToRemoteAgent(ctx, node, {
|
|
3432
|
+
ipcDispatchToRemoteAgent(ctx, node, {
|
|
3433
|
+
message: args.message,
|
|
3434
|
+
meshContext: {
|
|
3435
|
+
meshId: ctx.mesh.id,
|
|
3436
|
+
nodeId: node.id,
|
|
3437
|
+
taskId: task.id,
|
|
3438
|
+
...coordinatorDaemonId ? { coordinatorDaemonId } : {}
|
|
3439
|
+
}
|
|
3440
|
+
}).then((result) => {
|
|
3432
3441
|
if (result.success) {
|
|
3433
3442
|
try {
|
|
3434
3443
|
const providerType = result.providerType;
|