groove-dev 0.27.189 → 0.27.191

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.189",
3
+ "version": "0.27.191",
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.189",
3
+ "version": "0.27.191",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -491,7 +491,11 @@ export class Daemon {
491
491
  signal: AbortSignal.timeout(10000),
492
492
  });
493
493
  if (resp.status === 401) {
494
+ // The stored marketplace token is invalid. Clear it and stop here so
495
+ // we don't re-poll a dead token every cycle and re-fire this forever.
494
496
  this.subscriptionCache = { plan: 'community', status: 'none', features: [], active: false, validatedAt: Date.now() };
497
+ this.authToken = null;
498
+ try { await this.skills.clearAuth(); } catch { /* best effort */ }
495
499
  this.broadcast({ type: 'subscription:updated', data: this.subscriptionCache });
496
500
  this.broadcast({ type: 'auth:expired' });
497
501
  return;
@@ -39,6 +39,7 @@ export class ClaudeCodeProvider extends Provider {
39
39
  static authType = 'subscription';
40
40
  static managesOwnContext = true; // Claude Code compacts context internally (~25-37% → 2-8%)
41
41
  static models = [
42
+ { id: 'claude-opus-5', name: 'Claude Opus 5', tier: 'heavy', contextWindow: 1_000_000 },
42
43
  { id: 'claude-fable-5', name: 'Claude Fable 5', tier: 'heavy', contextWindow: 1_000_000 },
43
44
  { id: 'claude-opus-4-8', name: 'Claude Opus 4.8', tier: 'heavy', contextWindow: 1_000_000 },
44
45
  { id: 'claude-opus-4-6', name: 'Claude Opus 4.6', tier: 'heavy', contextWindow: 1_000_000 },