groove-dev 0.12.5 → 0.12.6

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.
@@ -25,9 +25,33 @@ export function isFirstRun(grooveDir) {
25
25
  export function printWelcome(port, host = '127.0.0.1', firstRun = false) {
26
26
  const providers = listProviders();
27
27
  const installed = providers.filter((p) => p.installed);
28
+ const notInstalled = providers.filter((p) => !p.installed);
28
29
 
29
30
  console.log('');
30
- console.log(' GROOVE');
31
+ console.log(' ┌─────────────────────────────────────┐');
32
+ console.log(' │ Welcome to GROOVE │');
33
+ console.log(' │ Agent orchestration for AI coding │');
34
+ console.log(' └─────────────────────────────────────┘');
35
+ console.log('');
36
+
37
+ if (installed.length > 0) {
38
+ console.log(` Providers (${installed.length} ready):`);
39
+ for (const p of installed) {
40
+ console.log(` ✓ ${p.name}`);
41
+ }
42
+ } else {
43
+ console.log(' No AI providers detected.');
44
+ console.log(' Install at least one: npm i -g @anthropic-ai/claude-code');
45
+ }
46
+
47
+ if (notInstalled.length > 0) {
48
+ console.log('');
49
+ console.log(' Available to install:');
50
+ for (const p of notInstalled) {
51
+ console.log(` · ${p.name.padEnd(18)} ${p.installCommand}`);
52
+ }
53
+ }
54
+
31
55
  console.log('');
32
56
 
33
57
  const isRemote = host !== '127.0.0.1';
@@ -72,18 +96,6 @@ export function printWelcome(port, host = '127.0.0.1', firstRun = false) {
72
96
 
73
97
  console.log(` Stop: groove stop (or Ctrl+C)`);
74
98
  console.log(` Docs: https://docs.groovedev.ai`);
75
-
76
- // Show providers only on first run or if none installed
77
- if (firstRun || installed.length === 0) {
78
- console.log('');
79
- if (installed.length > 0) {
80
- console.log(` Providers: ${installed.map((p) => p.name).join(', ')}`);
81
- } else {
82
- console.log(' No AI providers detected.');
83
- console.log(' Install one: npm i -g @anthropic-ai/claude-code');
84
- }
85
- }
86
-
87
99
  console.log('');
88
100
  }
89
101
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "groove-dev",
3
- "version": "0.12.5",
3
+ "version": "0.12.6",
4
4
  "description": "Open-source agent orchestration layer for AI coding tools. GUI dashboard, multi-agent coordination, zero cold-start (Journalist), infinite sessions (adaptive context rotation), AI Project Manager, Quick Launch. Works with Claude Code, Codex, Gemini CLI, Ollama.",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "author": "Groove Dev <hello@groovedev.ai> (https://groovedev.ai)",
@@ -25,9 +25,33 @@ export function isFirstRun(grooveDir) {
25
25
  export function printWelcome(port, host = '127.0.0.1', firstRun = false) {
26
26
  const providers = listProviders();
27
27
  const installed = providers.filter((p) => p.installed);
28
+ const notInstalled = providers.filter((p) => !p.installed);
28
29
 
29
30
  console.log('');
30
- console.log(' GROOVE');
31
+ console.log(' ┌─────────────────────────────────────┐');
32
+ console.log(' │ Welcome to GROOVE │');
33
+ console.log(' │ Agent orchestration for AI coding │');
34
+ console.log(' └─────────────────────────────────────┘');
35
+ console.log('');
36
+
37
+ if (installed.length > 0) {
38
+ console.log(` Providers (${installed.length} ready):`);
39
+ for (const p of installed) {
40
+ console.log(` ✓ ${p.name}`);
41
+ }
42
+ } else {
43
+ console.log(' No AI providers detected.');
44
+ console.log(' Install at least one: npm i -g @anthropic-ai/claude-code');
45
+ }
46
+
47
+ if (notInstalled.length > 0) {
48
+ console.log('');
49
+ console.log(' Available to install:');
50
+ for (const p of notInstalled) {
51
+ console.log(` · ${p.name.padEnd(18)} ${p.installCommand}`);
52
+ }
53
+ }
54
+
31
55
  console.log('');
32
56
 
33
57
  const isRemote = host !== '127.0.0.1';
@@ -72,18 +96,6 @@ export function printWelcome(port, host = '127.0.0.1', firstRun = false) {
72
96
 
73
97
  console.log(` Stop: groove stop (or Ctrl+C)`);
74
98
  console.log(` Docs: https://docs.groovedev.ai`);
75
-
76
- // Show providers only on first run or if none installed
77
- if (firstRun || installed.length === 0) {
78
- console.log('');
79
- if (installed.length > 0) {
80
- console.log(` Providers: ${installed.map((p) => p.name).join(', ')}`);
81
- } else {
82
- console.log(' No AI providers detected.');
83
- console.log(' Install one: npm i -g @anthropic-ai/claude-code');
84
- }
85
- }
86
-
87
99
  console.log('');
88
100
  }
89
101