clawmux 0.3.3 → 0.3.4
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 +1 -1
- package/dist/cli.cjs +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Smart model routing + context compression proxy for OpenClaw.
|
|
|
17
17
|
Copy and paste this into your OpenClaw agent:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
Install and configure
|
|
20
|
+
Install and configure ClawMux by following the instructions here:
|
|
21
21
|
curl -s https://raw.githubusercontent.com/HyeokjaeLee/ClawMux/refs/heads/main/docs/guide/installation.md
|
|
22
22
|
```
|
|
23
23
|
|
package/dist/cli.cjs
CHANGED
|
@@ -3942,7 +3942,7 @@ function getLogDir() {
|
|
|
3942
3942
|
}
|
|
3943
3943
|
|
|
3944
3944
|
// src/cli.ts
|
|
3945
|
-
var VERSION2 = process.env.npm_package_version ?? "0.3.
|
|
3945
|
+
var VERSION2 = process.env.npm_package_version ?? "0.3.4";
|
|
3946
3946
|
var SERVICE_NAME = "clawmux";
|
|
3947
3947
|
var HELP = `Usage: clawmux <command>
|
|
3948
3948
|
|
|
@@ -4319,7 +4319,8 @@ Next steps:`);
|
|
|
4319
4319
|
console.log(" 2. ClawMux is running and will auto-start on boot");
|
|
4320
4320
|
console.log(" Check status: clawmux status");
|
|
4321
4321
|
}
|
|
4322
|
-
console.log(" 3.
|
|
4322
|
+
console.log(" 3. Ask the user whether to switch agent and session models to clawmux/auto,");
|
|
4323
|
+
console.log(" then use the openclaw CLI to apply their choice per agent.");
|
|
4323
4324
|
console.log(" 4. Start chatting: openclaw chat");
|
|
4324
4325
|
}
|
|
4325
4326
|
async function start() {
|