| 88 | type Tone = "neutral" | "accent" | "success" | "warning" | "error"; |
| 89 | |
| 90 | interface HealthMeta { |
| 91 | label: string; |
| 92 | tone: Tone; |
| 93 | detailLine: string; |
| 94 | timestampLabel: string; |
| 95 | } |
| 96 | |
| 97 | function getAgentEmoji(agentId: string): string { |
| 98 | return AGENT_EMOJIS[agentId] || "🤖"; |
nothing calls this directly
no outgoing calls
no test coverage detected