feat(FN-3550): add pending approval badges to agent views and header

Added pending-approval badge indicators across the agent detail view, agents overview, mailbox, header, and mobile nav, wired through new and existing agent/mailbox APIs, with test coverage and documentation updates.

Fusion-Task-Id: FN-3550
This commit is contained in:
Fusion
2026-05-09 06:12:18 -07:00
committed by gsxdsm
parent f3626489ed
commit 7cb13439d3
20 changed files with 306 additions and 12 deletions

View File

@@ -4175,6 +4175,8 @@ export interface Agent {
totalOutputTokens?: number;
/** Last error message */
lastError?: string;
/** Number of currently pending approvals requested by this agent. */
pendingApprovalCount?: number;
/** Path to a markdown file containing custom instructions (resolved relative to project root).
* Must end in `.md`, no `..` traversal. Max 500 chars. */
instructionsPath?: string;