experiment(ci): open GitHub run views in a terminal#264
Merged
barrettruth merged 4 commits intomainfrom Apr 15, 2026
Merged
Conversation
Direct CI summary commands could not browse the run page because the command path had no run URL to hand into the summary buffer. Restore a run URL fallback, make summary browse behavior line-sensitive for GitHub job rows, and preserve internal blank separators while trimming only boundary whitespace from native summaries.
GitHub run summaries are already native terminal output, and trying to replay that surface in a normal buffer keeps creating tension between terminal fidelity and structured interactions. Route GitHub ci log through a terminal buffer instead, keep it in normal mode on open, and layer context-sensitive browse and enter actions on top.
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.
Problem
GitHub run summaries are native terminal output, but Forge currently replays that surface into a structured buffer. That preserves some custom interactions, but it also creates constant tension between terminal fidelity and buffer-side parsing/highlighting. Even after the recent summary work, GitHub
ci logis still effectively a translation layer over a terminal-native view.Solution
Route GitHub
ci logthrough a terminal buffer instead of the summary buffer, keep the buffer in normal mode on open, and add buffer-local browse and enter actions on top of the rendered terminal text. This keeps the native GitHub rendering while still allowing context-sensitivegxand<cr>behavior.