groove-dev 0.27.149 → 0.27.150

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.27.149",
3
+ "version": "0.27.150",
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.149",
3
+ "version": "0.27.150",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -778,7 +778,9 @@ export class ProcessManager {
778
778
  return true;
779
779
  };
780
780
 
781
- if (!isProviderAuthed(providerName)) {
781
+ // Skip auth fallback for local provider when model references a lab runtime or GGUF
782
+ const hasLabModel = config.model && (config.model.startsWith('runtime:') || config.model.startsWith('gguf:'));
783
+ if (!isProviderAuthed(providerName) && !(providerName === 'local' && hasLabModel)) {
782
784
  const priority = ['claude-code', 'gemini', 'codex', 'local', 'ollama'];
783
785
  const fallback = priority.find(p => p !== providerName && isProviderAuthed(p));
784
786
  if (fallback) {
@@ -790,7 +792,7 @@ export class ProcessManager {
790
792
  if (!provider) {
791
793
  throw new Error(`Unknown provider: ${providerName}`);
792
794
  }
793
- if (!provider.constructor.isInstalled()) {
795
+ if (!provider.constructor.isInstalled() && !(providerName === 'local' && hasLabModel)) {
794
796
  const installed = getInstalledProviders();
795
797
  if (installed.length > 0) {
796
798
  throw new Error(
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.27.149",
3
+ "version": "0.27.150",
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.149",
3
+ "version": "0.27.150",
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.149",
3
+ "version": "0.27.150",
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.149",
3
+ "version": "0.27.150",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -778,7 +778,9 @@ export class ProcessManager {
778
778
  return true;
779
779
  };
780
780
 
781
- if (!isProviderAuthed(providerName)) {
781
+ // Skip auth fallback for local provider when model references a lab runtime or GGUF
782
+ const hasLabModel = config.model && (config.model.startsWith('runtime:') || config.model.startsWith('gguf:'));
783
+ if (!isProviderAuthed(providerName) && !(providerName === 'local' && hasLabModel)) {
782
784
  const priority = ['claude-code', 'gemini', 'codex', 'local', 'ollama'];
783
785
  const fallback = priority.find(p => p !== providerName && isProviderAuthed(p));
784
786
  if (fallback) {
@@ -790,7 +792,7 @@ export class ProcessManager {
790
792
  if (!provider) {
791
793
  throw new Error(`Unknown provider: ${providerName}`);
792
794
  }
793
- if (!provider.constructor.isInstalled()) {
795
+ if (!provider.constructor.isInstalled() && !(providerName === 'local' && hasLabModel)) {
794
796
  const installed = getInstalledProviders();
795
797
  if (installed.length > 0) {
796
798
  throw new Error(
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.27.149",
3
+ "version": "0.27.150",
4
4
  "description": "GROOVE GUI — visual agent control plane",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",