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.
- 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/daemon/src/integrations.js +2 -2
- package/node_modules/@groove-dev/gui/dist/assets/{index-BoIbnaqa.js → index-B9oPxmNj.js} +21 -21
- 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/views/settings.jsx +5 -4
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/integrations.js +2 -2
- package/packages/gui/dist/assets/{index-BoIbnaqa.js → index-B9oPxmNj.js} +21 -21
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/views/settings.jsx +5 -4
|
@@ -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-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">
|
|
@@ -1081,7 +1081,8 @@ export default function SettingsView() {
|
|
|
1081
1081
|
);
|
|
1082
1082
|
}
|
|
1083
1083
|
|
|
1084
|
-
const
|
|
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}/{
|
|
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
|
-
{
|
|
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
|
-
{
|
|
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.
|
|
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)",
|
|
@@ -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,
|