claudish 7.8.2 → 7.8.3

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.
Files changed (2) hide show
  1. package/dist/index.js +22 -3
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -581,7 +581,7 @@ var init_onepassword_config = __esm(() => {
581
581
  });
582
582
 
583
583
  // src/version.ts
584
- var VERSION = "7.8.2";
584
+ var VERSION = "7.8.3";
585
585
 
586
586
  // src/providers/onepassword-wasm.ts
587
587
  var exports_onepassword_wasm = {};
@@ -64237,6 +64237,9 @@ function ProvidersContent({
64237
64237
  statusFg = C.green;
64238
64238
  const base = tr.ms !== undefined ? `ready ${tr.ms}ms` : "ready";
64239
64239
  statusText = tr.note ? `${base} ${tr.note}` : base;
64240
+ } else if (tr.status === "unavailable") {
64241
+ statusFg = C.yellow;
64242
+ statusText = "n/a";
64240
64243
  } else {
64241
64244
  statusFg = C.red;
64242
64245
  statusText = "FAIL";
@@ -64332,6 +64335,9 @@ function ProvidersContent({
64332
64335
  tr?.status === "failed" && tr.error ? /* @__PURE__ */ jsxDEV5("span", {
64333
64336
  fg: C.red,
64334
64337
  children: tr.error.replace(/\s+/g, " ").trim()
64338
+ }, undefined, false, undefined, this) : tr?.status === "unavailable" && tr.error ? /* @__PURE__ */ jsxDEV5("span", {
64339
+ fg: C.yellow,
64340
+ children: tr.error.replace(/\s+/g, " ").trim()
64335
64341
  }, undefined, false, undefined, this) : /* @__PURE__ */ jsxDEV5("span", {
64336
64342
  fg: selected ? C.white : C.dim,
64337
64343
  children: p.description
@@ -64740,6 +64746,19 @@ function ProviderDetail({
64740
64746
  children: ` ${truncateOneLine(tr.error, width - 16)}`
64741
64747
  }, undefined, false, undefined, this)
64742
64748
  ]
64749
+ }, undefined, true, undefined, this),
64750
+ tr.status === "unavailable" && /* @__PURE__ */ jsxDEV6(Fragment3, {
64751
+ children: [
64752
+ /* @__PURE__ */ jsxDEV6("span", {
64753
+ fg: C.yellow,
64754
+ attributes: A.bold,
64755
+ children: "\u25CB unavailable"
64756
+ }, undefined, false, undefined, this),
64757
+ tr.error && /* @__PURE__ */ jsxDEV6("span", {
64758
+ fg: C.yellow,
64759
+ children: ` ${truncateOneLine(tr.error, width - 16)}`
64760
+ }, undefined, false, undefined, this)
64761
+ ]
64743
64762
  }, undefined, true, undefined, this)
64744
64763
  ]
64745
64764
  }, undefined, true, undefined, this)
@@ -68295,7 +68314,7 @@ function App({ requestLogin } = {}) {
68295
68314
  setTestResults((prev) => ({
68296
68315
  ...prev,
68297
68316
  [provName]: {
68298
- status: "failed",
68317
+ status: "unavailable",
68299
68318
  error: `not running${base ? ` (${base} unreachable)` : ""}`
68300
68319
  }
68301
68320
  }));
@@ -68363,7 +68382,7 @@ function App({ requestLogin } = {}) {
68363
68382
  setTestResults((prev) => ({
68364
68383
  ...prev,
68365
68384
  [provName]: {
68366
- status: "failed",
68385
+ status: prov.isLocal ? "unavailable" : "failed",
68367
68386
  error: lastDiscoveryReason ? `no probe model: ${lastDiscoveryReason}` : "no probe model available",
68368
68387
  ms
68369
68388
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudish",
3
- "version": "7.8.2",
3
+ "version": "7.8.3",
4
4
  "description": "Run Claude Code with any model - OpenRouter, Ollama, LM Studio & local models",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -60,10 +60,10 @@
60
60
  "ai"
61
61
  ],
62
62
  "optionalDependencies": {
63
- "@claudish/magmux-darwin-arm64": "7.8.2",
64
- "@claudish/magmux-darwin-x64": "7.8.2",
65
- "@claudish/magmux-linux-arm64": "7.8.2",
66
- "@claudish/magmux-linux-x64": "7.8.2"
63
+ "@claudish/magmux-darwin-arm64": "7.8.3",
64
+ "@claudish/magmux-darwin-x64": "7.8.3",
65
+ "@claudish/magmux-linux-arm64": "7.8.3",
66
+ "@claudish/magmux-linux-x64": "7.8.3"
67
67
  },
68
68
  "author": "Jack Rudenko <i@madappgang.com>",
69
69
  "license": "MIT",