@adhdev/daemon-standalone 1.0.40-rc.1 → 1.0.40-rc.2
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 +67 -22
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/vendor/mcp-server/index.js +4 -1
- package/vendor/mcp-server/index.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adhdev/daemon-standalone",
|
|
3
|
-
"version": "1.0.40-rc.
|
|
3
|
+
"version": "1.0.40-rc.2",
|
|
4
4
|
"description": "ADHDev standalone daemon — embedded HTTP/WS server for local dashboard",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"license": "AGPL-3.0-or-later",
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@adhdev/ghostty-vt-node": "*",
|
|
40
|
-
"@adhdev/session-host-core": "1.0.40-rc.
|
|
40
|
+
"@adhdev/session-host-core": "1.0.40-rc.2",
|
|
41
41
|
"@xterm/addon-serialize": "^0.14.0",
|
|
42
42
|
"@xterm/xterm": "^6.0.0",
|
|
43
43
|
"chalk": "^5.3.0",
|
|
@@ -7072,8 +7072,11 @@ async function meshSendTask(ctx, args) {
|
|
|
7072
7072
|
code: "live_debug_readonly_guardrail_violation",
|
|
7073
7073
|
taskMode: modeValidation.taskMode || requestedTaskMode,
|
|
7074
7074
|
violations: modeValidation.violations,
|
|
7075
|
+
// GUARDRAIL-TEACHING-ERROR: match location per violation, so the caller
|
|
7076
|
+
// can see what tripped the guard instead of rewording blind.
|
|
7077
|
+
...modeValidation.violationDetails ? { violationDetails: modeValidation.violationDetails } : {},
|
|
7075
7078
|
allowedOperations: modeValidation.allowedOperations,
|
|
7076
|
-
error:
|
|
7079
|
+
error: (0, import_daemon_core5.buildMeshTaskModeViolationError)(modeValidation)
|
|
7077
7080
|
});
|
|
7078
7081
|
}
|
|
7079
7082
|
const taskMode = modeValidation.taskMode;
|