docs: update CLI install command to pip install hydradb-cli#48
Merged
Aadil-5122 merged 1 commit intomainfrom Apr 14, 2026
Merged
docs: update CLI install command to pip install hydradb-cli#48Aadil-5122 merged 1 commit intomainfrom
Aadil-5122 merged 1 commit intomainfrom
Conversation
Now that the package is published to PyPI, use the standard pip install command instead of the GitHub URL. Signed-off-by: Vorflux AI <noreply@vorflux.com>
Greptile SummaryThis PR updates the HydraDB CLI install command from a git-based URL to
Confidence Score: 4/5Do not merge until The change itself is a single-line docs update with no logic errors. The P1 concern is purely a timing/precondition issue: the PR author explicitly flagged the package must be published first, and the package does not appear to be on PyPI yet. Once the PyPI release is confirmed, this is a 5/5 merge. plugins/cli.mdx — verify PyPI release of hydradb-cli before merging Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant PyPI
participant CLI as hydradb-cli
participant HydraDB as HydraDB API
Note over User,PyPI: After PR is merged and package is live on PyPI
User->>PyPI: pip install hydradb-cli
PyPI-->>User: installs hydradb-cli package
User->>CLI: hydradb login
CLI-->>User: prompts for API key & tenant ID
User->>CLI: hydradb whoami
CLI->>HydraDB: GET /auth/whoami
HydraDB-->>CLI: tenant info
CLI-->>User: displays auth status
Reviews (1): Last reviewed commit: "docs: update CLI install command to pip ..." | Re-trigger Greptile |
SohamRatnaparkhi
approved these changes
Apr 14, 2026
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.
Summary
Update the HydraDB CLI plugin page to use the standard PyPI install command now that the package is published.
Changes
plugins/cli.mdx: Changed install command frompip install git+https://github.com/usecortex/hydradb-cli.gittopip install hydradb-cliNote: Merge this PR after hydradb-cli is published to PyPI (after usecortex/hydradb-cli#9 is merged and a release is created).
Testing