releasehound-cli
v0.1.0
Published
ReleaseHound command line interface
Maintainers
Readme
releasehound-cli
Official command-line interface for ReleaseHound.
releasehound-cli lets you inspect tracked apps, review recent releases and reviews, and manage app tracking from the terminal.
Install
npm install -g releasehound-cliOr run it without a global install:
npx releasehound-cli --helpThe package installs two binaries:
rhreleasehound
Requirements
- Node.js 18 or newer
- A ReleaseHound API token
Authentication
For non-interactive environments, set RELEASEHOUND_TOKEN:
export RELEASEHOUND_TOKEN=your_token_hereOptional:
export RELEASEHOUND_BASE_URL=https://releasehound.comYou can also log in interactively:
rh loginQuick Start
rh whoami
rh apps
rh get "Notion"
rh reviews "Notion" --limit 10
rh releases "Notion" --json
rh track "https://apps.apple.com/us/app/notion-notes-projects-docs/id1232780281"Common Commands
rh login
rh logout
rh whoami
rh apps --json
rh feed --limit 10
rh reviews <selector>
rh releases <selector>
rh rating-history <selector> --days 30
rh track <query-or-url>
rh untrack <selector> --yes
rh doctorSelectors can be friendly values like an app name, App Store ID, bundle ID, ReleaseHound app ID, or exact App Store URL.
Output Modes
Most commands default to human-readable text output and also support:
--json--tablewhere applicable
Notes
- The current CLI package is focused on iOS App Store tracking.
RELEASEHOUND_TOKENis the preferred auth path for agents, CI, and other automation.
