adhdev 0.9.82-rc.234 → 0.9.82-rc.235
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/adhdev-mcp.js
CHANGED
|
@@ -125424,7 +125424,7 @@ var init_adhdev_daemon = __esm({
|
|
|
125424
125424
|
init_version();
|
|
125425
125425
|
init_src();
|
|
125426
125426
|
init_runtime_defaults();
|
|
125427
|
-
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.
|
|
125427
|
+
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.235" });
|
|
125428
125428
|
LOCAL_DAEMON_HEALTH_TIMEOUT_MS = 8e3;
|
|
125429
125429
|
AdhdevDaemon = class _AdhdevDaemon {
|
|
125430
125430
|
localHttpServer = null;
|
package/dist/cli/index.js
CHANGED
|
@@ -125394,7 +125394,7 @@ var init_adhdev_daemon = __esm({
|
|
|
125394
125394
|
init_version();
|
|
125395
125395
|
init_src();
|
|
125396
125396
|
init_runtime_defaults();
|
|
125397
|
-
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.
|
|
125397
|
+
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.235" });
|
|
125398
125398
|
LOCAL_DAEMON_HEALTH_TIMEOUT_MS = 8e3;
|
|
125399
125399
|
AdhdevDaemon = class _AdhdevDaemon {
|
|
125400
125400
|
localHttpServer = null;
|
package/dist/index.js
CHANGED
|
@@ -94216,7 +94216,7 @@ var init_adhdev_daemon = __esm({
|
|
|
94216
94216
|
init_version();
|
|
94217
94217
|
init_src();
|
|
94218
94218
|
init_runtime_defaults();
|
|
94219
|
-
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.
|
|
94219
|
+
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.235" });
|
|
94220
94220
|
LOCAL_DAEMON_HEALTH_TIMEOUT_MS = 8e3;
|
|
94221
94221
|
AdhdevDaemon = class _AdhdevDaemon {
|
|
94222
94222
|
localHttpServer = null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adhdev",
|
|
3
|
-
"version": "0.9.82-rc.
|
|
3
|
+
"version": "0.9.82-rc.235",
|
|
4
4
|
"description": "ADHDev — Agent Dashboard Hub for Dev. The control hub for your AI coding agents (Claude Code, Codex, Hermes, …).",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"node": ">=18"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@adhdev/daemon-core": "0.9.82-rc.
|
|
52
|
+
"@adhdev/daemon-core": "0.9.82-rc.235",
|
|
53
53
|
"@adhdev/ghostty-vt-node": "*",
|
|
54
54
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
55
55
|
"@xterm/addon-serialize": "^0.14.0",
|
|
@@ -3103,6 +3103,7 @@ async function meshSendTask(ctx, args) {
|
|
|
3103
3103
|
const sessionWasIdle = explicitTargetSession ? isIdleSessionRecord(explicitTargetSession) : false;
|
|
3104
3104
|
const taskId = (0, import_node_crypto.randomUUID)();
|
|
3105
3105
|
const dispatchedAt = (/* @__PURE__ */ new Date()).toISOString();
|
|
3106
|
+
const coordinatorDaemonId = resolveCoordinatorNode(ctx)?.daemonId || ctx.localDaemonId;
|
|
3106
3107
|
const dispatchResult = await commandForNode(ctx, node, "agent_command", {
|
|
3107
3108
|
targetSessionId: args.session_id,
|
|
3108
3109
|
agentType: resolvedProviderType,
|
|
@@ -3113,7 +3114,8 @@ async function meshSendTask(ctx, args) {
|
|
|
3113
3114
|
meshContext: {
|
|
3114
3115
|
meshId: ctx.mesh.id,
|
|
3115
3116
|
nodeId: args.node_id,
|
|
3116
|
-
taskId
|
|
3117
|
+
taskId,
|
|
3118
|
+
...coordinatorDaemonId ? { coordinatorDaemonId } : {}
|
|
3117
3119
|
}
|
|
3118
3120
|
});
|
|
3119
3121
|
const dispatchPayload = unwrapCommandPayload(dispatchResult);
|