fix: install Pinecone CLI as a Homebrew cask (formula disabled 2026-03-30) - #7
Open
mcdgavin wants to merge 1 commit into
Open
fix: install Pinecone CLI as a Homebrew cask (formula disabled 2026-03-30)#7mcdgavin wants to merge 1 commit into
mcdgavin wants to merge 1 commit into
Conversation
…3-30) The pinecone-io/tap/pinecone formula was disabled on 2026-03-30 when the CLI migrated to a cask, so the documented install and upgrade commands fail. Switch to the fully qualified cask install and upgrade commands, drop the redundant brew tap step, and add a one-line note for users upgrading from the old formula.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The Pinecone CLI install instructions in the agent-facing docs no longer work. The
pinecone-io/tap/pineconeformula was disabled on 2026-03-30 when the CLI migrated to a cask, so an assistant following these instructions produces:The upgrade advice
brew update && brew upgrade pineconebreaks for the same reason:pineconeis now a cask token, and the formula it used to refer to is disabled.Verified against the tap:
Formula/pinecone.rbcarriesdisable! date: "2026-03-30"pointing at the cask, andCasks/pinecone.rbis the live GoReleaser-generated cask (currently 1.0.1). pinecone-io/cli's README already documents the cask form.Fix
brew tap pinecone-io/tap+brew install pinecone-io/tap/pineconebrew install --cask pinecone-io/tap/pineconebrew tap pinecone-io/tap && brew install pinecone-io/tap/pineconebrew install --cask pinecone-io/tap/pineconebrew update && brew upgrade pineconebrew upgrade --cask pinecone-io/tap/pineconeFile:
AGENTS.md(macOS install block and the pre-quickstart checklist). This file is a copy of_AGENTS-orig-python.mdfrom pinecone-io/pinecone-agents-ref; the same change is submitted there.Each macOS install block also gains one comment line telling the assistant to
brew uninstall pinecone-io/tap/pineconefirst if the CLI was installed before the migration, since Homebrew refuses to install the cask over the disabled formula. Kept to a single comment to stay token-cheap.Why drop the separate
brew tapstepbrew installtaps automatically for a fully qualifieduser/repo/name.brew trust. Homebrew's Tap Trust docs givebrew install --cask user/repository/caskas the canonical form.Verification
brew install --cask pinecone-io/tap/pineconealone tappedpinecone-io/tap, printedTrusted cask pinecone-io/tap/pinecone(item-level trust, not whole-tap), installed cask 1.0.1, andpc versionprints 1.0.1. Exit 0. Note the tap still ships the disabled formula alongside the cask (Tapped 1 cask and 1 formula), which is why the old command produced the confusing "Treating ... as a formula" warning before failing.brew upgrade --cask pinecone-io/tap/pineconeon the fresh install reports the latest version is already installed.grep -rn "brew tap pinecone-io\|brew install pinecone-io/tap\|brew upgrade pinecone"over the repo returns nothing.Related
Same fix across the org: pinecone-io/skills#33, pinecone-io/pinecone-claude-code-plugin#46, pinecone-io/pinecone-cursor-plugin#24, pinecone-io/gemini-cli-extension#22, pinecone-io/pinecone-codex-plugin#3.
Note
Low Risk
Documentation-only changes to Homebrew install commands; no application or runtime code is affected.
Overview
Updates agent-facing CLI install docs in
AGENTS.mdso macOS instructions match Homebrew after the Pinecone CLI moved from a formula to a cask (formula disabled 2026-03-30).Install/upgrade now use
brew install --cask pinecone-io/tap/pineconeandbrew upgrade --cask pinecone-io/tap/pinecone, dropping the separatebrew tapstep and the brokenbrew upgrade pineconepath. A one-line comment tells agents tobrew uninstall pinecone-io/tap/pineconefirst if the old formula is still installed. The same cask commands appear in the Setup Prerequisites checklist for all quickstarts.Reviewed by Cursor Bugbot for commit 1d29cae. Bugbot is set up for automated code reviews on this repo. Configure here.