zelari-code 2.33.0 → 2.33.1

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.
@@ -2257,7 +2257,7 @@ var init_providerConfig = __esm({
2257
2257
  // grok-4.6: flagship; native reasoning_effort includes xhigh
2258
2258
  "openai-compatible": "grok-4.6",
2259
2259
  "minimax": "MiniMax-M2.5",
2260
- "glm": "glm-4.6",
2260
+ "glm": "glm-5.3",
2261
2261
  "grok": "grok-4.6",
2262
2262
  "deepseek": "deepseek-v4-pro",
2263
2263
  "chatgpt": "gpt-5.6-codex",
@@ -38031,7 +38031,7 @@ var CORE_VERSION;
38031
38031
  var init_version = __esm({
38032
38032
  "packages/core/dist/version.js"() {
38033
38033
  "use strict";
38034
- CORE_VERSION = "2.33.0";
38034
+ CORE_VERSION = "2.33.1";
38035
38035
  }
38036
38036
  });
38037
38037
 
@@ -72473,6 +72473,7 @@ var init_contextGrowthSummary = __esm({
72473
72473
  var doctor_exports = {};
72474
72474
  __export(doctor_exports, {
72475
72475
  collectDoctorReport: () => collectDoctorReport,
72476
+ firstBlockingRed: () => firstBlockingRed,
72476
72477
  runDoctor: () => runDoctor
72477
72478
  });
72478
72479
  import { execSync as execSync2 } from "node:child_process";
@@ -72738,6 +72739,9 @@ async function checkContextGrowth() {
72738
72739
  return WARN(`metrics unreadable: ${err instanceof Error ? err.message : String(err)}`);
72739
72740
  }
72740
72741
  }
72742
+ function firstBlockingRed(entries) {
72743
+ return entries.find((e) => !e.ok && e.severity === "critical") ?? null;
72744
+ }
72741
72745
  function buildDoctorChecks(pkg, pkgName) {
72742
72746
  return [
72743
72747
  // --- install-health checks (main-process probes) ---
@@ -72839,8 +72843,8 @@ async function collectDoctorReport() {
72839
72843
  message: result.message
72840
72844
  });
72841
72845
  }
72842
- const firstRed = entries.find((e) => !e.ok) ?? null;
72843
- return { entries, firstRed, healthy: entries.every((e) => e.ok) };
72846
+ const firstRed = firstBlockingRed(entries);
72847
+ return { entries, firstRed, healthy: firstRed === null };
72844
72848
  }
72845
72849
  async function runDoctor() {
72846
72850
  const pkg = readPackageJson4();