Skip to content

Commit 78c342d

Browse files
authored
Merge pull request #78 from nathfavour/master
chore: drop android support and pin dependencies to Go 1.21
2 parents 6d69169 + 44431fa commit 78c342d

54 files changed

Lines changed: 1030 additions & 175 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
"darwin/amd64"
6060
"darwin/arm64"
6161
"windows/amd64"
62-
"android/arm64"
6362
)
6463
6564
# Determine semantic version/tag

AGENTS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ VibeAuracle is not just a CLI; it's a "God-tier" engineering companion that unif
1818
- **No Binaries in Git**: NEVER commit binaries, executables, or build artifacts to the repository.
1919
- **Build Isolation**: All local builds must be directed to the `/build/` directory (which is git-ignored). Create the directory if it does not exist.
2020
- **Strict Go Patterns**: We use Go Workspaces. Maintain decoupling between modules. **Go 1.21 is the intentional minimum version** to ensure the project remains buildable from source on older environments; do not upgrade the toolchain requirement unless explicitly discussed.
21+
- **Dependency Integrity**: Significant effort has been invested in pinning specific versions (e.g., `quic-go`, `libp2p`, `qpack`) to resolve complex dependency conflicts. **Tampering with these versions is heavily frowned upon** and should only be performed when absolutely necessary to fix future breaking errors or security vulnerabilities.
2122
- **Security First**: Never expose secrets. Use the `vault` module. Tool execution requires explicit intent awareness.
2223
- **TUI Integrity**: UI changes must adhere to the Bubble Tea (TEA) pattern. Styling is done via Lipgloss.
2324
- **No Unauthorized PRs**: NEVER create, submit, or merge Pull Requests without explicit, per-action permission from the user.
2425
- **Branch Management**: NEVER create new feature branches or delete any existing branches. All work must be performed on the branch designated by the user.
26+
- **Automated Commits**: We leverage **autocommiter**, an external tool, to manage commits to GitHub for this project. This prevents human and/or AI agents from being confused by changes that are already committed/synced without manual `git commit` calls.
2527
- **Agentic Responsibility**: When acting as an agent, prioritize `executeToolCalls` for multi-step tasks. Use the official Copilot SDK runtime (`/agent /sdk`) for high-stakes engineering.
2628

2729
## 🧠 Specialized Skills

ARCHITECTURE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ The `vibe-brain` module does not just "chat." It implements a recursive agentic
108108

109109
## 5. 🚀 Deployment & Distribution
110110

111-
We target Linux (Arch/Debian), macOS (M-Series), Windows, and Android (Termux).
111+
We target Linux (Arch/Debian), macOS (M-Series), and Windows.
112112

113113
### 5.1 The GitHub Actions Matrix
114114
We use a unified pipeline to cross-compile for all targets.
115-
* **Linux/Android:** Built on `ubuntu-latest`.
115+
* **Linux:** Built on `ubuntu-latest`.
116116
* **macOS:** Built on `macos-latest`.
117117
* **Windows:** Built on `windows-latest`.
118118

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
## 🚀 Quick Install
2323

24-
### 🐧 Linux / 🍎 macOS / 🤖 Android
24+
### 🐧 Linux / 🍎 macOS
2525
```bash
2626
curl -fsSL https://raw.githubusercontent.com/nathfavour/vibeauracle/release/install.sh | sh
2727
```

cmd/vibeaura/chat_handlers.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -380,12 +380,6 @@ func (m *model) handleSlashCommand(cmd string) (tea.Model, tea.Cmd) {
380380
// 1. Try native Go clipboard (talks to X11/Wayland/Win/Mac APIs directly)
381381
writeToClipboard(formatted)
382382

383-
// But we still check for Termux as it's a special sandbox
384-
if _, tErr := exec.LookPath("termux-clipboard-set"); tErr == nil {
385-
cmd := exec.Command("termux-clipboard-set")
386-
cmd.Stdin = strings.NewReader(formatted)
387-
_ = cmd.Run()
388-
}
389383
m.messages = append(m.messages, subtleStyle.Render("✓ Copied Q&A block to clipboard"))
390384
} else {
391385
m.messages = append(m.messages, errorStyle.Render(" COPY ERROR ")+"\nNo Q&A block found to copy.")

cmd/vibeaura/clipboard.go

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
package main
22

33
import (
4-
"os/exec"
5-
"strings"
6-
74
"github.com/atotto/clipboard"
85
)
96

@@ -12,15 +9,5 @@ func initClipboard() error {
129
}
1310

1411
func writeToClipboard(text string) {
15-
// Try native Go clipboard first (for Desktop)
16-
// On Android, this might fail or be a no-op depending on how it's built
17-
// but we'll try it anyway.
1812
_ = clipboard.WriteAll(text)
19-
20-
// Additionally support Termux clipboard if available
21-
if _, err := exec.LookPath("termux-clipboard-set"); err == nil {
22-
cmd := exec.Command("termux-clipboard-set")
23-
cmd.Stdin = strings.NewReader(text)
24-
_ = cmd.Run()
25-
}
2613
}

cmd/vibeaura/go.mod

Lines changed: 84 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,129 @@
11
module github.com/nathfavour/vibeauracle/cmd/vibeaura
22

33
go 1.21
4+
toolchain go1.21.0
45

56
require (
67
github.com/atotto/clipboard v0.1.4
7-
github.com/charmbracelet/bubbles v0.21.1
8-
github.com/charmbracelet/bubbletea v1.3.10
8+
github.com/charmbracelet/bubbles v0.20.0
9+
github.com/charmbracelet/bubbletea v1.2.4
910
github.com/charmbracelet/lipgloss v1.1.1-0.20250404203927-76690c660834
1011
github.com/fogleman/gg v1.3.0
1112
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
1213
github.com/google/uuid v1.6.0
1314
github.com/mattn/go-runewidth v0.0.19
1415
github.com/nathfavour/vibeauracle/brain v0.0.0
1516
github.com/nathfavour/vibeauracle/daemon v0.0.0
17+
github.com/nathfavour/vibeauracle/internal/audit v0.0.0-20260207133514-2858b43bf220
1618
github.com/nathfavour/vibeauracle/internal/doctor v0.0.0-00010101000000-000000000000
1719
github.com/nathfavour/vibeauracle/reactor v0.0.0-00010101000000-000000000000
1820
github.com/nathfavour/vibeauracle/sys v0.0.0
1921
github.com/nathfavour/vibeauracle/tooling v0.0.0-00010101000000-000000000000
2022
github.com/spf13/cobra v1.10.2
21-
golang.org/x/image v0.35.0
23+
golang.org/x/image v0.23.0
2224
golang.org/x/mod v0.32.0
2325
)
2426

2527
require (
2628
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
2729
github.com/aymerick/douceur v0.2.0 // indirect
30+
github.com/benbjohnson/clock v1.3.5 // indirect
31+
github.com/beorn7/perks v1.0.1 // indirect
32+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2833
github.com/charmbracelet/glamour v0.10.0 // indirect
2934
github.com/charmbracelet/x/exp/slice v0.0.0-20250327172914-2fdc97757edf // indirect
3035
github.com/clipperhouse/displaywidth v0.9.0 // indirect
3136
github.com/clipperhouse/stringish v0.1.1 // indirect
3237
github.com/clipperhouse/uax29/v2 v2.5.0 // indirect
38+
github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c // indirect
39+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
40+
github.com/flynn/noise v1.1.0 // indirect
3341
github.com/gorilla/css v1.0.1 // indirect
42+
github.com/gorilla/websocket v1.5.3 // indirect
43+
github.com/huin/goupnp v1.3.0 // indirect
44+
github.com/ipfs/go-cid v0.5.0 // indirect
45+
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
46+
github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect
47+
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
48+
github.com/koron/go-ssdp v0.0.6 // indirect
49+
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
50+
github.com/libp2p/go-flow-metrics v0.2.0 // indirect
51+
github.com/libp2p/go-libp2p v0.36.0 // indirect
52+
github.com/libp2p/go-libp2p-asn-util v0.4.1 // indirect
53+
github.com/libp2p/go-msgio v0.3.0 // indirect
54+
github.com/libp2p/go-netroute v0.2.1 // indirect
55+
github.com/libp2p/go-reuseport v0.4.0 // indirect
56+
github.com/libp2p/go-yamux/v5 v5.0.1 // indirect
57+
github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd // indirect
3458
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
59+
github.com/miekg/dns v1.1.66 // indirect
60+
github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b // indirect
61+
github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc // indirect
62+
github.com/minio/sha256-simd v1.0.1 // indirect
63+
github.com/mr-tron/base58 v1.2.0 // indirect
3564
github.com/muesli/reflow v0.3.0 // indirect
65+
github.com/multiformats/go-base32 v0.1.0 // indirect
66+
github.com/multiformats/go-base36 v0.2.0 // indirect
67+
github.com/multiformats/go-multiaddr v0.16.0 // indirect
68+
github.com/multiformats/go-multiaddr-dns v0.4.1 // indirect
69+
github.com/multiformats/go-multiaddr-fmt v0.1.0 // indirect
70+
github.com/multiformats/go-multibase v0.2.0 // indirect
71+
github.com/multiformats/go-multicodec v0.9.1 // indirect
72+
github.com/multiformats/go-multihash v0.2.3 // indirect
73+
github.com/multiformats/go-multistream v0.6.1 // indirect
74+
github.com/multiformats/go-varint v0.0.7 // indirect
75+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
76+
github.com/nathfavour/vibeauracle/connect v0.0.0-00010101000000-000000000000 // indirect
77+
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
3678
github.com/philippgille/chromem-go v0.7.0 // indirect
79+
github.com/pion/datachannel v1.5.10 // indirect
80+
github.com/pion/dtls/v2 v2.2.12 // indirect
81+
github.com/pion/dtls/v3 v3.0.6 // indirect
82+
github.com/pion/ice/v4 v4.0.10 // indirect
83+
github.com/pion/interceptor v0.1.40 // indirect
84+
github.com/pion/logging v0.2.3 // indirect
85+
github.com/pion/mdns/v2 v2.0.7 // indirect
86+
github.com/pion/randutil v0.1.0 // indirect
87+
github.com/pion/rtcp v1.2.15 // indirect
88+
github.com/pion/rtp v1.8.19 // indirect
89+
github.com/pion/sctp v1.8.39 // indirect
90+
github.com/pion/sdp/v3 v3.0.13 // indirect
91+
github.com/pion/srtp/v3 v3.0.6 // indirect
92+
github.com/pion/stun v0.6.1 // indirect
93+
github.com/pion/stun/v3 v3.0.0 // indirect
94+
github.com/pion/transport/v2 v2.2.10 // indirect
95+
github.com/pion/transport/v3 v3.0.7 // indirect
96+
github.com/pion/turn/v4 v4.0.2 // indirect
97+
github.com/pion/webrtc/v4 v4.1.2 // indirect
98+
github.com/prometheus/client_golang v1.22.0 // indirect
99+
github.com/prometheus/client_model v0.6.2 // indirect
100+
github.com/prometheus/common v0.64.0 // indirect
101+
github.com/prometheus/procfs v0.16.1 // indirect
102+
github.com/quic-go/qpack v0.6.0 // indirect
103+
github.com/quic-go/quic-go v0.58.0 // indirect
104+
github.com/quic-go/webtransport-go v0.9.0 // indirect
37105
github.com/segmentio/asm v1.1.3 // indirect
38106
github.com/segmentio/encoding v0.3.4 // indirect
107+
github.com/spaolacci/murmur3 v1.1.0 // indirect
39108
github.com/yuin/goldmark v1.7.8 // indirect
40109
github.com/yuin/goldmark-emoji v1.0.5 // indirect
41110
go.lsp.dev/jsonrpc2 v0.10.0 // indirect
42111
go.lsp.dev/pkg v0.0.0-20210717090340-384b27a52fb2 // indirect
43112
go.lsp.dev/protocol v0.12.0 // indirect
44113
go.lsp.dev/uri v0.3.0 // indirect
114+
go.uber.org/dig v1.19.0 // indirect
115+
go.uber.org/fx v1.24.0 // indirect
116+
go.uber.org/mock v0.5.2 // indirect
45117
go.uber.org/multierr v1.11.0 // indirect
46118
go.uber.org/zap v1.27.0 // indirect
119+
golang.org/x/sync v0.19.0 // indirect
120+
golang.org/x/telemetry v0.0.0-20251203150158-8fff8a5912fc // indirect
121+
golang.org/x/time v0.12.0 // indirect
122+
golang.org/x/tools v0.29.0 // indirect
47123
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda // indirect
48124
google.golang.org/grpc v1.78.0 // indirect
49125
google.golang.org/protobuf v1.36.10 // indirect
126+
lukechampine.com/blake3 v1.4.1 // indirect
50127
mvdan.cc/sh/v3 v3.12.0 // indirect
51128
)
52129

@@ -59,7 +136,7 @@ require (
59136
github.com/charmbracelet/x/ansi v0.11.5 // indirect
60137
github.com/charmbracelet/x/cellbuf v0.0.15 // indirect
61138
github.com/charmbracelet/x/term v0.2.2 // indirect
62-
github.com/cli/go-gh/v2 v2.13.0 // indirect
139+
github.com/cli/go-gh/v2 v2.11.2 // indirect
63140
github.com/cli/safeexec v1.0.0 // indirect
64141
github.com/danieljoos/wincred v1.1.2 // indirect
65142
github.com/dlclark/regexp2 v1.11.4 // indirect
@@ -107,7 +184,7 @@ require (
107184
github.com/subosito/gotenv v1.6.0 // indirect
108185
github.com/tklauser/go-sysconf v0.3.15 // indirect
109186
github.com/tklauser/numcpus v0.10.0 // indirect
110-
github.com/tmc/langchaingo v0.1.14 // indirect
187+
github.com/tmc/langchaingo v0.1.12 // indirect
111188
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
112189
github.com/yusufpapurcu/wmi v1.2.4 // indirect
113190
go.yaml.in/yaml/v3 v3.0.4 // indirect
@@ -151,3 +228,5 @@ replace github.com/github/copilot-sdk/go => ../../internal/copilot-sdk-go
151228
replace github.com/nathfavour/vibeauracle/internal/vibe => ../../internal/vibe
152229

153230
replace github.com/nathfavour/vibeauracle/reactor => ../../internal/reactor
231+
232+
replace github.com/nathfavour/vibeauracle/connect => ../../internal/connect

0 commit comments

Comments
 (0)