Build history command using bubbletea#182
Draft
spaulg wants to merge 1 commit into
Draft
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR implements a new "buildlog" command using the bubbletea TUI library to display build history information interactively.
- Adds a new
BuildLogModelstruct implementing the bubbletea Model interface for interactive build log viewing - Creates a new
buildlogsubcommand that initializes and runs the bubbletea program - Updates Go version and adds bubbletea dependencies to support the new TUI functionality
Reviewed Changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| internal/pkg/impl/host/bubbletea/models/buildlog.go | Implements the bubbletea model for the build log view with basic structure and keyboard handling |
| go.mod | Updates Go version to 1.24.0 and adds bubbletea dependencies |
| cmd/solo/subcommand/root.go | Registers the new buildlog subcommand with the root command |
| cmd/solo/subcommand/buildLog.go | Implements the buildlog subcommand that creates and runs the bubbletea program |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
6 times, most recently
from
October 15, 2025 21:03
f0046d6 to
396d431
Compare
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
from
October 21, 2025 07:41
396d431 to
112978d
Compare
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
2 times, most recently
from
November 4, 2025 20:12
d211170 to
d26c1d9
Compare
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
from
December 10, 2025 07:53
d26c1d9 to
58bfa2d
Compare
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
from
February 8, 2026 21:46
48cd55d to
9bd98e3
Compare
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
3 times, most recently
from
February 10, 2026 21:43
f03d2d7 to
10d1884
Compare
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
from
February 19, 2026 22:21
7483f9d to
fc8bdd1
Compare
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
from
March 7, 2026 22:14
3d06a00 to
af67770
Compare
spaulg
marked this pull request as draft
March 23, 2026 21:22
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
4 times, most recently
from
April 4, 2026 15:02
f0ca39e to
3444031
Compare
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
6 times, most recently
from
June 25, 2026 21:46
134f9a8 to
4deec1d
Compare
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
4 times, most recently
from
July 5, 2026 13:51
a27efec to
8ddec63
Compare
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
from
July 6, 2026 17:40
8ddec63 to
632b2f1
Compare
Build history command using bubbletea
spaulg
force-pushed
the
181-log-history-command-implemented-in-bubbletea
branch
from
July 6, 2026 17:42
632b2f1 to
9f64c93
Compare
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.
Build history command using bubbletea