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.
- package/bin/cli.js +4 -0
- 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