groove-dev 0.27.28 → 0.27.29
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 +7 -0
- 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/journalist.js +103 -45
- package/node_modules/@groove-dev/daemon/test/journalist.test.js +1 -1
- package/node_modules/@groove-dev/gui/dist/assets/{index-Ch1N9G4Z.js → index-CNsQ3n1t.js} +290 -290
- 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/agents/agent-config.jsx +2 -2
- package/node_modules/@groove-dev/gui/src/views/settings.jsx +2 -2
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/journalist.js +103 -45
- package/packages/gui/dist/assets/{index-Ch1N9G4Z.js → index-CNsQ3n1t.js} +290 -290
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/components/agents/agent-config.jsx +2 -2
- package/packages/gui/src/views/settings.jsx +2 -2
- package/.groove-staging/state.json +0 -3
- package/.groove-staging/timeline.json +0 -13
- package/DECENTRALIZED_NET_WP_V1.md +0 -871
- package/decentralized-net/ACTION_PLAN.md +0 -422
|
@@ -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-CNsQ3n1t.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">
|
|
@@ -366,7 +366,7 @@ export function AgentConfig({ agent }) {
|
|
|
366
366
|
<div className="space-y-1.5">
|
|
367
367
|
{providers.map((p) => {
|
|
368
368
|
const isActive = p.id === agent.provider;
|
|
369
|
-
const available = p.installed || p.hasKey;
|
|
369
|
+
const available = p.authType === 'subscription' ? (p.installed || p.authStatus?.authenticated) : p.authType === 'local' ? p.installed : (p.installed && p.hasKey);
|
|
370
370
|
const isExpanded = expandedProvider === p.id;
|
|
371
371
|
const models = p.models || [];
|
|
372
372
|
return (
|
|
@@ -381,7 +381,7 @@ export function AgentConfig({ agent }) {
|
|
|
381
381
|
{p.name || p.id}
|
|
382
382
|
</span>
|
|
383
383
|
{isActive && <Badge variant="accent" className="text-2xs">Active</Badge>}
|
|
384
|
-
{!available && <span className="text-2xs text-text-4 font-sans">{p.
|
|
384
|
+
{!available && <span className="text-2xs text-text-4 font-sans">{!p.installed ? 'Not installed' : 'No key'}</span>}
|
|
385
385
|
<ChevronDown size={12} className={cn('text-text-4 transition-transform', isExpanded && 'rotate-180')} />
|
|
386
386
|
</button>
|
|
387
387
|
|
|
@@ -52,7 +52,7 @@ function ProviderCard({ provider, onKeyChange }) {
|
|
|
52
52
|
const isSubscription = provider.authType === 'subscription';
|
|
53
53
|
const isReady = isLocal ? provider.installed
|
|
54
54
|
: isSubscription ? (provider.installed || provider.authStatus?.authenticated)
|
|
55
|
-
: provider.hasKey;
|
|
55
|
+
: (provider.installed && provider.hasKey);
|
|
56
56
|
|
|
57
57
|
async function handleSetKey() {
|
|
58
58
|
if (!keyInput.trim()) return;
|
|
@@ -149,7 +149,7 @@ function ProviderCard({ provider, onKeyChange }) {
|
|
|
149
149
|
{isReady ? (
|
|
150
150
|
<Badge variant="success" className="text-2xs gap-1"><Check size={8} /> Ready</Badge>
|
|
151
151
|
) : (
|
|
152
|
-
<Badge variant="default" className="text-2xs">{
|
|
152
|
+
<Badge variant="default" className="text-2xs">{!provider.installed ? 'Not installed' : isSubscription ? 'Not authenticated' : 'No key'}</Badge>
|
|
153
153
|
)}
|
|
154
154
|
</div>
|
|
155
155
|
|