claude-bridge-cli 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/bin/cli.js +4 -0
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -117,6 +117,10 @@ async function run(config) {
117
117
  // Start bridge HTTP server
118
118
  const bridge = await startBridge(config);
119
119
  console.log(`[bridge] Bridge ready on http://${config.host}:${config.port}`);
120
+ if (!config.relay) {
121
+ console.log(`[bridge] Bearer token: ${config.bearerToken}`);
122
+ console.log(`[bridge] Use this token when adding the endpoint in the extension.`);
123
+ }
120
124
 
121
125
  // Start relay client if configured
122
126
  if (config.relay) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-bridge-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Use Claude Code from your browser. Runs a local server that connects your browser tools to the Claude CLI.",
5
5
  "main": "lib/bridge.js",
6
6
  "bin": {