From b11bd4b50d810286a128cf07b3e2d8f5892c8f1c Mon Sep 17 00:00:00 2001 From: Dan Dunning <2349188+dunningdan@users.noreply.github.com> Date: Wed, 5 Aug 2026 16:02:55 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Fix=20The=20Homebrew=20Install?= =?UTF-8?q?=20Command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The documented install fails on a clean machine: $ brew tap pixee/pixee ==> Tapping pixee/pixee Cloning into '/opt/homebrew/Library/Taps/pixee/homebrew-pixee'... $ brew install pixee Error: Refusing to load formula pixee/pixee/pixee from untrusted tap pixee/pixee. Two causes. `pixee/homebrew-pixee` was renamed to `pixee/homebrew-tap`, so the documented tap name resolves through a GitHub redirect and installs a second tap for the same repo, after which the short name is ambiguous. And since Homebrew 6.0.0 a non-official tap must be trusted before Homebrew will load a formula from it by short name. `brew install pixee/tap/pixee` fixes both: correct tap, and installing by fully qualified name trusts that one formula, so no `brew trust` step is needed. Verified from a clean state twice, once confirming the old instructions install nothing and once confirming this one yields pixee 0.17.0 from a single tap. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_014z9k8q5CwGagYfi5CLgYr9 --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 1d3011a..d786535 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,7 @@ Claude Code and OpenAI Codex can drive it natively. ### Homebrew (macOS and Linux) ```bash -brew tap pixee/pixee -brew install pixee +brew install pixee/tap/pixee ``` ### Direct download