agentgui 1.0.981 → 1.0.983

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/AGENTS.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # AgentGUI — Agent Notes
2
2
 
3
+ ## GUI quality sweep (2026-06-19) — eighteenth run
4
+
5
+ 53-agent audit wf_7cd243d2-753 (29 confirmed). Kit: showWorkingTail status=running (was backwards), focus ring 2px+offset, aria-expanded dynamic on sessions toggle, DOMPurify version-pinned, FORCE_BODY, 360px button fill, cwd-btn 44px coarse. App: thinking branch in sendChat loop, saveBackend deep health probe, aria-live guard, O(1) SSE dedupe Set, sessionDuration reduce, tool_use rail flame (purple=subagent rule), ACP vocabulary connected/connecting/disconnected + unhealthy rail flame, skip-link. Server: CORS credentials guard, token masking in logs. Also: history (result)/(tool call) labels, multi-turn preamble for non-resume agents. Deferred: resume-transcript (#3), ACP force-restart (#4). Full detail in rs-learn (recall "agentgui 18th run").
6
+
3
7
  ## GUI quality sweep (2026-06-19) — seventeenth run
4
8
 
5
9
  Two-pass 48-agent audit (wf_bcac251f-d54, 25 confirmed). Critical: absIdx ReferenceError crash in history, Prism new Function → CSP-safe script injection + Promise.all tiers, scrollChatToBottom rAF reflow removed, sessions drawer <=1100px fix, thinking block dispatched. Full detail in rs-learn (recall "agentgui 17th run").
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.981",
3
+ "version": "1.0.983",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "electron/main.js",
@@ -30,6 +30,7 @@
30
30
  247420.css bundle, scoped under .ds-247420. The kit owns all design. -->
31
31
  </head>
32
32
  <body>
33
+ <a href="#app" class="skip-link">Skip to main content</a>
33
34
  <div id="app"><div class="boot-splash" role="status">loading agentgui…</div></div>
34
35
  <script type="module" src="./js/app.js"></script>
35
36
  </body>
@@ -3110,7 +3110,9 @@ function agentsPanel() {
3110
3110
  // Rail tone keeps its GUI-wide meaning: green=ok/selected,
3111
3111
  // flame=error/unavailable. Selection is shown via `active`, not by
3112
3112
  // borrowing purple (purple is reserved for subagents).
3113
- rail: !avail ? 'flame' : (a.id === state.selectedAgent ? 'green' : undefined),
3113
+ // Flame also covers ACP agents that are installed but running-unhealthy
3114
+ // (provider auth error, etc.) so the error state is visually distinct.
3115
+ rail: (!avail || (acp && !acp.healthy)) ? 'flame' : (a.id === state.selectedAgent ? 'green' : undefined),
3114
3116
  active: a.id === state.selectedAgent,
3115
3117
  // Non-installable agents are genuinely inert: mark them disabled (no
3116
3118
  // click, no button role) instead of looking clickable but doing nothing.