clawborrator-cli 0.2.8 → 0.2.9

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.
@@ -69369,6 +69369,7 @@ var desktopDelete = new Command("delete").description("hard-delete a desktop dae
69369
69369
  const answer = await new Promise((res) => {
69370
69370
  process.stdin.once("data", (d) => res(d.toString().trim().toLowerCase()));
69371
69371
  });
69372
+ process.stdin.pause();
69372
69373
  if (answer !== "y" && answer !== "yes") {
69373
69374
  console.log("cancelled");
69374
69375
  return;
@@ -69404,7 +69405,7 @@ function fmtAgo4(iso) {
69404
69405
 
69405
69406
  // src/index.ts
69406
69407
  var program2 = new Command();
69407
- program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.2.8");
69408
+ program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.2.9");
69408
69409
  program2.addCommand(loginCmd);
69409
69410
  program2.addCommand(logoutCmd);
69410
69411
  program2.addCommand(whoamiCmd);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawborrator-cli",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "type": "module",
5
5
  "description": "claw — command-line client for clawborrator. Attach to remote Claude Code sessions, send prompts, resolve permission gates, route across sessions, manage public agents and webhooks. Auth via GitHub OAuth + PKCE.",
6
6
  "license": "MIT",