CLI Installation
The Hype Doc CLI (hype) lets you log wins and manage achievements from your terminal.
Install
Section titled “Install”npm install -g @hypedoc/clinpx @hypedoc/cli log "My first win" --space Workbrew install myhypedoc/tap/hype
# To upgrade laterbrew upgrade myhypedoc/tap/hypeRequires Node.js 24+ (for npm/npx). Platform-specific binaries are also available on GitHub Releases.
Authenticate
Section titled “Authenticate”-
Browser login (recommended)
Terminal window hype auth loginOpens your browser for OAuth authentication. The token is saved automatically.
-
Or set a token directly (for CI/scripts)
Terminal window hype auth token <your-api-token> -
Verify
Terminal window hype auth status
Quick examples
Section titled “Quick examples”# Log a win (interactive)hype log
# Log a win directlyhype log "Shipped the new API endpoint" --space Work --tags impact,backend
# List recent winshype wins --last 7d
# List wins in a spacehype wins --space Work --limit 10
# See your spaceshype spaces
# Create a spacehype spaces create Leadership --emoji 👑
# See your tagshype tags
# Rename a taghype tags rename backend infrastructureCommands
Section titled “Commands”| Command | Description |
|---|---|
hype log | Log a new win |
hype wins | List, show, edit, and delete wins |
hype spaces | List, create, rename, and delete spaces |
hype tags | List, rename, and delete tags |
hype auth | Manage authentication |
Configuration
Section titled “Configuration”The CLI stores its config at ~/.hypedoc/config.json. See Configuration for environment variables and advanced setup.