From f81e0cb396c3392836365a3b338efb07b81d5a67 Mon Sep 17 00:00:00 2001 From: Samgu Lee Date: Thu, 2 Jul 2026 22:18:52 +0900 Subject: [PATCH] docs: update `installation` using `homebrew` --- README.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) 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 ``` ---