feat(web): drop legacy-blended and shadow transcript tabs#120
Merged
Conversation
All episodes now carry segmented transcripts, so the "Legacy blended" alternate-rendering tab and the never-populated "Shadow" debug tab no longer earn their place in the transcript panel. - Remove the sub-tab toggle, the TranscriptSubTab type, SubTabButton, and the ShadowTranscript type / shadow response field. - TranscriptViewer stays as the fallback renderer for raw / mid-pipeline / loading episodes (the backend `content` field still feeds it); only the user-facing legacy/shadow *tabs* are removed. tsc + frontend transcript tests green.
This was referenced May 30, 2026
ssarunic
added a commit
that referenced
this pull request
May 30, 2026
Re-runs the spec #18 segmented cleanup (TranscriptCleaningProcessor) on episodes that have a cleaned Markdown transcript but no AnnotatedTranscript JSON sidecar, so every episode gets a segmented view. This backfilled the 5 stragglers that predated the segmented pipeline (coverage now 866/866), which was the prerequisite for dropping the legacy-blended tab in #120. Idempotent: skips episodes that already have a sidecar unless --force. Dry-run by default; --apply to write; --episode-id to target specific rows.
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.
What
All episodes now carry segmented transcripts (the last 5 stragglers were backfilled), so the transcript panel's two alternate tabs no longer earn their place:
shadowwas never set in the transcript response), so it was dead code.Changes
TranscriptSubTabtype,SubTabButton, and theShadowTranscripttype /shadowresponse field.TranscriptViewerstays as the fallback renderer for raw / mid-pipeline / loading episodes — the backendcontentfield still feeds it. Only the user-facing legacy/shadow tabs are removed; the segmented view is now the sole selectable transcript view, with a graceful fallback to the markdown viewer when no segmented sidecar exists.Verification
tsc --noEmitcleanNote
Does not touch the backend
content/segmentsAPI or the summarizer — both still consume the markdown file directly, unchanged. The backfill script lives separately on the entity-enrichment branch's working tree.