Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
094c386
fix(tui): prevent model names from clipping
junhoyeo Dec 13, 2025
767e091
fix(tui): allow model column to expand
junhoyeo Dec 13, 2025
a0c76ab
fix(tui): stripe model rows and clamp render
junhoyeo Dec 13, 2025
3f3e6c5
fix(tui): add sort cues and preformat rows
junhoyeo Dec 13, 2025
2c2c8ca
fix(tui): stack bar graph models and hint copy
junhoyeo Dec 13, 2025
9f91635
fix(tui): audit fixes for production readiness
junhoyeo Dec 13, 2025
9aaa772
fix(tui): remove ugly border and duplicate Models label
junhoyeo Dec 13, 2025
10f52e4
fix(tui): remove border from DailyView
junhoyeo Dec 13, 2025
23d8ced
feat(tui): add Cmd+C to copy selected row
junhoyeo Dec 13, 2025
8e34b04
fix(tui): use y key for copy (vim-style)
junhoyeo Dec 13, 2025
c6122ab
fix(tui): add status messages for copy/export and improve DailyView
junhoyeo Dec 13, 2025
830a72b
fix(tui): fix selectedIndex reactivity for row selection
junhoyeo Dec 13, 2025
0a5d30b
fix(tui): inline selection logic to ensure reactivity in For loop
junhoyeo Dec 13, 2025
0570bf9
fix(tui): use Index instead of For for proper selectedIndex reactivity
junhoyeo Dec 13, 2025
82791e6
fix(tui): use createMemo inside For loop for selection reactivity
junhoyeo Dec 13, 2025
9853a6e
fix(tui): use 'bg' prop instead of 'backgroundColor' for text elements
junhoyeo Dec 13, 2025
f3372c9
fix(tui): fix selection reactivity in OverviewView
junhoyeo Dec 13, 2025
5a8a0bc
fix(tui): remove zebra striping for cleaner look
junhoyeo Dec 13, 2025
777079b
fix(tui): inline model list rendering in OverviewView for reactivity
junhoyeo Dec 13, 2025
126a5d6
fix(tui): fix Overview tab selection - keyboard handling was wrong
junhoyeo Dec 13, 2025
ee3c95b
feat(tui): add subtle zebra striping with darker color
junhoyeo Dec 13, 2025
9f9c267
chore: update .gitignore to prevent accidental commits
junhoyeo Dec 13, 2025
efb43d6
chore: remove unrelated research documentation
junhoyeo Dec 13, 2025
761e9bb
chore: remove unused ModelListItem component
junhoyeo Dec 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,11 @@ benchmarks/synthetic-data/

target/
*.node

# Debug logs
*.log
ffi_otui_debug_*.log

# Temporary files and archives
opencodetmp/
*.zip
39 changes: 38 additions & 1 deletion bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"@opentui/react": "^0.1.60",
"@opentui/solid": "^0.1.60",
"cli-table3": "^0.6.5",
"clipboardy": "^5.0.2",
"commander": "^14.0.2",
"csv-parse": "^5.6.0",
"date-fns": "^4.1.0",
Expand Down
Loading