pi-goal-list-loop-audit 0.34.49 → 0.34.50
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.
|
@@ -502,8 +502,9 @@ export function buildStatusText(state: State, audit?: AuditDisplayProgress | nul
|
|
|
502
502
|
return undefined;
|
|
503
503
|
}
|
|
504
504
|
if (g.status === "auditing") {
|
|
505
|
+
const host = paint(theme, "accent", "MAIN HOST · SUPERVISING");
|
|
505
506
|
if (auditRecoveryPending(g)) {
|
|
506
|
-
return `glla: ${paint(theme, "warning", "audit recovery pending")}${heldSuffix}`;
|
|
507
|
+
return `glla: ${host} · ${paint(theme, "warning", "audit recovery pending")}${heldSuffix}`;
|
|
507
508
|
}
|
|
508
509
|
const phase = auditorDisplayPhase(g, audit, now);
|
|
509
510
|
const live = auditorHasLiveEvidence(audit, phase, now);
|
|
@@ -513,7 +514,7 @@ export function buildStatusText(state: State, audit?: AuditDisplayProgress | nul
|
|
|
513
514
|
? `${paint(theme, "success", phaseText)} ${activityBadge("AUDITOR · DETACHED · LIVE", now, theme)}`
|
|
514
515
|
: paint(theme, color, phaseText);
|
|
515
516
|
const tool = phase === "running" && audit?.currentTool ? ` · ${truncate(audit.currentTool, 30)}` : "";
|
|
516
|
-
return `glla: ${label}${tool}${live ? auditorLastActivity(audit, now) : ""}${heldSuffix}`;
|
|
517
|
+
return `glla: ${host} · ${label}${tool}${live ? auditorLastActivity(audit, now) : ""}${heldSuffix}`;
|
|
517
518
|
}
|
|
518
519
|
if (g.status === "paused") {
|
|
519
520
|
// v0.28.22: the status line names the ACTIONABILITY, not the reason —
|
|
@@ -770,8 +771,9 @@ function goalLines(g: Goal, state: State, audit: AuditDisplayProgress | null | u
|
|
|
770
771
|
// goal and its durable recent action, avoiding the duplicated live badge
|
|
771
772
|
// that made the above-editor panel look noisy.
|
|
772
773
|
if (g.status === "auditing") {
|
|
774
|
+
const host = paint(theme, "accent", "MAIN HOST · SUPERVISING");
|
|
773
775
|
if (auditRecoveryPending(g)) {
|
|
774
|
-
lines.push(`├─ auditor: ${paint(theme, "warning", "recovery pending — previous audit was interrupted")}`);
|
|
776
|
+
lines.push(`├─ ${host} · auditor: ${paint(theme, "warning", "recovery pending — previous audit was interrupted")}`);
|
|
775
777
|
lines.push(`└─ ${paint(theme, "dim", "stored completion claim is safe; a fresh session will retry it")}`);
|
|
776
778
|
return lines;
|
|
777
779
|
}
|
|
@@ -784,7 +786,7 @@ function goalLines(g: Goal, state: State, audit: AuditDisplayProgress | null | u
|
|
|
784
786
|
// The status bar is the single activity HUD. Keep the widget's audit line
|
|
785
787
|
// factual and compact; the ⟡ head icon plus this phase identify the
|
|
786
788
|
// detached verifier without repeating the animated status badge.
|
|
787
|
-
lines.push(`├─ auditor: ${phaseLabel}${detail}`);
|
|
789
|
+
lines.push(`├─ ${host} · auditor: ${phaseLabel}${detail}`);
|
|
788
790
|
|
|
789
791
|
// Show observed worker facts, not a made-up percentage or semantic claim.
|
|
790
792
|
// This is the difference between “the timer moved” and “I can see what
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-goal-list-loop-audit",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.50",
|
|
4
4
|
"description": "Mission control for autonomous pi: interview-drafted goals, an audited task queue, and forever-loops (metric, spec, project-audit) that run for hours. A detached extension-less auditor process re-verifies every completion with raw evidence without holding the main pi turn; confirmed drafts, decision pauses and consent gates keep you in charge.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "dracon",
|