groove-dev 0.25.9 → 0.25.10

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.
@@ -5,7 +5,7 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <link rel="icon" type="image/png" href="/favicon.png" />
7
7
  <title>Groove GUI</title>
8
- <script type="module" crossorigin src="/assets/index-D67eFTek.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-Cg1mJi9s.js"></script>
9
9
  <link rel="modulepreload" crossorigin href="/assets/vendor-C0HXlhrU.js">
10
10
  <link rel="modulepreload" crossorigin href="/assets/reactflow-BQPfi37R.js">
11
11
  <link rel="modulepreload" crossorigin href="/assets/codemirror-BBL3i_JW.js">
@@ -120,7 +120,15 @@ export const useGrooveStore = create((set, get) => ({
120
120
  if (arr.length > 200) timeline[agent.id] = arr.slice(-200);
121
121
  }
122
122
  }
123
- set({ agents: msg.data, tokenTimeline: timeline, hydrated: true });
123
+ // Only replace agents array if something meaningful changed
124
+ // (prevents React Flow tree flicker on every lastActivity update)
125
+ const prev = get().agents;
126
+ const changed = msg.data.length !== prev.length || msg.data.some((a, i) => {
127
+ const p = prev[i];
128
+ return !p || p.id !== a.id || p.status !== a.status || p.tokensUsed !== a.tokensUsed
129
+ || p.contextUsage !== a.contextUsage || p.name !== a.name || p.model !== a.model;
130
+ });
131
+ set({ agents: changed ? msg.data : prev, tokenTimeline: timeline, hydrated: true });
124
132
  break;
125
133
  }
126
134
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "groove-dev",
3
- "version": "0.25.9",
3
+ "version": "0.25.10",
4
4
  "description": "Open-source agent orchestration layer — the AI company OS. 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.",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "author": "Groove Dev <hello@groovedev.ai> (https://groovedev.ai)",