From e39ba599332867196b641cf51502319978795b35 Mon Sep 17 00:00:00 2001 From: Robin Guignard-Perret Date: Tue, 7 Apr 2026 12:17:49 +0200 Subject: [PATCH 1/2] Add Homebrew installation instructions to README Co-Authored-By: Claude Sonnet 4.6 --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 868d609..7e13b35 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,16 @@ Tellers CLI to interact with `tellers.ai` from the terminal. -## Quickstart +## Installation -Build the CLI: +### Homebrew (macOS and Linux) + +```bash +brew tap tellers-ai/homebrew +brew install tellers +``` + +### Build from source ```bash # Generate the client crate From 0f0a696950bdd6e9c868b62784fa32cc3b7ddbc1 Mon Sep 17 00:00:00 2001 From: Robin Guignard-Perret Date: Tue, 7 Apr 2026 12:23:43 +0200 Subject: [PATCH 2/2] Fix Homebrew tap repo name to homebrew-tellers brew tap tellers-ai/homebrew was resolving to homebrew-homebrew due to Homebrew's naming convention. Rename to homebrew-tellers so the correct command is: brew tap tellers-ai/tellers Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/release.yml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b2c785..41790c6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -142,7 +142,7 @@ jobs: # ── 4. Push updated formula to the Homebrew tap ───────────────────────────── # # Prerequisites (one-time setup): - # 1. Create repo tellers-ai/homebrew (or rename to homebrew-tellers for `brew tap tellers-ai/tellers`) + # 1. Create repo tellers-ai/homebrew-tellers (`brew tap tellers-ai/tellers`) # 2. Add Formula/tellers.rb (use .github/homebrew/tellers.rb as the seed) # 3. Create a GitHub PAT (classic) with the "repo" scope # 4. Add it as secret HOMEBREW_TAP_TOKEN in this repo's settings @@ -211,7 +211,7 @@ jobs: env: TAP_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }} run: | - git clone "https://x-access-token:${TAP_TOKEN}@github.com/tellers-ai/homebrew.git" tap + git clone "https://x-access-token:${TAP_TOKEN}@github.com/tellers-ai/homebrew-tellers.git" tap mkdir -p tap/Formula cp tellers.rb tap/Formula/tellers.rb cd tap diff --git a/README.md b/README.md index 7e13b35..9a175df 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Tellers CLI to interact with `tellers.ai` from the terminal. ### Homebrew (macOS and Linux) ```bash -brew tap tellers-ai/homebrew +brew tap tellers-ai/tellers brew install tellers ```