docs(install): fix macOS Homebrew install to use official cask - #5152
Conversation
The old instructions referenced 'brew tap tinyhumansai/core && brew install openhuman' which doesn't work because no formula exists in that tap. The correct approach is 'brew install --cask openhuman' using the official Homebrew/homebrew-cask package. Fixes tinyhumansai#3692
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 56 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Comment |
|
| Filename | Overview |
|---|---|
| INSTALL.md | Replaces broken two-step tap install (tinyhumansai/core) with brew install --cask openhuman; a working tap (tinyhumansai/openhuman) referenced in CI is not addressed. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[User wants to install OpenHuman on macOS] --> B{Install method}
B -->|Old docs| C[brew tap tinyhumansai/core]
C --> D[brew install openhuman]
D --> E[❌ Fails — no formula in tap]
B -->|New docs this PR| F[brew install --cask openhuman]
F --> G[✅ Official Homebrew Cask]
B -->|CI release-packages.yml| H[brew tap tinyhumansai/openhuman]
H --> I[brew install openhuman]
I --> J[⚠️ Still used in CI smoke test — not updated by this PR]
Reviews (1): Last reviewed commit: "docs(install): fix macOS Homebrew instal..." | Re-trigger Greptile
| **macOS (Homebrew Cask):** | ||
|
|
||
| ```bash | ||
| brew tap tinyhumansai/core | ||
| brew install openhuman | ||
| brew install --cask openhuman | ||
| ``` |
There was a problem hiding this comment.
Docs and CI now describe two different install paths
The user-facing docs now recommend brew install --cask openhuman, but the release-packages CI workflow still verifies installation using brew tap tinyhumansai/openhuman && brew install openhuman (.github/workflows/release-packages.yml, lines 217–218). Notably, the tap referenced in CI is tinyhumansai/openhuman — not tinyhumansai/core as the old docs had — which suggests that tap may be a live, working formula rather than a broken one. If both paths work (tap formula and cask), the docs should probably pick one definitively; if the tap is also being deprecated, the CI smoke test should be updated to use brew install --cask openhuman to match.
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
The old instructions referenced
brew tap tinyhumansai/core && brew install openhumanwhich doesn't work because no formula exists in that tap.The correct approach is
brew install --cask openhumanusing the official Homebrew/homebrew-cask package.Fixes #3692