Add builder pattern for StepsMessage and InfoBlockMessage#142
Merged
josecelano merged 3 commits intomainfrom Nov 5, 2025
Merged
Add builder pattern for StepsMessage and InfoBlockMessage#142josecelano merged 3 commits intomainfrom
josecelano merged 3 commits intomainfrom
Conversation
Co-authored-by: josecelano <58816+josecelano@users.noreply.github.com>
Member
|
@copilot the linting workflow is failing: |
Co-authored-by: josecelano <58816+josecelano@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add builder pattern for complex messages in UserOutput module
Add builder pattern for StepsMessage and InfoBlockMessage
Nov 5, 2025
Contributor
Author
... The formatting issue was already fixed in commit 1a3079b. The CI failure you saw was from commit 287f106 (before the formatting fix). I've verified that the current HEAD passes all linting checks including
The formatting is correct now. |
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.
Adds optional builder patterns for complex message types while maintaining backward compatibility with direct construction.
Changes
New message type:
InfoBlockMessage- displays titled multi-line information blocksOutputMessagetrait, routes to stderr at Normal verbosityBuilder API:
StepsMessageBuilder- fluent API for constructing step listsInfoBlockMessageBuilder- fluent API for constructing info blocksself) enables clean chainingStepsMessage::builder(),InfoBlockMessage::builder()Backward compatibility:
StepsMessage::new()andInfoBlockMessage::new()constructorsUserOutput::info_block()to use newInfoBlockMessageinternallyUsage
Tests: 25 new tests covering fluent API, direct construction, empty builders, integration with UserOutput/JSON formatter, and backward compatibility.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.