groove-dev 0.10.9 → 0.10.10

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/cli",
3
- "version": "0.10.9",
3
+ "version": "0.10.10",
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.10.9",
3
+ "version": "0.10.10",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -35,10 +35,12 @@ export class GeminiProvider extends Provider {
35
35
  const args = [];
36
36
 
37
37
  if (agent.model) args.push('--model', agent.model);
38
- if (agent.prompt) args.push(agent.prompt);
39
38
 
40
- // Sandbox mode off for full filesystem access
41
- args.push('--sandbox', 'false');
39
+ // YOLO mode auto-approve all tool calls (file writes, shell commands)
40
+ // Without this, Gemini in headless mode can only output text
41
+ args.push('--yolo');
42
+
43
+ if (agent.prompt) args.push(agent.prompt);
42
44
 
43
45
  return {
44
46
  command: 'gemini',
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.10.9",
3
+ "version": "0.10.10",
4
4
  "description": "GROOVE GUI — visual agent control plane",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "groove-dev",
3
- "version": "0.10.9",
3
+ "version": "0.10.10",
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)",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/cli",
3
- "version": "0.10.9",
3
+ "version": "0.10.10",
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.10.9",
3
+ "version": "0.10.10",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -35,10 +35,12 @@ export class GeminiProvider extends Provider {
35
35
  const args = [];
36
36
 
37
37
  if (agent.model) args.push('--model', agent.model);
38
- if (agent.prompt) args.push(agent.prompt);
39
38
 
40
- // Sandbox mode off for full filesystem access
41
- args.push('--sandbox', 'false');
39
+ // YOLO mode auto-approve all tool calls (file writes, shell commands)
40
+ // Without this, Gemini in headless mode can only output text
41
+ args.push('--yolo');
42
+
43
+ if (agent.prompt) args.push(agent.prompt);
42
44
 
43
45
  return {
44
46
  command: 'gemini',
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.10.9",
3
+ "version": "0.10.10",
4
4
  "description": "GROOVE GUI — visual agent control plane",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",