feat: first attempt at a gui for managing sessions

This commit is contained in:
Joe Fleming
2026-03-07 11:52:39 -07:00
commit ad7030ae38
9 changed files with 1046 additions and 0 deletions

10
session-mover.py Normal file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python3
"""Session Mover TUI - Move OpenCode sessions between projects without SQL."""
from app import SessionMoverApp
import sys
if __name__ == "__main__":
db_path = sys.argv[1] if len(sys.argv) > 1 else "opencode.db"
app = SessionMoverApp(db_path)
app.run()