clawborrator-cli 0.0.16 → 0.0.17

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.
@@ -7126,6 +7126,10 @@ function renderEvent(ev, myLogin) {
7126
7126
  }
7127
7127
  if (ev.type === "reply") {
7128
7128
  const text = String(p.text ?? "").trim();
7129
+ if (p.source === "peer-reply" && p.peerLogin) {
7130
+ console.log(`${DIM}[${ts2}]${RESET} ${AMBER}${String(p.peerLogin)} answered${RESET} ${text}`);
7131
+ return;
7132
+ }
7129
7133
  const tag = p.chatId ? `${AMBER}claude${RESET} ${DIM}(reply to ${String(p.chatId).slice(0, 8)})${RESET}` : `${AMBER}claude${RESET}`;
7130
7134
  console.log(`${DIM}[${ts2}]${RESET} ${tag} ${text}`);
7131
7135
  return;
@@ -7653,7 +7657,7 @@ var webhookCmd = new Command("webhook").description("manage webhook subscription
7653
7657
 
7654
7658
  // src/index.ts
7655
7659
  var program2 = new Command();
7656
- program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.16");
7660
+ program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.17");
7657
7661
  program2.addCommand(loginCmd);
7658
7662
  program2.addCommand(logoutCmd);
7659
7663
  program2.addCommand(whoamiCmd);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawborrator-cli",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
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",