Skip to content
Merged
Show file tree
Hide file tree
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
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,16 @@ The **ProbeAgent** is a Dart package you add to your Flutter app as a dev depend

## Installation

### Option A — Download pre-built binary (recommended for CI/CD)
### Option A — Homebrew (macOS + Linux, recommended)

```bash
brew tap AlphaWaveSystems/tap
brew install probe
```

Upgrades are handled automatically with `brew upgrade probe`.

### Option B — Download pre-built binary (recommended for CI/CD)

Pre-built binaries for Linux, macOS (Intel + Apple Silicon), and Windows are attached to every [GitHub Release](https://github.com/AlphaWaveSystems/flutter-probe/releases).

Expand All @@ -77,7 +86,7 @@ curl -Lo probe https://github.com/AlphaWaveSystems/flutter-probe/releases/latest
chmod +x probe && sudo mv probe /usr/local/bin/
```

### Option B — Build from source
### Option C — Build from source

```bash
git clone https://github.com/AlphaWaveSystems/flutter-probe.git
Expand Down
8 changes: 6 additions & 2 deletions probe_agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,14 @@ Both are required. The agent alone does nothing without the CLI to drive it.
The `probe` CLI is a Go binary. Install via one of:

```bash
# Option A: Go install
# Option A: Homebrew (macOS + Linux)
brew tap AlphaWaveSystems/tap
brew install probe

# Option B: Go install
go install github.com/AlphaWaveSystems/flutter-probe/cmd/probe@latest

# Option B: Download from GitHub Releases
# Option C: Download from GitHub Releases
# https://github.com/AlphaWaveSystems/flutter-probe/releases/latest
```

Expand Down
Loading