groove-dev 0.27.159 → 0.27.161

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/CLAUDE.md CHANGED
@@ -295,3 +295,10 @@ Audit-driven release. Multi-agent orchestration system with 7 coordination layer
295
295
  - Dashboard: routing donut, cache panel, context health gauges
296
296
  - Monitor/QC agent mode (stay active, loop)
297
297
  - Distribution: demo video, HN launch, Twitter content
298
+
299
+ <!-- GROOVE:START -->
300
+ ## GROOVE Orchestration (auto-injected)
301
+ Active agents: 0
302
+ See AGENTS_REGISTRY.md for full agent state.
303
+ **Memory policy:** GROOVE manages project memory automatically. Do not read or write MEMORY.md or .groove/memory/ files directly.
304
+ <!-- GROOVE:END -->
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/cli",
3
- "version": "0.27.159",
3
+ "version": "0.27.161",
4
4
  "description": "GROOVE CLI — manage AI coding agents from your terminal",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/daemon",
3
- "version": "0.27.159",
3
+ "version": "0.27.161",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -395,9 +395,9 @@ export class TunnelManager {
395
395
  this.daemon.broadcast({ type: 'tunnel.status', data: { id, step: 'waiting', message: 'Remote daemon not running. Start it manually or enable auto-start.' } });
396
396
  }
397
397
 
398
- // Auto-upgrade: check version through tunnel, upgrade if behind (non-blocking)
398
+ // Auto-upgrade: check version through tunnel, upgrade if behind
399
399
  if (remoteAlive && !preConnectHandled) {
400
- this._checkAndUpgradeRunning(id, config, localPort).catch(() => {});
400
+ await this._checkAndUpgradeRunning(id, config, localPort);
401
401
  }
402
402
 
403
403
  const remoteVer = testResult?.remoteVersion || null;
@@ -451,6 +451,8 @@ export class TunnelManager {
451
451
 
452
452
  async _checkAndUpgradeRunning(id, config, localPort) {
453
453
  try {
454
+ this.daemon.broadcast({ type: 'tunnel.status', data: { id, step: 'checking' } });
455
+
454
456
  // Get remote daemon version
455
457
  const resp = await fetch(`http://localhost:${localPort}/api/status`, {
456
458
  signal: AbortSignal.timeout(5000),