clawmux 0.3.6 → 0.3.7

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/README.md CHANGED
@@ -138,8 +138,9 @@ Tests are co-located with source files as `*.test.ts`.
138
138
 
139
139
  ## Uninstall
140
140
 
141
- Fetch the uninstallation guide and follow it:
141
+ Copy and paste this into your OpenClaw agent:
142
142
 
143
143
  ```bash
144
- curl -fsSL https://raw.githubusercontent.com/HyeokjaeLee/ClawMux/refs/heads/main/docs/guide/uninstallation.md
144
+ Uninstall ClawMux by following the instructions here:
145
+ curl -s https://raw.githubusercontent.com/HyeokjaeLee/ClawMux/refs/heads/main/docs/guide/uninstallation.md
145
146
  ```
package/dist/cli.cjs CHANGED
@@ -85,7 +85,7 @@ var import_node_child_process = require("node:child_process");
85
85
  var import_node_os = require("node:os");
86
86
 
87
87
  // src/proxy/router.ts
88
- var VERSION = "0.1.0";
88
+ var VERSION = process.env.npm_package_version ?? "0.3.7";
89
89
  function jsonResponse(body, status = 200) {
90
90
  return new Response(JSON.stringify(body), {
91
91
  status,
@@ -4116,7 +4116,7 @@ function getLogDir() {
4116
4116
  }
4117
4117
 
4118
4118
  // src/cli.ts
4119
- var VERSION2 = process.env.npm_package_version ?? "0.3.6";
4119
+ var VERSION2 = process.env.npm_package_version ?? "__CLAWMUX_VERSION__";
4120
4120
  var SERVICE_NAME = "clawmux";
4121
4121
  var HELP = `Usage: clawmux <command>
4122
4122
 
package/dist/index.cjs CHANGED
@@ -108,7 +108,7 @@ __export(exports_src, {
108
108
  module.exports = __toCommonJS(exports_src);
109
109
 
110
110
  // src/proxy/router.ts
111
- var VERSION = "0.1.0";
111
+ var VERSION = process.env.npm_package_version ?? "0.3.7";
112
112
  function jsonResponse(body, status = 200) {
113
113
  return new Response(JSON.stringify(body), {
114
114
  status,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmux",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "description": "Smart model routing + context compression proxy for OpenClaw",
5
5
  "type": "module",
6
6
  "bin": {