Uh oh!
There was an error while loading. Please reload this page.
feat: Rework get pr output into a readable PR summary view - #158
Open
BlueLabelscotch wants to merge 9 commits into
Open
feat: Rework get pr output into a readable PR summary view#158BlueLabelscotch wants to merge 9 commits into
get pr output into a readable PR summary view#158BlueLabelscotch wants to merge 9 commits into
Conversation
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 freeto 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
Reworks
harness get prrendering into a readable summary view, instead of the previous plain labeled-fields dump.#<number> <title>with a colorized state/draft badge, author/branch summary, file/commit/diff stats, and check status.pkg/console/markdown.go).harness list pr_comment <id>to view the full conversation. Best-effort— fetched via the PR's activities endpoint; a failure or empty comment list simply omits the section without failing the command.
Details
modules/code/pr.go: newrenderPRHeader, description block, and comments-summary wiring inGetPRWorkflow/renderPR.modules/code/activity.go(new): normalizes raw PR activity items and renders the collapsed comments summary (renderCommentsSummary) plus relative-time formatting.pkg/console/markdown.go(new): minimal markdown-to-terminal renderer for the PR description.pkg/console/console.go: small additions supporting the new rendering (colors/helpers).Comments are fetched inline via the existing PR activities endpoint (no new registered command) — kept intentionally minimal for now.