@adhdev/daemon-standalone 1.0.28-rc.5 → 1.0.28-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/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-QamS-QkE.js"></script>
10
+ <script type="module" crossorigin src="/assets/index-DHSDD-eN.js"></script>
11
11
  <link rel="modulepreload" crossorigin href="/assets/vendor-DyCWA2YZ.js">
12
12
  <link rel="stylesheet" crossorigin href="/assets/index-8TNNoifN.css">
13
13
  </head>
@@ -1443,7 +1443,6 @@ var MESH_MAGI_REVIEW_TOOL = {
1443
1443
  n: { type: "number", description: "Global replica override per slot (clamped by the total-replica guard cap, default 12)." },
1444
1444
  task_kind: { type: "string", enum: ["claim_audit", "rca", "design", "freeform"], description: "REQUIRED. Selects (1) the SINGLE output schema injected into each replica prompt and the strict parser used at collection (no schema-on-schema conflict), AND (2) the user-configured kind-panel binding that supplies the fan-out slots (mesh settings \u2192 magiKindPanels; errors magi_kind_not_configured if that kind has no configured slots \u2014 no named-panel/inline/preset fallback). claim_audit: {claims[],top_findings[],open_questions[]}. rca: {rootCause,failsAt,mechanism,evidence[],fixDirection,confidence}. design: {recommendation,rationale,alternatives[],tradeoffs[],risks[],evidence[],confidence}. freeform: no schema \u2014 natural-language answer, parsing/evidence checks waived, cross-verification is weak. Every kind except freeform requires non-empty evidence[]; an empty-evidence or schema-invalid answer triggers ONE delta re-request before being dropped as unparseable. Do NOT also embed an output-format schema in the question \u2014 it collides with this contract (a warning is surfaced if detected)." },
1445
1445
  mode: { type: "string", enum: ["rca", "investigation", "claim_audit", "design_review", "code_audit"], description: "Synthesis emphasis hint \u2014 affects labels only, never the agent count or schema. Distinct from task_kind (which selects the output schema)." },
1446
- use_judge: { type: "boolean", description: "Default false (clustering synthesis). STUB: judge synthesis is not yet implemented \u2014 passing true currently falls back to clustering with a warning. Reserved interface only." },
1447
1446
  require_independent_evidence: { type: "boolean", description: "Default true \u2014 high-impact claims with no file:line/source evidence are routed to needs_verification." },
1448
1447
  include_stale: { type: "boolean", description: "Default false. By default, panel slots whose node HEAD commit differs from the coordinator reference commit are EXCLUDED (they would investigate different code). Set true to fan out to them anyway \u2014 results will be git-skewed and a warning is surfaced. If exclusion drops the panel below 2 independent targets the call errors rather than degrading to N=1; include_stale=true is one way to recover." },
1449
1448
  wait: { type: "boolean", description: "Default true \u2014 collect replica outputs and return the synthesis. Set false to dispatch async and return a consensusGroupId handle; collect later with mesh_magi_collect." },
@@ -5571,8 +5570,6 @@ async function meshMagiReview(ctx, args) {
5571
5570
  }, null, 2);
5572
5571
  }
5573
5572
  const questionSchemaWarning = detectQuestionOutputSchemaConflict(question);
5574
- const useJudge = (args.use_judge ?? args.useJudge) === true;
5575
- const judgeWarning = useJudge ? "use_judge=true requested, but judge synthesis is not yet implemented \u2014 falling back to clustering synthesis." : null;
5576
5573
  await refreshMeshFromDaemon(ctx);
5577
5574
  const referenceCommit = resolveMagiReferenceCommit(ctx);
5578
5575
  const referenceSubmoduleKey = resolveMagiReferenceSubmoduleKey(ctx);
@@ -5678,7 +5675,6 @@ Target: ${args.target}` : ""}`,
5678
5675
  panel: panelName,
5679
5676
  taskKind,
5680
5677
  ...questionSchemaWarning ? { questionSchemaWarning } : {},
5681
- ...judgeWarning ? { judgeWarning } : {},
5682
5678
  question,
5683
5679
  replicaCount: replicaRecords.length,
5684
5680
  replicas: replicaRecords.map((r) => ({ taskId: r.taskId, provider: r.provider, targetNodeId: r.targetNodeId })),