groove-dev 0.27.45 → 0.27.47

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-BoIbnaqa.js"></script>
9
+ <script type="module" crossorigin src="/assets/index-B9oPxmNj.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.45",
3
+ "version": "0.27.47",
4
4
  "description": "GROOVE GUI — visual agent control plane",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -1081,7 +1081,8 @@ export default function SettingsView() {
1081
1081
  );
1082
1082
  }
1083
1083
 
1084
- const connectedCount = providers.filter((p) => {
1084
+ const visibleProviders = providers.filter((p) => p.id !== 'groove-network');
1085
+ const connectedCount = visibleProviders.filter((p) => {
1085
1086
  if (p.authType === 'local') return p.installed;
1086
1087
  if (p.authType === 'subscription') return p.installed;
1087
1088
  return p.installed && p.hasKey;
@@ -1117,10 +1118,10 @@ export default function SettingsView() {
1117
1118
  <div className="flex items-center gap-2 mb-2.5 px-0.5">
1118
1119
  <span className="text-2xs font-semibold text-text-3 font-sans uppercase tracking-wider">Providers</span>
1119
1120
  <div className="flex-1 h-px bg-border-subtle" />
1120
- <span className="text-2xs text-text-4 font-sans">{connectedCount}/{providers.length} connected</span>
1121
+ <span className="text-2xs text-text-4 font-sans">{connectedCount}/{visibleProviders.length} connected</span>
1121
1122
  </div>
1122
1123
  <div className="grid grid-cols-4 gap-3">
1123
- {providers.map((p) => (
1124
+ {visibleProviders.map((p) => (
1124
1125
  <ProviderCard key={p.id} provider={p} onKeyChange={loadProviders} />
1125
1126
  ))}
1126
1127
  </div>
@@ -1159,7 +1160,7 @@ export default function SettingsView() {
1159
1160
  onChange={(e) => updateConfig('defaultProvider', e.target.value)}
1160
1161
  className="w-full h-8 px-2.5 text-xs bg-surface-0 border border-border-subtle rounded-md text-text-0 font-mono focus:outline-none focus:ring-1 focus:ring-accent cursor-pointer"
1161
1162
  >
1162
- {providers.filter((p) => p.installed && (p.authType === 'local' || p.authType === 'subscription' || p.hasKey)).map((p) => (
1163
+ {visibleProviders.filter((p) => p.installed && (p.authType === 'local' || p.authType === 'subscription' || p.hasKey)).map((p) => (
1163
1164
  <option key={p.id} value={p.id}>{p.name}</option>
1164
1165
  ))}
1165
1166
  </select>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "groove-dev",
3
- "version": "0.27.45",
3
+ "version": "0.27.47",
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.45",
3
+ "version": "0.27.47",
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.45",
3
+ "version": "0.27.47",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -128,7 +128,7 @@ export class IntegrationStore {
128
128
 
129
129
  if (entry.npmPackage) {
130
130
  try {
131
- execFileSync('npm', ['install', entry.npmPackage], {
131
+ execFileSync('npm', ['install', '--legacy-peer-deps', entry.npmPackage], {
132
132
  cwd: this.integrationsDir,
133
133
  stdio: 'pipe',
134
134
  timeout: 120_000,
@@ -165,7 +165,7 @@ export class IntegrationStore {
165
165
  const entry = this.registry.find((s) => s.id === integrationId);
166
166
  if (entry?.npmPackage) {
167
167
  try {
168
- execFileSync('npm', ['uninstall', entry.npmPackage], {
168
+ execFileSync('npm', ['uninstall', '--legacy-peer-deps', entry.npmPackage], {
169
169
  cwd: this.integrationsDir,
170
170
  stdio: 'pipe',
171
171
  timeout: 60_000,