@comma-agents/tui
Pages
Route-level page components — IntroPage, ChatPage, and LogsPage for the TUI's tab-based navigation.
The TUI has three page-level components, each mapped to a route in the App component. Pages compose lower-level components into full-screen layouts.
| Page | Route | Purpose |
|---|---|---|
| IntroPage | /chat (fallback) | Strategy selection and initial prompt |
| ChatPage | /chat | Message display, reply input, permission prompts |
| LogsPage | /logs | Captured console log viewer |
All pages follow the container/render split pattern -- a container component resolves state and theme hooks, and a companion *Render function is the pure presentational layer.