@adhdev/daemon-standalone 1.0.39 → 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/public/index.html CHANGED
@@ -7,7 +7,7 @@
7
7
  <meta name="description" content="ADHDev self-hosted dashboard for controlling AI agents" />
8
8
  <link rel="icon" href="/otter-logo.png" />
9
9
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet" />
10
- <script type="module" crossorigin src="/assets/index-BgCACi8j.js"></script>
10
+ <script type="module" crossorigin src="/assets/index-aF1w7ZnQ.js"></script>
11
11
  <link rel="modulepreload" crossorigin href="/assets/vendor-DgFmqOGd.js">
12
12
  <link rel="stylesheet" crossorigin href="/assets/index-BRvsAKU_.css">
13
13
  </head>
@@ -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: `live_debug_readonly_guardrail_violation: forbidden operations (${modeValidation.violations.join(", ")})`
7079
+ error: (0, import_daemon_core5.buildMeshTaskModeViolationError)(modeValidation)
7077
7080
  });
7078
7081
  }
7079
7082
  const taskMode = modeValidation.taskMode;