@wrongstack/webui-server 0.292.1 → 0.293.0

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 CHANGED
@@ -3112,7 +3112,6 @@ var BOOLEAN_PREF_KEYS = /* @__PURE__ */ new Set([
3112
3112
  "yolo",
3113
3113
  "chime",
3114
3114
  "confirmExit",
3115
- "streamFleet",
3116
3115
  "nextPrediction",
3117
3116
  "titleAnimation",
3118
3117
  "enhanceEnabled",
@@ -3193,7 +3192,8 @@ var ENUM_PREF_KEYS = {
3193
3192
  fsAccess: /* @__PURE__ */ new Set(["unrestricted", "project"]),
3194
3193
  // Chimera autoFix + auto-review cascade threshold
3195
3194
  chimeraAutoFix: /* @__PURE__ */ new Set(["off", "ask", "auto"]),
3196
- autoReviewCascadeOn: /* @__PURE__ */ new Set(["off", "critical", "high"])
3195
+ autoReviewCascadeOn: /* @__PURE__ */ new Set(["off", "critical", "high"]),
3196
+ fleetChatVerbosity: /* @__PURE__ */ new Set(["off", "full"])
3197
3197
  };
3198
3198
  function validateModelRuntimeValue(modelRuntime, path25) {
3199
3199
  const reasoning = modelRuntime["reasoning"];
@@ -7400,7 +7400,6 @@ var PREF_KEYS = [
7400
7400
  "maxIterations",
7401
7401
  "chime",
7402
7402
  "confirmExit",
7403
- "streamFleet",
7404
7403
  "nextPrediction",
7405
7404
  "enhanceEnabled",
7406
7405
  "enhanceDelayMs",
@@ -7471,7 +7470,9 @@ var PREF_KEYS = [
7471
7470
  "autoReviewMaxConcurrentReviews",
7472
7471
  "autoReviewCascadeOn",
7473
7472
  // Per-plugin enable/disable map (parity with the embedded server).
7474
- "pluginsEnabled"
7473
+ "pluginsEnabled",
7474
+ // Fleet chat verbosity: off | full (migrated from streamFleet boolean).
7475
+ "fleetChatVerbosity"
7475
7476
  ];
7476
7477
  function prefSnapshot(contextMeta) {
7477
7478
  const snapshot = {};
@@ -7544,8 +7545,8 @@ async function persistPrefsToConfig(deps2, holder, payload) {
7544
7545
  if (typeof payload["chime"] === "boolean") setAutonomy("chime", payload["chime"]);
7545
7546
  if (typeof payload["confirmExit"] === "boolean")
7546
7547
  setAutonomy("confirmExit", payload["confirmExit"]);
7547
- if (typeof payload["streamFleet"] === "boolean")
7548
- setAutonomy("streamFleet", payload["streamFleet"]);
7548
+ if (typeof payload["fleetChatVerbosity"] === "string")
7549
+ setAutonomy("fleetChatVerbosity", payload["fleetChatVerbosity"]);
7549
7550
  if (typeof payload["enhanceEnabled"] === "boolean")
7550
7551
  setAutonomy("enhance", payload["enhanceEnabled"]);
7551
7552
  if (typeof payload["enhanceDelayMs"] === "number")
@@ -11573,7 +11574,7 @@ function seedContextMeta(config, context) {
11573
11574
  meta["yolo"] = autonomyCfg["yolo"] ?? config.yolo ?? false;
11574
11575
  meta["chime"] = autonomyCfg["chime"] ?? false;
11575
11576
  meta["confirmExit"] = autonomyCfg["confirmExit"] !== false;
11576
- meta["streamFleet"] = autonomyCfg["streamFleet"] !== false;
11577
+ meta["fleetChatVerbosity"] = autonomyCfg["fleetChatVerbosity"] ?? "off";
11577
11578
  meta["enhanceEnabled"] = autonomyCfg["enhance"] ?? true;
11578
11579
  meta["enhanceDelayMs"] = autonomyCfg["enhanceDelayMs"] ?? 6e4;
11579
11580
  meta["enhanceLanguage"] = autonomyCfg["enhanceLanguage"] ?? "original";