Merged
Conversation
✅ Deploy Preview for agent-tars-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
2c8c78e to
2056123
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1374 +/- ##
=======================================
Coverage 14.26% 14.26%
=======================================
Files 250 250
Lines 8562 8562
Branches 1672 1672
=======================================
Hits 1221 1221
Misses 7166 7166
Partials 175 175 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
3d0f6dd to
1e005ce
Compare
refactor(tarko): optimize event stream viewer code quality - Remove duplicate formatTimestamp function, use shared utility - Extract event type configuration to eliminate hardcoded mappings - Add event highlighting support for chat message correlation - Remove redundant comments for better maintainability refactor(tarko): decouple event stream viewer from workspace - Move EventStreamRenderer to independent EventStreamModal - Remove events mode from WorkspaceDisplayMode - Add eventStreamModalOpenAtom for modal state management - Integrate modal in main Layout component - Clean up workspace components and remove coupling feat(tarko): add raw events handler for event stream viewer - Create RawEventsHandler to capture all events in rawEventsAtom - Modify event processing to execute all matching handlers - Add findAllHandlers method to EventHandlerRegistry - Enable real-time event stream display in modal refactor(tarko): simplify event stream modal to basic debug viewer - Remove all animations and fancy UI components - Use simple fullscreen black terminal-style interface - Show raw JSON with timestamps in monospace font - Focus on debugging functionality, not product polish feat(tarko): add collapsible events with JsonRenderer - Show event summary with timestamp and type - Click to expand/collapse individual events - Use JsonRenderer for structured JSON display - Keep terminal-style debug interface fix(tarko): improve event stream modal dark mode and add filter - Fix JsonRenderer dark mode display with CSS overrides - Add event type filter dropdown in header - Show filtered/total event counts - Improve UX with proper dark theme colors fix(tarko): improve JsonRenderer hover effects in dark mode - Change hover background from gray-800 to gray-700 for better visibility - Update border colors for better contrast - Fix text colors for improved readability fix(tarko): prevent white background on JsonRenderer hover - Override bg-white and hover:bg-white to use dark colors - Ensure all hover states use appropriate dark theme colors - Fix jarring white flash on hover in dark mode feat(tarko): add UI config for event stream viewer - Add DebugConfig interface with enableEventStreamViewer option - Add isEventStreamViewerEnabled() function in web-ui-config - Control Activity button and modal visibility based on config - Default to false for production safety
1e005ce to
d208e9d
Compare
✅ Deploy Preview for tarko ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
…d memory overhead
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
Adds an independent event stream viewer modal accessible via a new icon in the sidebar. This builds on the
rawEventsAtomintroduced in #1118 to provide real-time visualization of the event stream in a dedicated, non-intrusive interface.Checklist