feat(dashboard): add a Hot tickets overview (#1112) - #1114
Merged
Conversation
Add buildHotTickets + an onHotTickets telefunc that pool every project's tickets/ and bucket each into a lane: in-progress (planned or spiked), next (high priority, not started), or queued (the rest). There is no run to ticket link, so a ticket being implemented right now is only visible through the plan/spike it left. Exported through the package surface and the client shim; the telefunc auto-registers.
A cross-project glance at what the agent is working on (planned/spiked), what is likely next (high priority), and the queued rest. Full-width stacked lanes so an uneven split still reads as designed: an empty lane collapses to a dim header line, a populated one is a list of titles with their project, capped with "+N more". Selecting a ticket jumps into its project (#1112).
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.
Closes #1112
What
A "Hot tickets" overview on the dashboard: a cross-project glance at the tickets that matter right now, in the three lanes Rom asked for.
It pools every project's
tickets/(a newbuildHotTicketsread +onHotTicketstelefunc), so it is a projection of the same files the agent plans from, polled so it stays live. Each row names its project and jumps into it when selected.Design
Full-width stacked lanes rather than columns, so an uneven split (the common case, where most tickets sit queued) still reads as designed: an empty lane collapses to a single dim header line, a populated one is a clean list of titles with their project, capped with "+N more".
One known gap
There is no run to ticket link, so "being implemented right now" is only approximated by the plan/spike a ticket left. A true "implementing" status would need
RunMetato record the ticket a run started from. Flagged for a follow-up if wanted.Verification
buildHotTickets/ticketBucket), dashboard 423 tests (+2 for the card), both typechecks + root typecheck clean.