groove-dev 0.10.2 → 0.10.3
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/providers/codex.js +2 -2
- package/node_modules/@groove-dev/gui/package.json +1 -1
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/providers/codex.js +2 -2
- package/packages/gui/package.json +1 -1
|
@@ -36,8 +36,8 @@ export class CodexProvider extends Provider {
|
|
|
36
36
|
|
|
37
37
|
if (agent.model) args.push('--model', agent.model);
|
|
38
38
|
|
|
39
|
-
//
|
|
40
|
-
args.push('
|
|
39
|
+
// Full autonomous operation — no approval prompts, no sandbox restrictions
|
|
40
|
+
args.push('-a', 'never', '--sandbox', 'danger-full-access');
|
|
41
41
|
|
|
42
42
|
if (agent.prompt) args.push(agent.prompt);
|
|
43
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groove-dev",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
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)",
|
|
@@ -36,8 +36,8 @@ export class CodexProvider extends Provider {
|
|
|
36
36
|
|
|
37
37
|
if (agent.model) args.push('--model', agent.model);
|
|
38
38
|
|
|
39
|
-
//
|
|
40
|
-
args.push('
|
|
39
|
+
// Full autonomous operation — no approval prompts, no sandbox restrictions
|
|
40
|
+
args.push('-a', 'never', '--sandbox', 'danger-full-access');
|
|
41
41
|
|
|
42
42
|
if (agent.prompt) args.push(agent.prompt);
|
|
43
43
|
|