@adhdev/daemon-core 0.9.76-rc.4 → 0.9.76-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.
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/shared-types.d.ts +18 -1
- package/package.json +1 -1
- package/src/commands/mesh-coordinator.ts +1 -1
- package/src/commands/router.ts +1 -0
- package/src/shared-types.ts +20 -1
package/dist/index.mjs
CHANGED
|
@@ -19903,7 +19903,7 @@ function resolveAdhdevMcpServerLaunch(options) {
|
|
|
19903
19903
|
if (!entryPath) return null;
|
|
19904
19904
|
return {
|
|
19905
19905
|
command: options.nodeExecutable?.trim() || process.execPath,
|
|
19906
|
-
args: [entryPath, "--repo-mesh", options.meshId]
|
|
19906
|
+
args: [entryPath, "--mode", "ipc", "--repo-mesh", options.meshId]
|
|
19907
19907
|
};
|
|
19908
19908
|
}
|
|
19909
19909
|
function resolveAdhdevMcpEntryPath(explicitPath) {
|
|
@@ -21505,7 +21505,8 @@ var DaemonCommandRouter = class {
|
|
|
21505
21505
|
};
|
|
21506
21506
|
if (args?.inlineMesh) {
|
|
21507
21507
|
mcpServerEntry.env = {
|
|
21508
|
-
ADHDEV_INLINE_MESH: JSON.stringify(mesh)
|
|
21508
|
+
ADHDEV_INLINE_MESH: JSON.stringify(mesh),
|
|
21509
|
+
ADHDEV_MCP_TRANSPORT: "ipc"
|
|
21509
21510
|
};
|
|
21510
21511
|
}
|
|
21511
21512
|
const mcpConfig = {
|