clawborrator-cli 0.0.14 → 0.0.15
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/dist-bundled/claw.cjs +3 -1
- package/package.json +1 -1
package/dist-bundled/claw.cjs
CHANGED
|
@@ -7276,6 +7276,8 @@ var sessionList = new Command("list").alias("ls").description("list sessions you
|
|
|
7276
7276
|
console.log(" recent hook/chat: claw session events <ref>");
|
|
7277
7277
|
console.log(" operator-to-op chat: claw session messages <ref>");
|
|
7278
7278
|
console.log(" <ref> = UUID, @owner/slug, @slug, or bare slug");
|
|
7279
|
+
console.log(" (PowerShell tip: use the bare-slug form \u2014 `@driver` is parsed as");
|
|
7280
|
+
console.log(" a splatting operator and stripped before reaching the CLI)");
|
|
7279
7281
|
});
|
|
7280
7282
|
var sessionInfo = new Command("info").description("show metadata for a single session").argument("<ref>", "session UUID or @routingName").action(async (ref) => {
|
|
7281
7283
|
const id = await resolveSessionId(ref);
|
|
@@ -7644,7 +7646,7 @@ var webhookCmd = new Command("webhook").description("manage webhook subscription
|
|
|
7644
7646
|
|
|
7645
7647
|
// src/index.ts
|
|
7646
7648
|
var program2 = new Command();
|
|
7647
|
-
program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.
|
|
7649
|
+
program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.15");
|
|
7648
7650
|
program2.addCommand(loginCmd);
|
|
7649
7651
|
program2.addCommand(logoutCmd);
|
|
7650
7652
|
program2.addCommand(whoamiCmd);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawborrator-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
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",
|