groove-dev 0.26.33 → 0.26.35

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/CHANGELOG.md CHANGED
@@ -1,5 +1,60 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.26.33 — Self-building pipeline, team persistence, agent quality overhaul (2026-04-11)
4
+
5
+ Major release: Groove now builds itself. Full team lifecycle, intelligent context synthesis, and agent quality improvements across the board.
6
+
7
+ **Team Persistence and Agent Reuse**
8
+ - Teams are persistent — agents stay across tasks instead of respawning every time
9
+ - Launch flow reuses existing agents by role: planner delegates, existing frontend/backend resume with new task and full context
10
+ - Auto-delegate: when all required roles exist in the team, planner skips the Launch modal and routes work directly (toast notification)
11
+ - QC lifecycle: spawns idle when no work, auto-triggers with teammate context when agents complete real work
12
+ - Cross-scope handoffs: agents write `.groove/handoffs/{role}.md`, system auto-routes to the owning agent
13
+
14
+ **Planner Intelligence**
15
+ - Mode 1 (team creation): full codebase exploration, detailed team structure
16
+ - Mode 2 (task routing): detects existing team via AGENTS_REGISTRY.md, reads only relevant files, routes to existing agents — fast, under 5 tool calls
17
+ - Always writes recommended-team.json, even for team-building-only mode (empty prompts = agents await instructions)
18
+
19
+ **Agent Quality**
20
+ - Role prompts for all 16 agent roles — frontend gets full design system (colors, CSS variables, fonts, components), backend gets ESM conventions and compliance rules
21
+ - All roles default to Heavy tier (Opus) — intelligence out of the box, users opt into cheaper models
22
+ - Permission and scope changes now persist (added to registry SAFE_FIELDS)
23
+
24
+ **Journalist Overhaul**
25
+ - Dropped exploration noise: Read/Glob/Grep tool calls no longer clutter synthesis
26
+ - Edit diffs captured: `"bg-[#3e4451]" -> "HEX.accent"` shows in project map
27
+ - Bash output captured: `npm test -> 141 passed` gives agents build/test context
28
+ - Thinking threshold raised (50 -> 200 chars) — only real decisions survive
29
+ - Transient stderr errors dropped — no more phantom error degradation
30
+ - User feedback tracking: messages to agents recorded and injected into future agent context, persisted to disk
31
+ - Decisions log deduplication: >60% word overlap with previous entry = skip
32
+ - Completed agents persist in project map for 30 minutes after finishing
33
+ - Decisions log capped at 20 entries
34
+
35
+ **Promote Pipeline**
36
+ - `./promote.sh`: build GUI -> run tests -> staging daemon on :31416 -> verify -> publish to npm + push to GitHub
37
+ - Staging uses isolated `.groove-staging/` directory — doesn't kill running daemon
38
+ - npm registry retry with version verification and cache clear
39
+ - Explicit file staging (no `git add -A`) for safety
40
+
41
+ **UX Improvements**
42
+ - Thinking indicator: rich animated phases (Analyzing, Reasoning, Planning...), elapsed timer, shimmer sweep, fires immediately on all launch paths
43
+ - Chat message dedup: Claude Code assistant + result events no longer double up
44
+ - Chat input persists across tab switches (stored in Zustand per agent)
45
+ - Agent tree: debounced fitView prevents jitter on team launch, node positions saved by name (stable across resumes)
46
+ - Edge handles recalculated from actual node positions on every render
47
+ - HTML preview in editor: Code/Preview toggle for .html files via sandboxed iframe
48
+ - Context bars use teal accent color (agent nodes + fleet panel)
49
+
50
+ **Infrastructure**
51
+ - Terminal PTY uses crypto.randomUUID() instead of predictable counters
52
+ - Codex agents skip PM gate (sandboxed providers can't reach localhost)
53
+ - Skill marketplace: Pull Latest, Uninstall, and Update flow
54
+ - Auth logs scrubbed — username only, no PII
55
+ - GC: immediate cleanup on team delete, orphaned logs removed instantly
56
+ - QC agents verify builds (`npm run build`), never start long-running dev servers
57
+
3
58
  ## v0.20.0 — Settings page, Ollama setup, GUI v2 rebuild, full system overhaul (2026-04-08)
4
59
 
5
60
  Major release: complete GUI rebuild + Settings page + Ollama setup + tech debt cleanup.
@@ -75,9 +75,11 @@ export class ClaudeCodeProvider extends Provider {
75
75
  }
76
76
 
77
77
  buildHeadlessCommand(prompt, model) {
78
- const args = ['-p', prompt, '--output-format', 'stream-json', '--verbose'];
78
+ // Pass prompt via stdin to avoid OS argument length limits.
79
+ // Long prompts (journalist synthesis with agent logs) can exceed ARG_MAX.
80
+ const args = ['-p', '--output-format', 'stream-json', '--verbose'];
79
81
  if (model) args.push('--model', model);
80
- return { command: 'claude', args, env: {} };
82
+ return { command: 'claude', args, env: {}, stdin: prompt };
81
83
  }
82
84
 
83
85
  buildFullPrompt(agent) {