clawborrator-cli 0.0.30 → 0.0.31

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.
@@ -67852,6 +67852,7 @@ var sessionAttach = new Command("attach").description("open a TUI on a session \
67852
67852
  const out2 = { type: "prompt", sessionId, text: promptText };
67853
67853
  ws.send(JSON.stringify(out2));
67854
67854
  say(`${DIM2}[${ts()}]${RESET2} ${AMBER}\u2192 prompt sent${RESET2} ${promptText}`);
67855
+ startWorking();
67855
67856
  return;
67856
67857
  }
67857
67858
  if (text.startsWith("/")) {
@@ -67909,6 +67910,7 @@ var sessionAttach = new Command("attach").description("open a TUI on a session \
67909
67910
  };
67910
67911
  ws.send(JSON.stringify(out2));
67911
67912
  say(`${DIM2}[${ts()}]${RESET2} ${AMBER}\u2192 prompt \u2192 ${targetRef}${RESET2} ${promptText}`);
67913
+ startWorking();
67912
67914
  } catch (e) {
67913
67915
  sayErr(`${RED}error: ${e?.message ?? String(e)}${RESET2}`);
67914
67916
  }
@@ -67918,6 +67920,7 @@ var sessionAttach = new Command("attach").description("open a TUI on a session \
67918
67920
  const out = { type: "prompt", sessionId, text };
67919
67921
  ws.send(JSON.stringify(out));
67920
67922
  say(`${DIM2}[${ts()}]${RESET2} ${AMBER}\u2192 prompt${RESET2} ${text}`);
67923
+ startWorking();
67921
67924
  });
67922
67925
  process.on("SIGINT", () => {
67923
67926
  ws.close(1e3, "sigint");
@@ -68584,7 +68587,7 @@ var webhookCmd = new Command("webhook").description("manage webhook subscription
68584
68587
 
68585
68588
  // src/index.ts
68586
68589
  var program2 = new Command();
68587
- program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.30");
68590
+ program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.31");
68588
68591
  program2.addCommand(loginCmd);
68589
68592
  program2.addCommand(logoutCmd);
68590
68593
  program2.addCommand(whoamiCmd);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawborrator-cli",
3
- "version": "0.0.30",
3
+ "version": "0.0.31",
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",