groove-dev 0.26.32 → 0.26.33
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 +3 -0
- package/node_modules/@groove-dev/daemon/src/introducer.js +13 -0
- package/node_modules/@groove-dev/daemon/src/journalist.js +146 -28
- package/node_modules/@groove-dev/daemon/test/journalist.test.js +3 -3
- package/node_modules/@groove-dev/gui/dist/assets/{index-CwUZRfEx.js → index-CPF9iasK.js} +3 -3
- package/node_modules/@groove-dev/gui/dist/index.html +1 -1
- package/node_modules/@groove-dev/gui/src/components/dashboard/fleet-panel.jsx +1 -1
- package/package.json +1 -1
- package/packages/daemon/src/api.js +3 -0
- package/packages/daemon/src/introducer.js +13 -0
- package/packages/daemon/src/journalist.js +146 -28
- package/packages/gui/dist/assets/{index-CwUZRfEx.js → index-CPF9iasK.js} +3 -3
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/src/components/dashboard/fleet-panel.jsx +1 -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-CPF9iasK.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">
|
|
@@ -25,7 +25,7 @@ const AgentRow = memo(function AgentRow({ agent, isRotating }) {
|
|
|
25
25
|
const successRate = quality?.toolSuccessRate != null ? Math.round(quality.toolSuccessRate * 100) : null;
|
|
26
26
|
const thresholdPct = agent.rotationThreshold ? Math.round(agent.rotationThreshold * 100) : null;
|
|
27
27
|
const rc = roleColor(agent.role);
|
|
28
|
-
const barColor = contextPct > 80 ? HEX.danger : contextPct > 60 ? HEX.warning :
|
|
28
|
+
const barColor = contextPct > 80 ? HEX.danger : contextPct > 60 ? HEX.warning : HEX.accent;
|
|
29
29
|
|
|
30
30
|
return (
|
|
31
31
|
<div className="px-3 pl-6 py-2 hover:bg-[rgba(51,175,188,0.06)] transition-colors space-y-1.5">
|