Model live room conversation task cards#309
Merged
Merged
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 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.
Linked Issue
Closes #304
Scope
Adds a live room conversation view model for the unified full-screen room. The model keeps the center conversation focused on user/host output and direct user-addressed specialist turns, while host-managed internal delegation is represented as task cards outside the public transcript.
Implemented:
LiveRoomConversationPanelfor public turns, internal task cards, hidden internal count, side-rail count, and display-only authority boundary.LiveRoomTurnKindfor user, host, and direct specialist public turns.InternalTaskCardfor compact host-managed delegation rows.Acceptance Criteria
cr console --snapshotcompatible with existingCoreRoomSnapshotconversation projection.Changed Files
src/console_conversation.rs— live room conversation model and task-card projection.src/console_tui.rs— conversation pane renders from the live model.tests/console_conversation_test.rs— fixtures for public/direct/internal task-card behavior and display-only authority.Validation
cargo fmt --all -- --check— passcargo test --test console_conversation_test --locked --quiet— pass, 4 testscargo test --test console_tui_test --locked --quiet— pass, 7 testscargo clippy --all-targets --all-features --locked -- -D warnings— passcargo test --all-features --locked --quiet— passgit diff --check— passEvidence / Completion Boundary
The new model explicitly carries
ConversationAuthority::DisplayOnly. It does not expose completion, approval, release readiness, CI, or evidence-closure state. Those remain sourced from WorkOrders, gates, Evidence Packets, CI, tracker rows, and source facts.Risk
Low. This changes the console conversation projection and keeps existing snapshot shape compatible. It does not change the default
crentrypoint or live role runtime.Rollback
Revert this PR. No migrations, persisted state, release metadata, or user data are changed.
Tracker Update