Conversation
- Add interactive TUI (Go/Bubbletea v2) with install wizard, configure, health check, and uninstall screens - Add bubbletea-tui agent persona (self-contained, no external deps) - Add install.sh curl script for single-command setup - Add GoReleaser config and GitHub Actions release workflow - Update setup/teardown scripts for TUI binary management - Update README with new install flow and prerequisites
Go module cache files are read-only by design. The EXIT trap now chmod's before rm to avoid permission denied errors.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds an interactive TUI (Go/Bubbletea v2) and a curl one-liner installer so NEXUS setup becomes:
curl -sSL https://raw.githubusercontent.com/canoo/agent-nexus/main/install.sh | bash nexusChanges
tools/tui/) — Bubbletea v2 app with 4 screens: install wizard, configure, health check, uninstallinstall.sh) — detects OS/arch, downloads pre-built binary from GitHub Releases, clones repopersonas/bubbletea-tui.md) — self-contained persona for future TUI work.goreleaser.yml) — cross-platform binary builds (linux/darwin/windows × amd64/arm64).github/workflows/) — PR checks (build, vet, install cycle test, shellcheck) + release workflowsetup-nexus.sh,teardown-nexus.sh,README.md,.gitignoreWhat to test
cd tools/tui && go build -o nexus . && ./nexusAfter merge
Tag
v1.1.0to trigger GoReleaser and enable the curl installer.