groove-dev 0.27.48 → 0.27.49

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
@@ -263,10 +263,3 @@ Audit-driven release. Multi-agent orchestration system with 7 coordination layer
263
263
  - Dashboard: routing donut, cache panel, context health gauges
264
264
  - Monitor/QC agent mode (stay active, loop)
265
265
  - Distribution: demo video, HN launch, Twitter content
266
-
267
- <!-- GROOVE:START -->
268
- ## GROOVE Orchestration (auto-injected)
269
- Active agents: 0
270
- See AGENTS_REGISTRY.md for full agent state.
271
- **Memory policy:** GROOVE manages project memory automatically. Do not read or write MEMORY.md or .groove/memory/ files directly.
272
- <!-- GROOVE:END -->
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/cli",
3
- "version": "0.27.48",
3
+ "version": "0.27.49",
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.27.48",
3
+ "version": "0.27.49",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -2,7 +2,7 @@
2
2
  // FSL-1.1-Apache-2.0 — see LICENSE
3
3
 
4
4
  import express from 'express';
5
- import { resolve, dirname } from 'path';
5
+ import { resolve, dirname, join } from 'path';
6
6
  import { fileURLToPath } from 'url';
7
7
  import { existsSync, readFileSync, readdirSync, statSync, writeFileSync, mkdirSync, unlinkSync, renameSync, rmSync, createReadStream, copyFileSync, realpathSync } from 'fs';
8
8
  import { spawn, execFile } from 'child_process';
@@ -4002,7 +4002,7 @@ Keep responses concise. Help them think, don't lecture them about the system the
4002
4002
 
4003
4003
  let proc;
4004
4004
  try {
4005
- proc = spawn('python3.12', args, {
4005
+ proc = spawn(join(deployPath, 'venv', 'bin', 'python3.12'), args, {
4006
4006
  cwd: deployPath,
4007
4007
  env: { ...process.env, PYTHONUNBUFFERED: '1' },
4008
4008
  stdio: ['ignore', 'pipe', 'pipe'],
@@ -2,7 +2,7 @@
2
2
  // FSL-1.1-Apache-2.0 — see LICENSE
3
3
 
4
4
  import { homedir } from 'os';
5
- import { resolve } from 'path';
5
+ import { resolve, join } from 'path';
6
6
  import { existsSync } from 'fs';
7
7
  import { Provider } from './base.js';
8
8
 
@@ -60,7 +60,7 @@ export class GrooveNetworkProvider extends Provider {
60
60
  ];
61
61
 
62
62
  return {
63
- command: 'python3.12',
63
+ command: join(deployPath, 'venv', 'bin', 'python3.12'),
64
64
  args,
65
65
  env: { PYTHONUNBUFFERED: '1' },
66
66
  cwd: deployPath,
@@ -73,7 +73,7 @@ export class GrooveNetworkProvider extends Provider {
73
73
  const m = model || GrooveNetworkProvider.models[0].id;
74
74
  const deployPath = expandHome(cfg.deployPath) || resolve(homedir(), 'Desktop/groove-deploy');
75
75
  return {
76
- command: 'python3.12',
76
+ command: join(deployPath, 'venv', 'bin', 'python3.12'),
77
77
  args: [
78
78
  '-m', 'src.consumer.client',
79
79
  '--relay', relay,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.27.48",
3
+ "version": "0.27.49",
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.27.48",
3
+ "version": "0.27.49",
4
4
  "description": "Open-source agent orchestration layer — the AI company OS. Local model agent engine (GGUF/Ollama/llama-server), HuggingFace model browser, MCP integrations (Slack, Gmail, Stripe, 15+), agent scheduling (cron), business roles (CMO, CFO, EA). GUI dashboard, multi-agent coordination, zero cold-start, infinite sessions. Works with Claude Code, Codex, Gemini CLI, Ollama, any local model.",
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.27.48",
3
+ "version": "0.27.49",
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.27.48",
3
+ "version": "0.27.49",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -2,7 +2,7 @@
2
2
  // FSL-1.1-Apache-2.0 — see LICENSE
3
3
 
4
4
  import express from 'express';
5
- import { resolve, dirname } from 'path';
5
+ import { resolve, dirname, join } from 'path';
6
6
  import { fileURLToPath } from 'url';
7
7
  import { existsSync, readFileSync, readdirSync, statSync, writeFileSync, mkdirSync, unlinkSync, renameSync, rmSync, createReadStream, copyFileSync, realpathSync } from 'fs';
8
8
  import { spawn, execFile } from 'child_process';
@@ -4002,7 +4002,7 @@ Keep responses concise. Help them think, don't lecture them about the system the
4002
4002
 
4003
4003
  let proc;
4004
4004
  try {
4005
- proc = spawn('python3.12', args, {
4005
+ proc = spawn(join(deployPath, 'venv', 'bin', 'python3.12'), args, {
4006
4006
  cwd: deployPath,
4007
4007
  env: { ...process.env, PYTHONUNBUFFERED: '1' },
4008
4008
  stdio: ['ignore', 'pipe', 'pipe'],
@@ -2,7 +2,7 @@
2
2
  // FSL-1.1-Apache-2.0 — see LICENSE
3
3
 
4
4
  import { homedir } from 'os';
5
- import { resolve } from 'path';
5
+ import { resolve, join } from 'path';
6
6
  import { existsSync } from 'fs';
7
7
  import { Provider } from './base.js';
8
8
 
@@ -60,7 +60,7 @@ export class GrooveNetworkProvider extends Provider {
60
60
  ];
61
61
 
62
62
  return {
63
- command: 'python3.12',
63
+ command: join(deployPath, 'venv', 'bin', 'python3.12'),
64
64
  args,
65
65
  env: { PYTHONUNBUFFERED: '1' },
66
66
  cwd: deployPath,
@@ -73,7 +73,7 @@ export class GrooveNetworkProvider extends Provider {
73
73
  const m = model || GrooveNetworkProvider.models[0].id;
74
74
  const deployPath = expandHome(cfg.deployPath) || resolve(homedir(), 'Desktop/groove-deploy');
75
75
  return {
76
- command: 'python3.12',
76
+ command: join(deployPath, 'venv', 'bin', 'python3.12'),
77
77
  args: [
78
78
  '-m', 'src.consumer.client',
79
79
  '--relay', relay,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.27.48",
3
+ "version": "0.27.49",
4
4
  "description": "GROOVE GUI — visual agent control plane",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",