diff --git a/README.md b/README.md index 635950c..9814972 100644 --- a/README.md +++ b/README.md @@ -65,26 +65,25 @@ REPL CLI provides a **deterministic runtime controller** that: --- -## Installation 📦 +## Installation -### Prerequisites +### Homebrew (Recommended) -- Go >= 1.24 +```bash +brew install replworks/tap/repl-cli +``` -### Install from Source +### Go ```bash -git clone https://github.com/replworks/repl-cli.git -cd repl-cli -go build -o repl ./cmd/repl -sudo mv repl /usr/local/bin/ +go install github.com/replworks/repl-cli/cmd/repl-cli@latest ``` -### Verify Installation +Verify installation: ```bash repl --version -# Output: repl version 0.1.0 +# Output: repl version 0.1.2 ``` ---