@wrongstack/webui-server 0.292.0 → 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.
@@ -3116,7 +3116,6 @@ var BOOLEAN_PREF_KEYS = /* @__PURE__ */ new Set([
3116
3116
  "yolo",
3117
3117
  "chime",
3118
3118
  "confirmExit",
3119
- "streamFleet",
3120
3119
  "nextPrediction",
3121
3120
  "titleAnimation",
3122
3121
  "enhanceEnabled",
@@ -3197,7 +3196,8 @@ var ENUM_PREF_KEYS = {
3197
3196
  fsAccess: /* @__PURE__ */ new Set(["unrestricted", "project"]),
3198
3197
  // Chimera autoFix + auto-review cascade threshold
3199
3198
  chimeraAutoFix: /* @__PURE__ */ new Set(["off", "ask", "auto"]),
3200
- autoReviewCascadeOn: /* @__PURE__ */ new Set(["off", "critical", "high"])
3199
+ autoReviewCascadeOn: /* @__PURE__ */ new Set(["off", "critical", "high"]),
3200
+ fleetChatVerbosity: /* @__PURE__ */ new Set(["off", "full"])
3201
3201
  };
3202
3202
  function validateModelRuntimeValue(modelRuntime, path24) {
3203
3203
  const reasoning = modelRuntime["reasoning"];
@@ -7352,7 +7352,6 @@ var PREF_KEYS = [
7352
7352
  "maxIterations",
7353
7353
  "chime",
7354
7354
  "confirmExit",
7355
- "streamFleet",
7356
7355
  "nextPrediction",
7357
7356
  "enhanceEnabled",
7358
7357
  "enhanceDelayMs",
@@ -7423,7 +7422,9 @@ var PREF_KEYS = [
7423
7422
  "autoReviewMaxConcurrentReviews",
7424
7423
  "autoReviewCascadeOn",
7425
7424
  // Per-plugin enable/disable map (parity with the embedded server).
7426
- "pluginsEnabled"
7425
+ "pluginsEnabled",
7426
+ // Fleet chat verbosity: off | full (migrated from streamFleet boolean).
7427
+ "fleetChatVerbosity"
7427
7428
  ];
7428
7429
  function prefSnapshot(contextMeta) {
7429
7430
  const snapshot = {};
@@ -7496,8 +7497,8 @@ async function persistPrefsToConfig(deps2, holder, payload) {
7496
7497
  if (typeof payload["chime"] === "boolean") setAutonomy("chime", payload["chime"]);
7497
7498
  if (typeof payload["confirmExit"] === "boolean")
7498
7499
  setAutonomy("confirmExit", payload["confirmExit"]);
7499
- if (typeof payload["streamFleet"] === "boolean")
7500
- setAutonomy("streamFleet", payload["streamFleet"]);
7500
+ if (typeof payload["fleetChatVerbosity"] === "string")
7501
+ setAutonomy("fleetChatVerbosity", payload["fleetChatVerbosity"]);
7501
7502
  if (typeof payload["enhanceEnabled"] === "boolean")
7502
7503
  setAutonomy("enhance", payload["enhanceEnabled"]);
7503
7504
  if (typeof payload["enhanceDelayMs"] === "number")
@@ -11382,7 +11383,7 @@ function seedContextMeta(config, context) {
11382
11383
  meta["yolo"] = autonomyCfg["yolo"] ?? config.yolo ?? false;
11383
11384
  meta["chime"] = autonomyCfg["chime"] ?? false;
11384
11385
  meta["confirmExit"] = autonomyCfg["confirmExit"] !== false;
11385
- meta["streamFleet"] = autonomyCfg["streamFleet"] !== false;
11386
+ meta["fleetChatVerbosity"] = autonomyCfg["fleetChatVerbosity"] ?? "off";
11386
11387
  meta["enhanceEnabled"] = autonomyCfg["enhance"] ?? true;
11387
11388
  meta["enhanceDelayMs"] = autonomyCfg["enhanceDelayMs"] ?? 6e4;
11388
11389
  meta["enhanceLanguage"] = autonomyCfg["enhanceLanguage"] ?? "original";