groove-dev 0.10.3 → 0.10.5

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 CHANGED
@@ -195,3 +195,10 @@ Fully functional multi-agent orchestration system. Tested end-to-end: planner
195
195
  - Remote access (--host 0.0.0.0 + token auth)
196
196
  - Semantic degradation detection
197
197
  - Distribution: demo video, HN launch, Twitter content
198
+
199
+ <!-- GROOVE:START -->
200
+ ## GROOVE Orchestration (auto-injected)
201
+ Active agents: 0
202
+ See AGENTS_REGISTRY.md for full agent state.
203
+ **Memory policy:** Ignore auto-memory. Do not read or write MEMORY.md. GROOVE manages all context.
204
+ <!-- GROOVE:END -->
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/cli",
3
- "version": "0.10.3",
3
+ "version": "0.10.5",
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.3",
3
+ "version": "0.10.5",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -32,12 +32,13 @@ export class CodexProvider extends Provider {
32
32
  }
33
33
 
34
34
  buildSpawnCommand(agent) {
35
- const args = [];
35
+ // Use 'codex exec' for non-interactive (headless) operation
36
+ const args = ['exec'];
36
37
 
37
38
  if (agent.model) args.push('--model', agent.model);
38
39
 
39
- // Full autonomous operation — no approval prompts, no sandbox restrictions
40
- args.push('-a', 'never', '--sandbox', 'danger-full-access');
40
+ // Full autonomous operation — no approval prompts, no sandbox
41
+ args.push('--dangerously-bypass-approvals-and-sandbox');
41
42
 
42
43
  if (agent.prompt) args.push(agent.prompt);
43
44
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.10.3",
3
+ "version": "0.10.5",
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.3",
3
+ "version": "0.10.5",
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.3",
3
+ "version": "0.10.5",
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.3",
3
+ "version": "0.10.5",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -32,12 +32,13 @@ export class CodexProvider extends Provider {
32
32
  }
33
33
 
34
34
  buildSpawnCommand(agent) {
35
- const args = [];
35
+ // Use 'codex exec' for non-interactive (headless) operation
36
+ const args = ['exec'];
36
37
 
37
38
  if (agent.model) args.push('--model', agent.model);
38
39
 
39
- // Full autonomous operation — no approval prompts, no sandbox restrictions
40
- args.push('-a', 'never', '--sandbox', 'danger-full-access');
40
+ // Full autonomous operation — no approval prompts, no sandbox
41
+ args.push('--dangerously-bypass-approvals-and-sandbox');
41
42
 
42
43
  if (agent.prompt) args.push(agent.prompt);
43
44
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.10.3",
3
+ "version": "0.10.5",
4
4
  "description": "GROOVE GUI — visual agent control plane",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",