clawmux 0.3.12 → 0.3.13

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/cli.cjs CHANGED
@@ -112220,7 +112220,7 @@ var import_node_child_process = require("node:child_process");
112220
112220
  var import_node_os2 = require("node:os");
112221
112221
 
112222
112222
  // src/proxy/router.ts
112223
- var VERSION = process.env.npm_package_version ?? "0.3.12";
112223
+ var VERSION = process.env.npm_package_version ?? "0.3.13";
112224
112224
  function jsonResponse(body, status = 200) {
112225
112225
  return new Response(JSON.stringify(body), {
112226
112226
  status,
@@ -121270,12 +121270,12 @@ function resolveClawmuxBin() {
121270
121270
  const bin = import_node_child_process.execSync("which clawmux", { encoding: "utf-8" }).trim();
121271
121271
  if (bin.includes("/tmp/") || bin.includes("bunx-") || bin.includes("npx-")) {
121272
121272
  const runtime = detectInstallMethod();
121273
- return runtime === "bun" ? `${resolveBinPath("bunx")} clawmux` : `${resolveBinPath("npx")} clawmux`;
121273
+ return runtime === "bun" ? `${resolveBinPath("bunx")} clawmux@latest` : `${resolveBinPath("npx")} clawmux@latest`;
121274
121274
  }
121275
121275
  return bin;
121276
121276
  } catch {
121277
121277
  const runtime = detectInstallMethod();
121278
- return runtime === "bun" ? `${resolveBinPath("bunx")} clawmux` : `${resolveBinPath("npx")} clawmux`;
121278
+ return runtime === "bun" ? `${resolveBinPath("bunx")} clawmux@latest` : `${resolveBinPath("npx")} clawmux@latest`;
121279
121279
  }
121280
121280
  }
121281
121281
  function getHomeDir3() {
package/dist/index.cjs CHANGED
@@ -112238,7 +112238,7 @@ __export(exports_src2, {
112238
112238
  module.exports = __toCommonJS(exports_src2);
112239
112239
 
112240
112240
  // src/proxy/router.ts
112241
- var VERSION = process.env.npm_package_version ?? "0.3.12";
112241
+ var VERSION = process.env.npm_package_version ?? "0.3.13";
112242
112242
  function jsonResponse(body, status = 200) {
112243
112243
  return new Response(JSON.stringify(body), {
112244
112244
  status,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmux",
3
- "version": "0.3.12",
3
+ "version": "0.3.13",
4
4
  "description": "Smart model routing + context compression proxy for OpenClaw",
5
5
  "type": "module",
6
6
  "bin": {