@rigstate/cli 0.7.12 → 0.7.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rigstate/cli",
3
- "version": "0.7.12",
3
+ "version": "0.7.13",
4
4
  "description": "Rigstate CLI - Code audit, sync and supervision tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -69,7 +69,12 @@ export class GuardianDaemon extends EventEmitter {
69
69
 
70
70
  // 4. Setup Bridge
71
71
  if (this.config.bridgeEnabled) {
72
- await this.setupBridge();
72
+ try {
73
+ await this.setupBridge();
74
+ } catch (e: any) {
75
+ console.error(chalk.yellow(` ⚠️ Agent Bridge connection failed: ${e.message}`));
76
+ console.log(chalk.dim(' (Daemon will continue with local monitoring only)'));
77
+ }
73
78
  }
74
79
 
75
80
  this.printActive();