blits-bridge 0.1.0 → 0.1.2

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/dist/bridge.js +9 -1
  2. package/package.json +1 -1
package/dist/bridge.js CHANGED
@@ -39,7 +39,15 @@ class BlitsBridge {
39
39
  }
40
40
  this.ws.on('open', () => {
41
41
  console.log('✅ Подключён к Blits');
42
- console.log('⏳ Ожидаю задачи... (Ctrl+C для выхода)');
42
+ console.log('');
43
+ console.log('┌──────────────────────────────────────────────┐');
44
+ console.log('│ Не закрывайте это окно! │');
45
+ console.log('│ Bridge работает — вернитесь в Blits.app │');
46
+ console.log('│ │');
47
+ console.log('│ Ctrl+C для отключения │');
48
+ console.log('└──────────────────────────────────────────────┘');
49
+ console.log('');
50
+ console.log('⏳ Ожидаю задачи...');
43
51
  console.log('');
44
52
  this.reconnecting = false;
45
53
  this.startHeartbeat();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blits-bridge",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Bridge between Blits platform and local Claude CLI. Runs Claude API calls through your subscription.",
5
5
  "bin": {
6
6
  "blits-bridge": "./dist/cli.js"