groove-dev 0.8.4 → 0.9.1
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 +1 -1
- package/README.md +2 -2
- 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/firstrun.js +1 -1
- package/node_modules/@groove-dev/daemon/src/providers/index.js +0 -2
- package/node_modules/@groove-dev/daemon/src/providers/ollama.js +3 -10
- package/node_modules/@groove-dev/gui/dist/assets/{index-B5E3l1CX.js → index-B-shwTbq.js} +17 -17
- 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/AgentNode.jsx +137 -74
- package/node_modules/@groove-dev/gui/src/views/AgentTree.jsx +8 -8
- package/package.json +3 -3
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/firstrun.js +1 -1
- package/packages/daemon/src/providers/index.js +0 -2
- package/packages/daemon/src/providers/ollama.js +3 -10
- package/packages/gui/dist/assets/{index-B5E3l1CX.js → index-B-shwTbq.js} +17 -17
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/components/AgentNode.jsx +137 -74
- package/packages/gui/src/views/AgentTree.jsx +8 -8
- package/node_modules/@groove-dev/daemon/src/providers/aider.js +0 -72
- package/packages/daemon/src/providers/aider.js +0 -72
package/CLAUDE.md
CHANGED
|
@@ -55,7 +55,7 @@ Each provider implements: `isInstalled()`, `buildSpawnCommand()`, `buildHeadless
|
|
|
55
55
|
| Claude Code | `claude-code.js` | Subscription | Opus/Sonnet/Haiku | Yes |
|
|
56
56
|
| Codex | `codex.js` | API Key | o3/o4-mini | No |
|
|
57
57
|
| Gemini CLI | `gemini.js` | API Key | Pro/Flash | No |
|
|
58
|
-
|
|
58
|
+
|
|
59
59
|
| Ollama | `ollama.js` | Local | Any | No |
|
|
60
60
|
|
|
61
61
|
### Terminal Adapters (packages/daemon/src/terminal/)
|
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ Spawn a planner, describe your project. The planner writes a detailed plan and r
|
|
|
59
59
|
| **Claude Code** | Subscription | Opus, Sonnet, Haiku |
|
|
60
60
|
| **Codex** | API Key | o3, o4-mini |
|
|
61
61
|
| **Gemini CLI** | API Key | 2.5 Pro, 2.5 Flash |
|
|
62
|
-
|
|
62
|
+
|
|
63
63
|
| **Ollama** | Local | Any |
|
|
64
64
|
|
|
65
65
|
GROOVE is a process manager — it spawns actual AI tool binaries. It never proxies API calls, never touches OAuth tokens, never impersonates any client. Your AI tools talk directly to their servers.
|
|
@@ -101,7 +101,7 @@ GROOVE routes tasks to the cheapest model that can handle them. Planners get Opu
|
|
|
101
101
|
└─────────────────┬───────────────────────┘
|
|
102
102
|
│
|
|
103
103
|
┌──────────────────────▼──────────────────────┐
|
|
104
|
-
│ Claude Code · Codex · Gemini ·
|
|
104
|
+
│ Claude Code · Codex · Gemini · Ollama │
|
|
105
105
|
└─────────────────────────────────────────────┘
|
|
106
106
|
```
|
|
107
107
|
|
|
@@ -66,7 +66,7 @@ export function runFirstTimeSetup(grooveDir) {
|
|
|
66
66
|
const providers = listProviders();
|
|
67
67
|
const installed = providers.filter((p) => p.installed);
|
|
68
68
|
if (installed.length > 0) {
|
|
69
|
-
const preferred = ['claude-code', 'codex', 'gemini', '
|
|
69
|
+
const preferred = ['claude-code', 'codex', 'gemini', 'ollama'];
|
|
70
70
|
const best = preferred.find((id) => installed.some((p) => p.id === id));
|
|
71
71
|
if (best) config.defaultProvider = best;
|
|
72
72
|
}
|
|
@@ -4,14 +4,12 @@
|
|
|
4
4
|
import { ClaudeCodeProvider } from './claude-code.js';
|
|
5
5
|
import { CodexProvider } from './codex.js';
|
|
6
6
|
import { GeminiProvider } from './gemini.js';
|
|
7
|
-
import { AiderProvider } from './aider.js';
|
|
8
7
|
import { OllamaProvider } from './ollama.js';
|
|
9
8
|
|
|
10
9
|
const providers = {
|
|
11
10
|
'claude-code': new ClaudeCodeProvider(),
|
|
12
11
|
'codex': new CodexProvider(),
|
|
13
12
|
'gemini': new GeminiProvider(),
|
|
14
|
-
'aider': new AiderProvider(),
|
|
15
13
|
'ollama': new OllamaProvider(),
|
|
16
14
|
};
|
|
17
15
|
|
|
@@ -52,22 +52,15 @@ export class OllamaProvider extends Provider {
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
buildSpawnCommand(agent) {
|
|
55
|
-
// Ollama works best via Aider as a frontend
|
|
56
|
-
// aider --model ollama/<model> gives a full coding experience
|
|
57
55
|
const model = agent.model || 'qwen2.5-coder:7b';
|
|
58
|
-
|
|
59
|
-
const args = [
|
|
60
|
-
'--model', `ollama/${model}`,
|
|
61
|
-
'--yes-always',
|
|
62
|
-
'--no-auto-commits',
|
|
63
|
-
];
|
|
56
|
+
const args = ['run', model];
|
|
64
57
|
|
|
65
58
|
if (agent.prompt) {
|
|
66
|
-
args.push(
|
|
59
|
+
args.push(agent.prompt);
|
|
67
60
|
}
|
|
68
61
|
|
|
69
62
|
return {
|
|
70
|
-
command: '
|
|
63
|
+
command: 'ollama',
|
|
71
64
|
args,
|
|
72
65
|
env: { OLLAMA_API_BASE: 'http://localhost:11434' },
|
|
73
66
|
};
|