clawculator 2.5.0 → 2.5.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.
- package/bin/clawculator.js +2 -0
- package/package.json +1 -1
package/bin/clawculator.js
CHANGED
|
@@ -64,6 +64,8 @@ async function main() {
|
|
|
64
64
|
console.log(BANNER);
|
|
65
65
|
if (flags.live) {
|
|
66
66
|
console.log(BANNER);
|
|
67
|
+
console.log(` ${D}💡 Tip: Run this in a tmux pane alongside your main session${R}`);
|
|
68
|
+
console.log(` ${D} tmux split-window -h "npx clawculator --live"${R}\n`);
|
|
67
69
|
const { startLiveDashboard } = require('../src/liveDashboard');
|
|
68
70
|
startLiveDashboard({ openclawHome });
|
|
69
71
|
return; // dashboard runs until user quits
|
package/package.json
CHANGED