feat(tui): add goal badge in transcript header, simplify to 'goal set' - #376
Closed
alecuba16 wants to merge 3 commits into
Closed
feat(tui): add goal badge in transcript header, simplify to 'goal set'#376alecuba16 wants to merge 3 commits into
alecuba16 wants to merge 3 commits into
Conversation
alecuba16
force-pushed
the
feat/goal-completed-header
branch
from
August 2, 2026 09:55
e08dd60 to
b5792dc
Compare
alecuba16
force-pushed
the
feat/goal-completed-header
branch
from
August 2, 2026 15:27
b5792dc to
acf7ecd
Compare
Co-authored-by: Cursor <cursoragent@cursor.com>
alecuba16
force-pushed
the
feat/goal-completed-header
branch
from
August 8, 2026 14:56
acf7ecd to
95d706d
Compare
alecuba16
force-pushed
the
feat/goal-completed-header
branch
from
August 8, 2026 14:57
95d706d to
042bf5d
Compare
Author
|
Closing in favor of consolidated group branches. The changes from this PR have been merged into a functional group branch. |
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.
Summary
Adds goal badge in transcript header showing active goal status. Badge simplified from verbose
"active · 5m · 3 turns"to clean"set"indicator.Changes
render.rs: Goal badge rendered in footer as[goal: set](yellow bold)cli/src/main.rs: Badge format simplified fromformat!("active · {} · {} turns", ...)toformat!("set")app.rs:active_goal_badgeandgoal_completedfields onAppstructTesting
cargo check --workspaceclean (pre-existing errors unrelated to this change)cargo fmt --allclean