clawborrator-cli 0.0.34 → 0.0.35

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.
@@ -68013,6 +68013,12 @@ function printInbound(msg, myLogin) {
68013
68013
  say(`${DIM2}[${ts()}] presence: ${msg.attached.map((l) => "@" + l).join(", ") || "(empty)"}${RESET2}`);
68014
68014
  break;
68015
68015
  }
68016
+ case "channel_status": {
68017
+ const tag2 = msg.connected ? `${GREEN}\u25CF channel online${RESET2}` : `${RED}\u25CB channel offline${RESET2}`;
68018
+ say(`${DIM2}[${shortTs(msg.ts)}]${RESET2} ${tag2}`);
68019
+ if (!msg.connected) stopWorking();
68020
+ break;
68021
+ }
68016
68022
  case "ack":
68017
68023
  break;
68018
68024
  case "error":
@@ -68649,7 +68655,7 @@ var webhookCmd = new Command("webhook").description("manage webhook subscription
68649
68655
 
68650
68656
  // src/index.ts
68651
68657
  var program2 = new Command();
68652
- program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.34");
68658
+ program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.35");
68653
68659
  program2.addCommand(loginCmd);
68654
68660
  program2.addCommand(logoutCmd);
68655
68661
  program2.addCommand(whoamiCmd);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawborrator-cli",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "type": "module",
5
5
  "description": "claw — command-line client for clawborrator hub_v1. Manages PATs, channel tokens, sessions, cross-session routing, and webhooks; ships an inline TUI for live multi-operator session attach.",
6
6
  "license": "MIT",