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.
@@ -6,7 +6,7 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <link rel="icon" type="image/png" href="/favicon.png" />
8
8
  <title>Groove GUI</title>
9
- <script type="module" crossorigin src="/assets/index-Bij9o_dc.js"></script>
9
+ <script type="module" crossorigin src="/assets/index-DpRdb7o1.js"></script>
10
10
  <link rel="modulepreload" crossorigin href="/assets/vendor-26L3JoZv.js">
11
11
  <link rel="modulepreload" crossorigin href="/assets/reactflow-DoBZjiHE.js">
12
12
  <link rel="modulepreload" crossorigin href="/assets/codemirror-BYKpdS2W.js">
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.27.159",
3
+ "version": "0.27.161",
4
4
  "description": "GROOVE GUI — visual agent control plane",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -41,6 +41,7 @@ export function WelcomeSplash() {
41
41
  const toggleQuickConnect = useGrooveStore((s) => s.toggleQuickConnect);
42
42
  const addToast = useGrooveStore((s) => s.addToast);
43
43
 
44
+ const tunnelStep = useGrooveStore((s) => s.tunnelConnectStep);
44
45
  const [browsing, setBrowsing] = useState(false);
45
46
  const [connectingId, setConnectingId] = useState(null);
46
47
 
@@ -216,7 +217,14 @@ export function WelcomeSplash() {
216
217
  </button>
217
218
  <div className="flex items-center gap-1.5 flex-shrink-0">
218
219
  {connectingId === server.id ? (
219
- <Loader2 size={14} className="text-text-3 animate-spin" />
220
+ <div className="flex items-center gap-1.5">
221
+ <Loader2 size={14} className="text-text-3 animate-spin" />
222
+ {tunnelStep?.id === server.id && tunnelStep?.step && (
223
+ <span className="text-2xs text-text-3 font-sans">
224
+ {{ testing: 'Testing…', installing: 'Installing…', checking: 'Checking for updates…', upgrading: 'Updating remote…', starting: 'Starting daemon…', connecting: 'Connecting…', forwarding: 'Establishing tunnel…' }[tunnelStep.step] || tunnelStep.step}
225
+ </span>
226
+ )}
227
+ </div>
220
228
  ) : server.active ? (
221
229
  <>
222
230
  <button
@@ -191,7 +191,7 @@ export function QuickConnect() {
191
191
  <Loader2 size={14} className="text-text-3 animate-spin" />
192
192
  {tunnelStep?.id === server.id && tunnelStep?.step && (
193
193
  <span className="text-2xs text-text-3 font-sans">
194
- {{ testing: 'Testing…', installing: 'Installing…', upgrading: 'Updating remote…', starting: 'Starting daemon…', connecting: 'Connecting…', forwarding: 'Establishing tunnel…' }[tunnelStep.step] || tunnelStep.step}
194
+ {{ testing: 'Testing…', installing: 'Installing…', checking: 'Checking for updates…', upgrading: 'Updating remote…', starting: 'Starting daemon…', connecting: 'Connecting…', forwarding: 'Establishing tunnel…' }[tunnelStep.step] || tunnelStep.step}
195
195
  </span>
196
196
  )}
197
197
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "groove-dev",
3
- "version": "0.27.159",
3
+ "version": "0.27.161",
4
4
  "description": "Open-source agent orchestration layer — the AI company OS. Local model agent engine (GGUF/Ollama/llama-server), HuggingFace model browser, MCP integrations (Slack, Gmail, Stripe, 15+), agent scheduling (cron), business roles (CMO, CFO, EA). GUI dashboard, multi-agent coordination, zero cold-start, infinite sessions. Works with Claude Code, Codex, Gemini CLI, Ollama, any local model.",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "author": "Groove Dev <hello@groovedev.ai> (https://groovedev.ai)",
@@ -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),