groove-dev 0.24.3 → 0.24.5
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/api.js +2 -1
- package/node_modules/@groove-dev/daemon/src/process.js +16 -2
- package/node_modules/@groove-dev/gui/dist/assets/{index-z5gtKpHQ.js → index-CyUFyn1h.js} +39 -39
- package/node_modules/@groove-dev/gui/dist/index.html +1 -1
- package/node_modules/@groove-dev/gui/src/components/dashboard/token-chart.jsx +108 -91
- package/node_modules/@groove-dev/gui/src/stores/groove.js +4 -0
- package/package.json +1 -1
- package/packages/daemon/src/api.js +2 -1
- package/packages/daemon/src/process.js +16 -2
- package/packages/gui/dist/assets/{index-z5gtKpHQ.js → index-CyUFyn1h.js} +39 -39
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/src/components/dashboard/token-chart.jsx +108 -91
- package/packages/gui/src/stores/groove.js +4 -0
|
@@ -1562,8 +1562,9 @@ Keep responses concise. Help them think, don't lecture them about the system the
|
|
|
1562
1562
|
// Safety net: if planner forgot the QC agent, auto-add one
|
|
1563
1563
|
if (phase2.length === 0 && phase1.length >= 2) {
|
|
1564
1564
|
phase2 = [{
|
|
1565
|
+
name: 'qc-agent',
|
|
1565
1566
|
role: 'fullstack', phase: 2, scope: [],
|
|
1566
|
-
prompt: 'QC Senior Dev: All builder agents have completed. Audit their changes for correctness, fix any issues, run tests, build the project, commit all changes, and launch. Output the localhost URL where the app can be accessed.',
|
|
1567
|
+
prompt: 'QC Senior Dev: All builder agents have completed. Audit their changes for correctness, fix any issues, run tests, build the project, commit all changes, and launch the dev server. Output the localhost URL where the app can be accessed.',
|
|
1567
1568
|
}];
|
|
1568
1569
|
}
|
|
1569
1570
|
|
|
@@ -445,8 +445,22 @@ For normal file edits within your scope, proceed without review.
|
|
|
445
445
|
role: agent.role,
|
|
446
446
|
});
|
|
447
447
|
this.daemon.audit.log('phase2.autoSpawn', { id: agent.id, name: agent.name, role: agent.role });
|
|
448
|
-
}).catch(() => {
|
|
449
|
-
|
|
448
|
+
}).catch((err) => {
|
|
449
|
+
console.error(`[Groove] Phase 2 spawn failed for ${config.role}: ${err.message}`);
|
|
450
|
+
this.daemon.broadcast({
|
|
451
|
+
type: 'phase2:failed',
|
|
452
|
+
role: config.role,
|
|
453
|
+
error: err.message,
|
|
454
|
+
});
|
|
455
|
+
});
|
|
456
|
+
} catch (err) {
|
|
457
|
+
console.error(`[Groove] Phase 2 config invalid for ${config.role}: ${err.message}`);
|
|
458
|
+
this.daemon.broadcast({
|
|
459
|
+
type: 'phase2:failed',
|
|
460
|
+
role: config.role,
|
|
461
|
+
error: err.message,
|
|
462
|
+
});
|
|
463
|
+
}
|
|
450
464
|
}
|
|
451
465
|
}
|
|
452
466
|
}
|