groove-dev 0.27.63 → 0.27.64
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 +0 -7
- 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/gui/dist/assets/{index-Zb6PcuaY.js → index-DiiEKVEo.js} +1 -1
- 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/network/compute-header.jsx +29 -22
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/gui/dist/assets/{index-Zb6PcuaY.js → index-DiiEKVEo.js} +1 -1
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/components/network/compute-header.jsx +29 -22
- package/ui.png +0 -0
|
@@ -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-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-DiiEKVEo.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">
|
|
@@ -118,8 +118,8 @@ const SPARKLINE_ROWS = [
|
|
|
118
118
|
function TrendsColumn({ snapshots }) {
|
|
119
119
|
const hasData = snapshots && snapshots.length >= 2;
|
|
120
120
|
return (
|
|
121
|
-
<div className="flex flex-col gap-
|
|
122
|
-
<div className="text-2xs font-mono text-text-3 uppercase tracking-
|
|
121
|
+
<div className="flex flex-col gap-1.5 min-w-0">
|
|
122
|
+
<div className="text-2xs font-mono text-text-3 uppercase tracking-widest mb-1.5">Trends</div>
|
|
123
123
|
{!hasData ? (
|
|
124
124
|
<div className="text-2xs font-mono text-text-4">Collecting data…</div>
|
|
125
125
|
) : (
|
|
@@ -128,7 +128,7 @@ function TrendsColumn({ snapshots }) {
|
|
|
128
128
|
const current = data[data.length - 1].v;
|
|
129
129
|
const display = Number.isInteger(current) ? current : current.toFixed(2);
|
|
130
130
|
return (
|
|
131
|
-
<div key={row.key} className="flex items-center gap-2">
|
|
131
|
+
<div key={row.key} className="flex items-center gap-2 bg-surface-1 rounded px-2 py-1">
|
|
132
132
|
<span className="w-[72px] text-2xs font-mono text-text-3 uppercase truncate flex-shrink-0">{row.label}</span>
|
|
133
133
|
<MiniSparkline data={data} color={row.color} width={140} height={24} />
|
|
134
134
|
<span className="text-2xs font-mono text-text-1 tabular-nums flex-shrink-0">{display}</span>
|
|
@@ -143,8 +143,8 @@ function TrendsColumn({ snapshots }) {
|
|
|
143
143
|
function YourNodeColumn({ node, compute }) {
|
|
144
144
|
if (!node || !node.active) {
|
|
145
145
|
return (
|
|
146
|
-
<div className="flex flex-col gap-
|
|
147
|
-
<div className="text-2xs font-mono text-text-3 uppercase tracking-
|
|
146
|
+
<div className="flex flex-col gap-1.5 min-w-0">
|
|
147
|
+
<div className="text-2xs font-mono text-text-3 uppercase tracking-widest mb-1.5">Your Node</div>
|
|
148
148
|
<div className="text-2xs font-mono text-text-4">Node idle</div>
|
|
149
149
|
</div>
|
|
150
150
|
);
|
|
@@ -168,9 +168,9 @@ function YourNodeColumn({ node, compute }) {
|
|
|
168
168
|
|
|
169
169
|
return (
|
|
170
170
|
<div className="flex flex-col gap-1.5 min-w-0">
|
|
171
|
-
<div className="text-2xs font-mono text-text-3 uppercase tracking-
|
|
171
|
+
<div className="text-2xs font-mono text-text-3 uppercase tracking-widest mb-1.5">Your Node</div>
|
|
172
172
|
{metrics.map((m) => (
|
|
173
|
-
<div key={m.label} className="min-w-0">
|
|
173
|
+
<div key={m.label} className="bg-surface-1 rounded px-2.5 py-1.5 min-w-0">
|
|
174
174
|
<div className="text-2xs font-mono text-text-4 uppercase tracking-wider leading-none">{m.label}</div>
|
|
175
175
|
<div className="text-xs font-mono text-text-1 truncate leading-tight">{m.value}</div>
|
|
176
176
|
</div>
|
|
@@ -184,22 +184,29 @@ function BarsTrendsNode({ compute, allZero, avgGpuUtil }) {
|
|
|
184
184
|
const node = useGrooveStore((s) => s.networkNode);
|
|
185
185
|
|
|
186
186
|
return (
|
|
187
|
-
<div className="bg-surface-1 border-b border-border px-4 py-
|
|
188
|
-
<div className="
|
|
189
|
-
|
|
190
|
-
<div className="text-2xs font-mono text-text-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
187
|
+
<div className="bg-surface-1 border-b border-border px-4 py-3" style={{ display: 'grid', gridTemplateColumns: '1fr 1.4fr 1fr', gap: '1.5rem' }}>
|
|
188
|
+
<div className="bg-surface-0 rounded border border-border-subtle px-3 py-2.5">
|
|
189
|
+
<div className="flex flex-col gap-0.5 min-w-0">
|
|
190
|
+
<div className="text-2xs font-mono text-text-3 uppercase tracking-widest mb-1.5">Resources</div>
|
|
191
|
+
{allZero ? (
|
|
192
|
+
<div className="text-2xs font-mono text-text-4">Waiting for network data...</div>
|
|
193
|
+
) : (
|
|
194
|
+
<>
|
|
195
|
+
<AsciiBar label="RAM" value={compute.totalRamMb} max={MAX_RAM_MB} unit="GB" nodeCount={compute.totalNodes} />
|
|
196
|
+
<AsciiBar label="VRAM" value={compute.totalVramMb} max={MAX_VRAM_MB} unit="GB" nodeCount={compute.totalNodes} />
|
|
197
|
+
<AsciiBar label="CPU" value={compute.totalCpuCores} max={MAX_CPU} unit="cores" />
|
|
198
|
+
<AsciiBar label="GPU%" value={avgGpuUtil} max={100} unit="%" />
|
|
199
|
+
<AsciiBar label="LOAD" value={compute.avgLoad} max={MAX_LOAD} unit="" />
|
|
200
|
+
</>
|
|
201
|
+
)}
|
|
202
|
+
</div>
|
|
203
|
+
</div>
|
|
204
|
+
<div className="bg-surface-0 rounded border border-border-subtle px-3 py-2.5">
|
|
205
|
+
<TrendsColumn snapshots={snapshots} />
|
|
206
|
+
</div>
|
|
207
|
+
<div className="bg-surface-0 rounded border border-border-subtle px-3 py-2.5">
|
|
208
|
+
<YourNodeColumn node={node} compute={compute} />
|
|
200
209
|
</div>
|
|
201
|
-
<TrendsColumn snapshots={snapshots} />
|
|
202
|
-
<YourNodeColumn node={node} compute={compute} />
|
|
203
210
|
</div>
|
|
204
211
|
);
|
|
205
212
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groove-dev",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.64",
|
|
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)",
|