Problem
The README installation section currently recommends:
brew trust --formula gentleman-programming/tap/gentle-ai
This only trusts one formula. Users who later try to brew install other formulas from the same tap (e.g. engram, gga, gentle-creation) will hit the same Refusing to load formula from untrusted tap error.
Suggested Fix
Change to --tap so the entire tap is trusted at once:
brew trust --tap gentleman-programming/tap
This is a one-time command that covers all current and future formulas from the tap, which is the expected behavior for users who explicitly chose to add the tap.
Reproduction
- Set
HOMEBREW_REQUIRE_TAP_TRUST (Homebrew 6.0+)
brew tap Gentleman-Programming/homebrew-tap
brew trust --formula gentleman-programming/tap/gentle-ai
brew install gentle-ai → ✅ works
brew install gentleman-programming/tap/engram → ❌ Refusing to load formula from untrusted tap
Environment
- Homebrew 6.0.0
HOMEBREW_REQUIRE_TAP_TRUST: set
- Linux (also affects macOS)
Problem
The README installation section currently recommends:
This only trusts one formula. Users who later try to
brew installother formulas from the same tap (e.g.engram,gga,gentle-creation) will hit the sameRefusing to load formula from untrusted taperror.Suggested Fix
Change to
--tapso the entire tap is trusted at once:This is a one-time command that covers all current and future formulas from the tap, which is the expected behavior for users who explicitly chose to add the tap.
Reproduction
HOMEBREW_REQUIRE_TAP_TRUST(Homebrew 6.0+)brew tap Gentleman-Programming/homebrew-tapbrew trust --formula gentleman-programming/tap/gentle-aibrew install gentle-ai→ ✅ worksbrew install gentleman-programming/tap/engram→ ❌Refusing to load formula from untrusted tapEnvironment
HOMEBREW_REQUIRE_TAP_TRUST: set