mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-13 15:46:22 +00:00
* feat(cli): production-ready CLI with auto-launch, install, and cross-platform builds - init: accept URL argument and --auto flag for non-interactive setup - install: new command to download BrowserOS app for current platform - launch: auto-detect and launch BrowserOS when server is not running - discovery: prefer server.json (live) over config.yaml (may be stale) - errors: actionable messages guiding users to init/install - goreleaser: cross-platform builds for 6 targets (darwin/linux/windows × amd64/arm64) - ci: GitHub Actions workflow to release CLI binaries on cli/v* tag push * fix(cli): check health status code and add progress dots during launch - Health check in newClient() now verifies HTTP 200, not just no error - waitForServer prints dots during the 30s poll so users know it's working * refactor(cli): make launch an explicit command, remove auto-launch from newClient - launch: new explicit command to find and open BrowserOS app - launch: probes server.json, config, and common ports before launching - launch: if already running, reports URL instead of launching again - init --auto: uses port probing to find running servers - install --deb: errors on non-Linux instead of silently downloading DMG - error messages: guide users to launch/install/init explicitly - removed: auto-launch from newClient() — CLI never does something surprising * fix(cli): platform-native detection, launch, and install for all OSes Detection (isBrowserOSInstalled): - macOS: uses `open -Ra` to query Launch Services (no hardcoded paths) - Linux: checks /usr/bin/browseros (.deb), browseros.desktop, AppImage search - Windows: checks %LOCALAPPDATA%\BrowserOS\Application\BrowserOS.exe and HKCU/HKLM uninstall registry keys Launch (startBrowserOS): - macOS: `open -b com.browseros.BrowserOS` (bundle ID, not path) - Linux: `browseros` binary, AppImage, or `gtk-launch browseros` (fixed: was using xdg-open which opens by MIME type, not desktop files) - Windows: runs BrowserOS.exe from known Chromium per-user install path (fixed: was using `cmd /c start BrowserOS` which doesn't resolve) Install (runPostInstall): - macOS: hdiutil attach → cp -R to /Applications → hdiutil detach - Linux: chmod +x for AppImage, dpkg -i instruction for .deb - Windows: launches installer exe - --deb flag now errors on non-Linux platforms Removed auto-launch from newClient() — CLI never does surprising things. Sources verified from: - packages/browseros/build/common/context.py (binary names per platform) - packages/browseros/build/modules/package/linux.py (.deb structure, .desktop file) - packages/browseros/chromium_patches/chrome/install_static/chromium_install_modes.h (Windows base_app_name="BrowserOS", registry GUID, install paths) - /Applications/BrowserOS.app/Contents/Info.plist (bundle ID)
122 lines
3.3 KiB
Go
122 lines
3.3 KiB
Go
package cmd
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
|
|
"browseros-cli/config"
|
|
"browseros-cli/output"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
var autoDiscover bool
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "init [url]",
|
|
Short: "Configure the BrowserOS server connection",
|
|
Long: `Set up the CLI by providing the MCP server URL from BrowserOS.
|
|
|
|
Open BrowserOS → Settings → BrowserOS MCP to find your Server URL.
|
|
The URL looks like: http://127.0.0.1:9004/mcp
|
|
|
|
The port varies per installation, so this step is required on first use.
|
|
Run again if your port changes.
|
|
|
|
Three modes:
|
|
browseros-cli init <url> Non-interactive, use the provided URL
|
|
browseros-cli init --auto Auto-discover from ~/.browseros/server.json
|
|
browseros-cli init Interactive prompt`,
|
|
Annotations: map[string]string{"group": "Setup:"},
|
|
Args: cobra.MaximumNArgs(1),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
bold := color.New(color.Bold)
|
|
green := color.New(color.FgGreen)
|
|
dim := color.New(color.Faint)
|
|
|
|
var input string
|
|
|
|
switch {
|
|
case len(args) == 1:
|
|
// Non-interactive: URL provided as argument
|
|
input = args[0]
|
|
|
|
case autoDiscover:
|
|
// Auto-discover: server.json → config → probe common ports
|
|
discovered := probeRunningServer()
|
|
if discovered == "" {
|
|
output.Error("auto-discovery failed: no running BrowserOS found.\n\n"+
|
|
" If not running: browseros-cli launch\n"+
|
|
" If not installed: browseros-cli install", 1)
|
|
}
|
|
input = discovered
|
|
fmt.Printf("Auto-discovered server at %s\n", input)
|
|
|
|
default:
|
|
// Interactive prompt (original behavior)
|
|
fmt.Println()
|
|
bold.Println("BrowserOS CLI Setup")
|
|
fmt.Println()
|
|
fmt.Println("Open BrowserOS → Settings → BrowserOS MCP")
|
|
fmt.Println("Copy the Server URL shown there.")
|
|
fmt.Println()
|
|
dim.Println("It looks like: http://127.0.0.1:9004/mcp")
|
|
fmt.Println()
|
|
|
|
reader := bufio.NewReader(os.Stdin)
|
|
fmt.Print("Server URL: ")
|
|
line, err := reader.ReadString('\n')
|
|
if err != nil {
|
|
output.Error("failed to read input", 1)
|
|
}
|
|
input = strings.TrimSpace(line)
|
|
|
|
if input == "" {
|
|
output.Error("no URL provided", 1)
|
|
}
|
|
}
|
|
|
|
baseURL := normalizeServerURL(input)
|
|
|
|
parsed, err := url.Parse(baseURL)
|
|
if err != nil || parsed.Host == "" {
|
|
output.Errorf(1, "invalid URL: %s", input)
|
|
}
|
|
|
|
// Verify connectivity
|
|
fmt.Printf("Checking connection to %s ...\n", baseURL)
|
|
client := &http.Client{Timeout: 5 * time.Second}
|
|
resp, err := client.Get(baseURL + "/health")
|
|
if err != nil {
|
|
output.Errorf(1, "cannot connect to %s: %v\nIs BrowserOS running?", baseURL, err)
|
|
}
|
|
resp.Body.Close()
|
|
|
|
if resp.StatusCode >= 400 {
|
|
output.Errorf(1, "server returned HTTP %d — check the URL", resp.StatusCode)
|
|
}
|
|
|
|
cfg := &config.Config{ServerURL: baseURL}
|
|
if err := config.Save(cfg); err != nil {
|
|
output.Errorf(1, "save config: %v", err)
|
|
}
|
|
|
|
fmt.Println()
|
|
green.Printf("Connected! Config saved to %s\n", config.Path())
|
|
fmt.Println()
|
|
dim.Println("Try: browseros-cli health")
|
|
dim.Println(" browseros-cli pages")
|
|
},
|
|
}
|
|
|
|
cmd.Flags().BoolVar(&autoDiscover, "auto", false, "Auto-discover server URL from ~/.browseros/server.json")
|
|
rootCmd.AddCommand(cmd)
|
|
}
|