great-cto 2.85.2 → 2.85.3
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "great_cto",
|
|
3
3
|
"id": "great_cto",
|
|
4
4
|
"description": "Engineering process for solo founders and teams up to 50 engineers. Agents do architecture, code review, QA, and security. You make two decisions per feature.",
|
|
5
|
-
"version": "2.85.
|
|
5
|
+
"version": "2.85.3",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Great CTO",
|
|
8
8
|
"url": "https://github.com/avelikiy/great_cto"
|
|
@@ -3159,7 +3159,7 @@ function renderCost(d) {
|
|
|
3159
3159
|
<div class="cost-cell ${overBudget ? 'warn' : (budget != null ? 'good' : '')}">
|
|
3160
3160
|
<div class="lbl">Projected month</div>
|
|
3161
3161
|
<div class="v">$${projected.toFixed(0)}</div>
|
|
3162
|
-
<div class="sub">${budget
|
|
3162
|
+
<div class="sub">${budget > 0 ? (overBudget ? `over budget by $${(projected - budget).toFixed(0)}` : `${Math.round((projected/budget)*100)}% of $${budget} budget`) : 'set monthly-budget in PROJECT.md'}</div>
|
|
3163
3163
|
</div>
|
|
3164
3164
|
<div class="cost-cell good">
|
|
3165
3165
|
<div class="lbl">vs Human team</div>
|
|
@@ -3484,6 +3484,7 @@ async function switchProject(slug) {
|
|
|
3484
3484
|
loadMemory();
|
|
3485
3485
|
refreshCost();
|
|
3486
3486
|
refreshPipeline();
|
|
3487
|
+
refreshLogs(); // populate the Logs nav badge (was lazy — stuck at 0 until the tab was opened)
|
|
3487
3488
|
refreshAgentsInstalled(); // reload agents with verdicts for the new project
|
|
3488
3489
|
connectSSE();
|
|
3489
3490
|
if (lbl) lbl.textContent = 'live · synced just now';
|
|
@@ -3671,6 +3672,7 @@ async function init() {
|
|
|
3671
3672
|
loadMemory();
|
|
3672
3673
|
refreshCost();
|
|
3673
3674
|
refreshPipeline();
|
|
3675
|
+
refreshLogs(); // populate the Logs nav badge (was lazy — stuck at 0 until the tab was opened)
|
|
3674
3676
|
refreshAgentsInstalled(); // preload fleet so Agents tab is instant
|
|
3675
3677
|
connectSSE();
|
|
3676
3678
|
|
package/package.json
CHANGED