feat(tui): enhance FocusedAgent panel with avatar, sparkline, and improved progress bar (#505)#536
Merged
JeremyDev87 merged 1 commit intomasterfrom Feb 18, 2026
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…roved progress bar (#505) - Add agent emoji avatar display via getAgentAvatar() in theme.ts - Add AGENT_AVATARS map for 20+ agent role keyword → emoji mappings - Add formatActivitySparkline() to visualize tool call frequency over time - Add formatEnhancedProgressBar() using braille chars with percentage label - Add formatEnhancedChecklist() with ✔/◻ icons and overflow indicator - Pass toolCalls prop through DashboardApp to FocusedAgentPanel - Deprecate formatChecklist and formatProgressBar in favor of enhanced variants - Fix TaskItem test fixtures to include required id field - Fix ToolCallRecord test fixtures to use valid status values (completed)
4fa2f91 to
1fda0d2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #505
Enhances the
FocusedAgentPanelTUI component with richer visual feedback, making it easier to identify agents and monitor their activity at a glance.Changes
theme.tsAGENT_AVATARSconstant mapping 20+ agent role keywords to emoji identifiersgetAgentAvatar(agentName)function that resolves the best-matching emoji for a given agent namefocused-agent.pure.tsformatEnhancedProgressBar()— braille character-based progress bar with a%label (replacesformatProgressBar)formatActivitySparkline()— sparkline chart showing tool call frequency bucketed over the last 60 secondsformatEnhancedChecklist()— checklist with✔/◻icons and an overflow indicator (⋯ +N more)formatChecklistandformatProgressBarwith@deprecatedJSDoc tagsFocusedAgentPanel.tsxformatEnhancedProgressBarfor finer-grained progress visualizationformatEnhancedChecklistfor improved task status iconstoolCalls: ToolCallRecord[]prop; filter byagentIdbefore renderingdashboard-app.tsxstate.toolCallsto bothFocusedAgentPanelinstancesTest plan
theme.spec.ts— unit tests forgetAgentAvatarcovering exact, partial, and unknown name casesfocused-agent.pure.spec.ts— unit tests forformatEnhancedProgressBar,formatActivitySparkline, andformatEnhancedChecklistFocusedAgentPanel.spec.tsx— snapshot/render tests updated to includetoolCallsprop and verify new sections render correctly