A terminal UI for browsing and reviewing conversation history in transcription mode. Displays session transcripts with full context, user and assistant messages, tool calls, and timing metadata in a rich, scrollable TUI.
# Launch the TUI to view the most recent conversation $ scorpiox-transcript ┌─ Session: 2026-03-13 14:22 ─────────────────────────┐ │ USER: Create a Python script to parse CSV files │ │ ASSISTANT: I'll create a CSV parser for you... │ │ TOOL: Bash — wrote parse_csv.py (42 lines) │ │ ASSISTANT: Done. The script supports... │ └─────────────────────────────────────────────────────┘ ↑/↓ scroll q quit / search Tab switch pane
# Inside the TUI, use keyboard shortcuts: ↑ / ↓ Scroll through messages Page Up/Dn Jump by page / Search for text in transcript n / N Next / previous search match Tab Switch between message and detail pane q / Esc Quit the viewer
# List sessions with scorpiox-conv, then view transcript $ scorpiox-conv --list #1 2026-03-13 14:22 task: CSV parser 32 messages #2 2026-03-13 10:05 task: Deploy server 18 messages #3 2026-03-12 21:30 task: Fix unit tests 45 messages # scorpiox-transcript picks up the active session context $ scorpiox-transcript # Use scorpiox-rewind to go back to a point in the conversation $ scorpiox-rewind
# Combine with scorpiox-multiplexer for multi-pane view $ scorpiox-multiplexer split-h scorpiox-transcript # View transcript in one pane while working in another ┌────────────────────┬────────────────────┐ │ scorpiox-transcript│ $ your terminal │ │ ───────────────────│ │ │ USER: fix the bug │ $ vim server.py │ │ ASSISTANT: Found │ │ │ the issue in... │ │ └────────────────────┴────────────────────┘