diff options
| author | mo khan <mo@mokhan.ca> | 2025-06-23 18:11:49 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-06-23 18:11:49 -0600 |
| commit | 06b939485686573e612983f1e421fb600553dced (patch) | |
| tree | bd030a9bba3a8fe63859000c507949ac4a341167 /go.mod | |
| parent | e5de3d481742a8b7c2be40c4d5be2e9bb431a539 (diff) | |
feat: completely rebuild Del as professional TUI applicationmain
🎉 MAJOR REBUILD - Del is now a beautiful, modern TUI application\!
Key Features:
✨ Built with Charm/Bubbletea framework for professional UX
📁 File explorer with vim-like navigation (f key)
💬 AI chat interface with beautiful markdown rendering (c key)
🧠 Memory system view (m key)
⌨️ Vim-inspired keybindings throughout
🎨 Beautiful styling with consistent color scheme
📱 Responsive layout that adapts to terminal size
⚡ Proper terminal detection and graceful fallback
Technical Implementation:
- Charm Bubbles components for file picker, textarea, viewport
- Glamour for beautiful markdown rendering
- Lipgloss for consistent styling and theming
- Professional error handling and UX patterns
- Clean MVC architecture with Tea framework
- Proper component lifecycle management
UI Features:
- Purple/green/orange color scheme (modern dev tool aesthetic)
- Rounded borders and proper spacing
- Status bar with contextual information
- Help system with keybinding hints
- Thinking indicators for AI responses
This is now a proper Claude Code competitor with:
- Professional TUI interface (not crude terminal output)
- Fast, responsive navigation
- Beautiful markdown rendering
- Extensible architecture for rapid feature development
Ready for: file editing, advanced AI integration, memory system, tool calling
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -5,7 +5,42 @@ go 1.24.0 require github.com/ollama/ollama v0.9.2 require ( + github.com/alecthomas/chroma/v2 v2.14.0 // indirect + github.com/atotto/clipboard v0.1.4 // indirect + github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect + github.com/aymerick/douceur v0.2.0 // indirect + github.com/charmbracelet/bubbles v0.21.0 // indirect + github.com/charmbracelet/bubbletea v1.3.5 // indirect + github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect + github.com/charmbracelet/glamour v0.10.0 // indirect + github.com/charmbracelet/harmonica v0.2.0 // indirect + github.com/charmbracelet/lipgloss v1.1.1-0.20250404203927-76690c660834 // indirect + github.com/charmbracelet/x/ansi v0.8.0 // indirect + github.com/charmbracelet/x/cellbuf v0.0.13 // indirect + github.com/charmbracelet/x/exp/slice v0.0.0-20250327172914-2fdc97757edf // indirect + github.com/charmbracelet/x/term v0.2.1 // indirect + github.com/dlclark/regexp2 v1.11.4 // indirect + github.com/dustin/go-humanize v1.0.1 // indirect + github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect + github.com/gorilla/css v1.0.1 // indirect + github.com/lucasb-eyer/go-colorful v1.2.0 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/mattn/go-localereader v0.0.1 // indirect + github.com/mattn/go-runewidth v0.0.16 // indirect + github.com/microcosm-cc/bluemonday v1.0.27 // indirect + github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect + github.com/muesli/cancelreader v0.2.2 // indirect + github.com/muesli/reflow v0.3.0 // indirect + github.com/muesli/termenv v0.16.0 // indirect + github.com/rivo/uniseg v0.4.7 // indirect + github.com/sahilm/fuzzy v0.1.1 // indirect + github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect + github.com/yuin/goldmark v1.7.8 // indirect + github.com/yuin/goldmark-emoji v1.0.5 // indirect golang.org/x/crypto v0.36.0 // indirect + golang.org/x/net v0.38.0 // indirect + golang.org/x/sync v0.13.0 // indirect golang.org/x/sys v0.32.0 // indirect golang.org/x/term v0.31.0 // indirect + golang.org/x/text v0.24.0 // indirect ) |
