@adhdev/daemon-core 0.9.76-rc.5 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-core",
3
- "version": "0.9.76-rc.5",
3
+ "version": "0.9.76-rc.6",
4
4
  "description": "ADHDev daemon core — CDP, IDE detection, providers, command execution",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -127,7 +127,7 @@ function resolveAdhdevMcpServerLaunch(options: {
127
127
  if (!entryPath) return null
128
128
  return {
129
129
  command: options.nodeExecutable?.trim() || process.execPath,
130
- args: [entryPath, '--repo-mesh', options.meshId],
130
+ args: [entryPath, '--mode', 'ipc', '--repo-mesh', options.meshId],
131
131
  }
132
132
  }
133
133
 
@@ -1136,6 +1136,7 @@ export class DaemonCommandRouter {
1136
1136
  if (args?.inlineMesh) {
1137
1137
  mcpServerEntry.env = {
1138
1138
  ADHDEV_INLINE_MESH: JSON.stringify(mesh),
1139
+ ADHDEV_MCP_TRANSPORT: 'ipc',
1139
1140
  };
1140
1141
  }
1141
1142
  const mcpConfig = {