@adhdev/daemon-standalone 0.9.82-rc.231 → 0.9.82-rc.232
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 +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/vendor/mcp-server/index.js +296 -1234
- package/vendor/mcp-server/index.js.map +1 -1
package/dist/index.js
CHANGED
|
@@ -73389,10 +73389,11 @@ ${tail}` : ""
|
|
|
73389
73389
|
}
|
|
73390
73390
|
const selfDaemonId = this.deps.statusInstanceId;
|
|
73391
73391
|
const isRemote = nodeDaemonId && selfDaemonId && nodeDaemonId !== selfDaemonId;
|
|
73392
|
-
if (isRemote && this.deps.dispatchMeshCommand) {
|
|
73392
|
+
if (isRemote && this.deps.dispatchMeshCommand && !args?._meshDirectDispatch) {
|
|
73393
73393
|
const forwarded = await this.deps.dispatchMeshCommand(nodeDaemonId, "fast_forward_mesh_node", {
|
|
73394
73394
|
...typeof args === "object" && args !== null ? args : {},
|
|
73395
|
-
workspace
|
|
73395
|
+
workspace,
|
|
73396
|
+
_meshDirectDispatch: true
|
|
73396
73397
|
});
|
|
73397
73398
|
return forwarded ?? { success: false, error: "no response from remote node" };
|
|
73398
73399
|
}
|