groove-dev 0.27.39 → 0.27.40

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-BRZ_leqO.js"></script>
9
+ <script type="module" crossorigin src="/assets/index-zzVaD3-G.js"></script>
10
10
  <link rel="modulepreload" crossorigin href="/assets/vendor-C0HXlhrU.js">
11
11
  <link rel="modulepreload" crossorigin href="/assets/reactflow-BQPfi37R.js">
12
12
  <link rel="modulepreload" crossorigin href="/assets/codemirror-BBL3i_JW.js">
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.27.39",
3
+ "version": "0.27.40",
4
4
  "description": "GROOVE GUI — visual agent control plane",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -25,9 +25,9 @@ export function ActivityBar({ activeView, detailPanel, onNavigate, onTogglePanel
25
25
 
26
26
  return (
27
27
  <nav className="w-12 flex-shrink-0 flex flex-col bg-surface-3 border-r border-border">
28
- {/* Sidebar header — aligns with BreadcrumbBar */}
28
+ {/* Sidebar header — no border (can't cleanly match BreadcrumbBar border due to h-9 vs h-11) */}
29
29
  {darwinTrafficLights && (
30
- <div className="flex-shrink-0 h-9 flex items-end justify-center pb-1.5 border-b border-border">
30
+ <div className="flex-shrink-0 h-9 flex items-end justify-center pb-0.5">
31
31
  <img src="/favicon.png" alt="Groove" className="h-6 w-6 rounded-full" />
32
32
  </div>
33
33
  )}
@@ -1035,8 +1035,13 @@ export const useGrooveStore = create((set, get) => ({
1035
1035
  thinkingAgents: new Set([...s.thinkingAgents, ...launchedAgents.map((a) => a.id)]),
1036
1036
  }));
1037
1037
  }
1038
- // Clean up stale files
1039
- api.post('/cleanup').catch(() => {});
1038
+ // Clean up stale files — scoped to the launched team so plans in other
1039
+ // teams' workspaces survive. The launch endpoint already unlinks the
1040
+ // exact plan it read; this is a belt-and-suspenders sweep.
1041
+ const launchedTeamId = body?.teamId || result?.teamId || null;
1042
+ if (launchedTeamId) {
1043
+ api.post('/cleanup', { teamId: launchedTeamId }).catch(() => {});
1044
+ }
1040
1045
  return result;
1041
1046
  } catch (err) {
1042
1047
  get().addToast('error', 'Launch failed', err.message);