clawborrator-cli 0.0.4 → 0.0.5
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 +7 -2
- package/package.json +1 -1
package/dist-bundled/claw.cjs
CHANGED
|
@@ -7207,7 +7207,9 @@ var sessionInit = new Command("init").description("install clawborrator hooks in
|
|
|
7207
7207
|
if (refreshed > 0) console.log(`\u2713 refreshed ${refreshed} command line${refreshed === 1 ? "" : "s"} (e.g. updated to call the local file)`);
|
|
7208
7208
|
if (alreadyPresent > 0) console.log(` (${alreadyPresent} already up-to-date, untouched)`);
|
|
7209
7209
|
console.log("");
|
|
7210
|
-
console.log("next: drop a .mcp.json with your channel token
|
|
7210
|
+
console.log("next: drop a .mcp.json with your channel token (`claw token mint --kind=channel");
|
|
7211
|
+
console.log(" --name=<label> --mcp-snippet > .mcp.json`), then start CC with:");
|
|
7212
|
+
console.log(" claude --dangerously-load-development-channels server:clawborrator");
|
|
7211
7213
|
console.log(" events will flow as you prompt; watch via `claw session attach <id>`.");
|
|
7212
7214
|
});
|
|
7213
7215
|
function removeHooks(settingsPath, hookFile) {
|
|
@@ -7413,6 +7415,9 @@ var tokenMint = new Command("mint").description("create a new token").requiredOp
|
|
|
7413
7415
|
}
|
|
7414
7416
|
}
|
|
7415
7417
|
}, null, 2) + "\n");
|
|
7418
|
+
prose("");
|
|
7419
|
+
prose(" next: launch CC with the clawborrator channel enabled \u2014");
|
|
7420
|
+
prose(" claude --dangerously-load-development-channels server:clawborrator");
|
|
7416
7421
|
}
|
|
7417
7422
|
return;
|
|
7418
7423
|
}
|
|
@@ -7550,7 +7555,7 @@ var webhookCmd = new Command("webhook").description("manage webhook subscription
|
|
|
7550
7555
|
|
|
7551
7556
|
// src/index.ts
|
|
7552
7557
|
var program2 = new Command();
|
|
7553
|
-
program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.
|
|
7558
|
+
program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.5");
|
|
7554
7559
|
program2.addCommand(loginCmd);
|
|
7555
7560
|
program2.addCommand(logoutCmd);
|
|
7556
7561
|
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.5",
|
|
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",
|