clawborrator-cli 0.0.41 → 0.0.42
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 -3
- package/package.json +1 -1
package/dist-bundled/claw.cjs
CHANGED
|
@@ -68618,11 +68618,11 @@ function fmtAgo2(iso) {
|
|
|
68618
68618
|
// src/commands/peers.ts
|
|
68619
68619
|
var peersCmd = new Command("peers").description("list your sessions reachable for cross-session routing \u2014 own + shared").action(async () => {
|
|
68620
68620
|
const data = await api.get("/api/v1/peers");
|
|
68621
|
-
if (data.
|
|
68621
|
+
if (data.items.length === 0) {
|
|
68622
68622
|
console.log("no peers (no sessions registered yet)");
|
|
68623
68623
|
return;
|
|
68624
68624
|
}
|
|
68625
|
-
for (const p of data.
|
|
68625
|
+
for (const p of data.items) {
|
|
68626
68626
|
const dot = p.online ? "\u25CF" : "\u25CB";
|
|
68627
68627
|
const where = p.cwd ? ` ${p.cwd}` : "";
|
|
68628
68628
|
const qualifiedName = `@${p.ownerLogin}/${p.routingName.replace(/^@/, "")}`;
|
|
@@ -68716,7 +68716,7 @@ var webhookCmd = new Command("webhook").description("manage webhook subscription
|
|
|
68716
68716
|
|
|
68717
68717
|
// src/index.ts
|
|
68718
68718
|
var program2 = new Command();
|
|
68719
|
-
program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.
|
|
68719
|
+
program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.42");
|
|
68720
68720
|
program2.addCommand(loginCmd);
|
|
68721
68721
|
program2.addCommand(logoutCmd);
|
|
68722
68722
|
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.42",
|
|
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",
|