Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Project

OpenBoot is a **macOS-only** Go 1.24 CLI that automates dev-environment setup: Homebrew packages/casks, npm globals, Oh-My-Zsh, macOS `defaults`, and dotfiles. Built on **Cobra** (CLI) + **Charmbracelet** (bubbletea / lipgloss / huh for TUI).
OpenBoot is a **macOS-only** Go 1.25 CLI that automates dev-environment setup: Homebrew packages/casks, npm globals, Oh-My-Zsh, macOS `defaults`, and dotfiles. Built on **Cobra** (CLI) + **Charmbracelet** (bubbletea / lipgloss / huh for TUI).

Entry point: `cmd/openboot/main.go` → `internal/cli.Execute()`.
Core flow: `openboot install` runs a 7-step wizard in `internal/installer/installer.go`.
Expand Down Expand Up @@ -61,6 +61,8 @@ internal/
system/ # RunCommand / RunCommandSilent, arch, git config
ui/ # bubbletea Model pattern, lipgloss styling
updater/ # Auto-update: check GitHub → download → replace
doctor/ # Diagnostic checks for openboot doctor command
logging/ # Structured rotating file log under ~/.openboot/logs/
test/{integration,e2e}/ # integration runs as part of L1; e2e gated by build tags (e2e, vm)
testutil/ # shared helpers + MacHost (destructive E2E on real macOS)
scripts/
Expand Down
Loading