adhdev 0.9.76-rc.66 → 0.9.76-rc.68
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/cli/index.js +197 -14
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +197 -14
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/vendor/mcp-server/index.js +2 -1
- package/vendor/mcp-server/index.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adhdev",
|
|
3
|
-
"version": "0.9.76-rc.
|
|
3
|
+
"version": "0.9.76-rc.68",
|
|
4
4
|
"description": "ADHDev — Agent Dashboard Hub for Dev. Remote-control AI coding agents from anywhere.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"node": ">=18"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@adhdev/daemon-core": "0.9.76-rc.
|
|
50
|
+
"@adhdev/daemon-core": "0.9.76-rc.68",
|
|
51
51
|
"@adhdev/ghostty-vt-node": "*",
|
|
52
52
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
53
53
|
"@xterm/addon-serialize": "^0.14.0",
|
|
@@ -738,6 +738,7 @@ async function meshLaunchSession(ctx, args) {
|
|
|
738
738
|
}
|
|
739
739
|
}
|
|
740
740
|
const coordinatorNode = resolveCoordinatorNode(ctx);
|
|
741
|
+
const coordinatorDaemonId = coordinatorNode?.daemonId || ctx.localDaemonId;
|
|
741
742
|
const spawnedSessionVisibility = readSpawnedSessionVisibility(ctx.mesh.policy);
|
|
742
743
|
const result = await commandForNode(ctx, node, "launch_cli", {
|
|
743
744
|
cliType: resolvedProviderType,
|
|
@@ -746,7 +747,7 @@ async function meshLaunchSession(ctx, args) {
|
|
|
746
747
|
meshNodeFor: ctx.mesh.id,
|
|
747
748
|
meshNodeId: args.node_id,
|
|
748
749
|
spawnedSessionVisibility,
|
|
749
|
-
...
|
|
750
|
+
...coordinatorDaemonId ? { meshCoordinatorDaemonId: coordinatorDaemonId } : {},
|
|
750
751
|
...coordinatorNode?.id ? { meshCoordinatorNodeId: coordinatorNode.id } : {},
|
|
751
752
|
launchedByCoordinator: true
|
|
752
753
|
}
|