fix: codecarto_status text renders every next action, not just the first - #119
Merged
Merged
Conversation
The 0.16.0 release verification round-trip showed the terminal routing lines (#114) stored correctly in next_actions but invisible to a text-reading client: handleStatus printed next_actions[0] only, so the amend/publish/dashboard routing existed solely in the structured payload. Render the whole list, first line prefixed "Next:", continuations aligned. Test: the terminal-next-actions suite now asserts the status text carries the amend routing line while work is pending.
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.
Follow-up to #118, caught by the 0.16.0 release verification round-trip: the terminal routing lines were stored correctly in
next_actionsand carried in the structured payload, buthandleStatus's text view printednext_actions[0]only — a text-reading client lost exactly the routing #114 exists to surface (the pre-amend status showed the skills line while the pending amend line with live counts stayed invisible).handleStatusnow renders every stored action ("Next:" on the first line, aligned continuations); the empty-list fallback keeps its old behavior. The terminal-next-actions suite asserts the amend routing line reaches the text view while work is pending.Suite 341/341; build green.
Refs #114.
🤖 Generated with Claude Code