Skip to content

Commit 27ef387

Browse files
committed
🔥 chore: update Go version to 1.25.0 and tidy imports
Refactor the Go module and workspace files to use Go version 1.25.0. Additionally, remove unused dependencies in `go.mod` and `go.sum` for a cleaner state. Enhance code readability by adjusting comments in `chat.go` and `main.go`.
1 parent ef13ba7 commit 27ef387

5 files changed

Lines changed: 7 additions & 17 deletions

File tree

‎cmd/vibeaura/chat.go‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ type model struct {
106106
encodingCurrent int
107107
encodingTotal int
108108
recordingErr error
109-
// Model selection & filtering allModelDiscoveries []brain.ModelDiscovery
109+
// Model selection & filtering
110+
allModelDiscoveries []brain.ModelDiscovery
110111
suggestionFilter string
111112
isFilteringModels bool
112113

‎cmd/vibeaura/go.mod‎

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
module github.com/nathfavour/vibeauracle/cmd/vibeaura
22

3-
go 1.21
3+
go 1.25.0
44

55
require (
6+
github.com/atotto/clipboard v0.1.4
67
github.com/charmbracelet/bubbles v0.21.1
78
github.com/charmbracelet/bubbletea v1.3.10
89
github.com/charmbracelet/lipgloss v1.1.1-0.20250404203927-76690c660834
@@ -15,13 +16,11 @@ require (
1516
github.com/nathfavour/vibeauracle/sys v0.0.0
1617
github.com/nathfavour/vibeauracle/tooling v0.0.0-00010101000000-000000000000
1718
github.com/spf13/cobra v1.10.2
18-
golang.design/x/clipboard v0.7.1
1919
golang.org/x/mod v0.32.0
2020
)
2121

2222
require (
2323
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
24-
github.com/atotto/clipboard v0.1.4 // indirect
2524
github.com/aymerick/douceur v0.2.0 // indirect
2625
github.com/charmbracelet/glamour v0.10.0 // indirect
2726
github.com/charmbracelet/x/exp/slice v0.0.0-20250327172914-2fdc97757edf // indirect
@@ -42,9 +41,6 @@ require (
4241
go.lsp.dev/uri v0.3.0 // indirect
4342
go.uber.org/multierr v1.11.0 // indirect
4443
go.uber.org/zap v1.27.0 // indirect
45-
golang.org/x/exp/shiny v0.0.0-20250606033433-dcc06ee1d476 // indirect
46-
golang.org/x/image v0.28.0 // indirect
47-
golang.org/x/mobile v0.0.0-20250606033058-a2a15c67f36f // indirect
4844
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda // indirect
4945
google.golang.org/grpc v1.78.0 // indirect
5046
google.golang.org/protobuf v1.36.10 // indirect

‎cmd/vibeaura/go.sum‎

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -230,18 +230,10 @@ go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=
230230
go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
231231
go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc=
232232
go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg=
233-
golang.design/x/clipboard v0.7.1 h1:OEG3CmcYRBNnRwpDp7+uWLiZi3hrMRJpE9JkkkYtz2c=
234-
golang.design/x/clipboard v0.7.1/go.mod h1:i5SiIqj0wLFw9P/1D7vfILFK0KHMk7ydE72HRrUIgkg=
235233
golang.org/x/crypto v0.46.0 h1:cKRW/pmt1pKAfetfu+RCEvjvZkA9RimPbh7bhFjGVBU=
236234
golang.org/x/crypto v0.46.0/go.mod h1:Evb/oLKmMraqjZ2iQTwDwvCtJkczlDuTmdJXoZVzqU0=
237235
golang.org/x/exp v0.0.0-20250606033433-dcc06ee1d476 h1:bsqhLWFR6G6xiQcb+JoGqdKdRU6WzPWmK8E0jxTjzo4=
238236
golang.org/x/exp v0.0.0-20250606033433-dcc06ee1d476/go.mod h1:3//PLf8L/X+8b4vuAfHzxeRUl04Adcb341+IGKfnqS8=
239-
golang.org/x/exp/shiny v0.0.0-20250606033433-dcc06ee1d476 h1:Wdx0vgH5Wgsw+lF//LJKmWOJBLWX6nprsMqnf99rYDE=
240-
golang.org/x/exp/shiny v0.0.0-20250606033433-dcc06ee1d476/go.mod h1:ygj7T6vSGhhm/9yTpOQQNvuAUFziTH7RUiH74EoE2C8=
241-
golang.org/x/image v0.28.0 h1:gdem5JW1OLS4FbkWgLO+7ZeFzYtL3xClb97GaUzYMFE=
242-
golang.org/x/image v0.28.0/go.mod h1:GUJYXtnGKEUgggyzh+Vxt+AviiCcyiwpsl8iQ8MvwGY=
243-
golang.org/x/mobile v0.0.0-20250606033058-a2a15c67f36f h1:/n+PL2HlfqeSiDCuhdBbRNlGS/g2fM4OHufalHaTVG8=
244-
golang.org/x/mobile v0.0.0-20250606033058-a2a15c67f36f/go.mod h1:ESkJ836Z6LpG6mTVAhA48LpfW/8fNR0ifStlH2axyfg=
245237
golang.org/x/mod v0.32.0 h1:9F4d3PHLljb6x//jOyokMv3eX+YDeepZSEo3mFJy93c=
246238
golang.org/x/mod v0.32.0/go.mod h1:SgipZ/3h2Ci89DlEtEXWUk/HteuRin+HHhN+WbNhguU=
247239
golang.org/x/net v0.48.0 h1:zyQRTTrjc33Lhh0fBgT/H3oZq9WuvRR5gPC70xpDiQU=

‎cmd/vibeaura/main.go‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ func main() {
124124
uiProgram = tea.NewProgram(m, tea.WithAltScreen())
125125
p := uiProgram
126126

127-
// Connect brain callbacks to the TUI program b.OnStreamDelta = func(delta string) {
127+
// Connect brain callbacks to the TUI program
128+
b.OnStreamDelta = func(delta string) {
128129
p.Send(streamDeltaMsg{Delta: delta})
129130
}
130131
b.OnStreamDone = func(full string) {

‎go.work‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.21
1+
go 1.25.0
22

33
use (
44
./cmd/vibeaura

0 commit comments

Comments
 (0)