groove-dev 0.26.0 → 0.26.2
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/node_modules/@groove-dev/daemon/src/agent-loop.js +3 -38
- package/node_modules/@groove-dev/gui/dist/assets/{index-BqL4GcgZ.js → index-BC2Bhfv0.js} +22 -22
- package/node_modules/@groove-dev/gui/dist/index.html +1 -1
- package/node_modules/@groove-dev/gui/src/stores/groove.js +7 -1
- package/package.json +1 -1
- package/packages/daemon/src/agent-loop.js +3 -38
- package/packages/gui/dist/assets/{index-BqL4GcgZ.js → index-BC2Bhfv0.js} +22 -22
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/src/stores/groove.js +7 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
7
7
|
<title>Groove GUI</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-BC2Bhfv0.js"></script>
|
|
9
9
|
<link rel="modulepreload" crossorigin href="/assets/vendor-C0HXlhrU.js">
|
|
10
10
|
<link rel="modulepreload" crossorigin href="/assets/reactflow-BQPfi37R.js">
|
|
11
11
|
<link rel="modulepreload" crossorigin href="/assets/codemirror-BBL3i_JW.js">
|
|
@@ -158,7 +158,13 @@ export const useGrooveStore = create((set, get) => ({
|
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
// Text responses → chat bubbles (stream: append to recent agent message)
|
|
161
|
-
|
|
161
|
+
// Claude Code: subtype='assistant' or type='result' with structured data
|
|
162
|
+
// Gemini/Codex/Ollama/Local: type='activity' with plain string data (no subtype)
|
|
163
|
+
const showAsChat = chatText && chatText.trim() && (
|
|
164
|
+
data.subtype === 'assistant' || data.type === 'result' ||
|
|
165
|
+
(data.type === 'activity' && typeof data.data === 'string')
|
|
166
|
+
);
|
|
167
|
+
if (showAsChat) {
|
|
162
168
|
const history = { ...get().chatHistory };
|
|
163
169
|
if (!history[agentId]) history[agentId] = [];
|
|
164
170
|
const arr = [...history[agentId]];
|