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 +7 -0
- package/node_modules/@groove-dev/cli/package.json +1 -1
- package/node_modules/@groove-dev/daemon/package.json +1 -1
- package/node_modules/@groove-dev/daemon/src/tunnel-manager.js +4 -2
- package/node_modules/@groove-dev/gui/dist/assets/{index-Bij9o_dc.js → index-DpRdb7o1.js} +38 -38
- package/node_modules/@groove-dev/gui/dist/index.html +1 -1
- package/node_modules/@groove-dev/gui/package.json +1 -1
- package/node_modules/@groove-dev/gui/src/components/layout/welcome-splash.jsx +9 -1
- package/node_modules/@groove-dev/gui/src/components/settings/quick-connect.jsx +1 -1
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/tunnel-manager.js +4 -2
- package/packages/gui/dist/assets/{index-Bij9o_dc.js → index-DpRdb7o1.js} +38 -38
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/components/layout/welcome-splash.jsx +9 -1
- package/packages/gui/src/components/settings/quick-connect.jsx +1 -1
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 -->
|
|
@@ -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
|
|
398
|
+
// Auto-upgrade: check version through tunnel, upgrade if behind
|
|
399
399
|
if (remoteAlive && !preConnectHandled) {
|
|
400
|
-
this._checkAndUpgradeRunning(id, config, localPort)
|
|
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),
|