Skip to content

Commit f885344

Browse files
authored
docs: add Homebrew as recommended install method in README and pub.dev README (#60)
1 parent c8f0669 commit f885344

2 files changed

Lines changed: 17 additions & 4 deletions

File tree

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,16 @@ The **ProbeAgent** is a Dart package you add to your Flutter app as a dev depend
5959

6060
## Installation
6161

62-
### Option A — Download pre-built binary (recommended for CI/CD)
62+
### Option A — Homebrew (macOS + Linux, recommended)
63+
64+
```bash
65+
brew tap AlphaWaveSystems/tap
66+
brew install probe
67+
```
68+
69+
Upgrades are handled automatically with `brew upgrade probe`.
70+
71+
### Option B — Download pre-built binary (recommended for CI/CD)
6372

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

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

80-
### Option B — Build from source
89+
### Option C — Build from source
8190

8291
```bash
8392
git clone https://github.com/AlphaWaveSystems/flutter-probe.git

probe_agent/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,14 @@ Both are required. The agent alone does nothing without the CLI to drive it.
2626
The `probe` CLI is a Go binary. Install via one of:
2727

2828
```bash
29-
# Option A: Go install
29+
# Option A: Homebrew (macOS + Linux)
30+
brew tap AlphaWaveSystems/tap
31+
brew install probe
32+
33+
# Option B: Go install
3034
go install github.com/AlphaWaveSystems/flutter-probe/cmd/probe@latest
3135

32-
# Option B: Download from GitHub Releases
36+
# Option C: Download from GitHub Releases
3337
# https://github.com/AlphaWaveSystems/flutter-probe/releases/latest
3438
```
3539

0 commit comments

Comments
 (0)