Public alpha · v0.1.0-alpha
Cryptohopper in your terminal
Build, deploy, and monitor Cryptohopper projects without leaving your shell. One single-file binary. Full parity with the web console. Scriptable for CI.
~ cryptohopper login
$ cryptohopper login Opening https://www.cryptohopper.ai/cli/authorize?state=… in your browser… ✓ Logged in as you@example.com Token saved to ~/.cryptohopper/config.json $ cryptohopper new "a crypto RSI dashboard for BTC/ETH" --subdomain my-rsi ✓ Project created name: A Crypto Rsi Dashboard subdomain: my-rsi type: bot █████░ Step 5/6 generating: Building project… ✓ Live at https://my-rsi.cryptohopper.app
Install in 30 seconds
Single binary. No Node required. Highlighted card matches your OS.
macOS · Apple Silicon
Downloadcurl -L https://github.com/cryptohopper/cryptohopperai-cli/releases/latest/download/cryptohopper-darwin-arm64 -o /usr/local/bin/cryptohopper && chmod +x /usr/local/bin/cryptohopper
macOS · Intel
Downloadcurl -L https://github.com/cryptohopper/cryptohopperai-cli/releases/latest/download/cryptohopper-darwin-x64 -o /usr/local/bin/cryptohopper && chmod +x /usr/local/bin/cryptohopper
Linux · x64
Downloadcurl -L https://github.com/cryptohopper/cryptohopperai-cli/releases/latest/download/cryptohopper-linux-x64 -o /usr/local/bin/cryptohopper && chmod +x /usr/local/bin/cryptohopper
Windows · x64
Download# In PowerShell, as Administrator: Invoke-WebRequest https://github.com/cryptohopper/cryptohopperai-cli/releases/latest/download/cryptohopper-windows-x64.exe -OutFile $env:USERPROFILE\cryptohopper.exe
First-launch warning
The binaries aren't yet code-signed. macOS shows a Gatekeeper prompt — right-click → Open, or run xattr -d com.apple.quarantine /usr/local/bin/cryptohopper. Windows shows SmartScreen — click "More info" → "Run anyway". Apple notarisation and Authenticode signing are on the roadmap.
What you can do
Create a project from a prompt
cryptohopper new "a crypto RSI dashboard for BTC and ETH"Watch a deploy live
cryptohopper status my-bot --watchList your projects
cryptohopper listOpen the live URL
cryptohopper open my-botFAQ
What can I do with the cryptohopper CLI?
Anything the web console can: create projects from a prompt, list and open them, watch deploys live, cancel and reactivate, manage your devices. It's a thin client over the same /api/v1 endpoints — no separate quotas, no separate billing.
Do I need a paid plan?
No. CLI device tokens are scoped to your normal account plan, exactly like signing in on the web. Programmatic API keys (for CI/CD scripts) still require the Business plan, but the CLI itself does not.
How does login work?
`cryptohopper login` opens your default browser to cryptohopper.ai, you click Approve, and the CLI receives a long-lived token bound to that machine. On SSH or CI runners, use `cryptohopper login --device` instead — it shows a code you paste into a webpage.
Is my token safe on disk?
The token lives at ~/.cryptohopper/config.json with 0600 perms (owner read/write only). OS keychain support (macOS Keychain, Windows Credential Manager) is on the roadmap. You can revoke any device's token from your account settings.
Why does macOS warn me about an unidentified developer?
We're not yet code-signed. Right-click the binary and choose Open the first time, or run `xattr -d com.apple.quarantine /usr/local/bin/cryptohopper` to bypass Gatekeeper. Apple notarisation is on the roadmap — when it lands, the warning goes away.
Why does Windows show a SmartScreen warning?
Same reason: the binary isn't yet signed with a code-signing certificate. Click 'More info' → 'Run anyway' the first time. Authenticode signing is on the roadmap.
Can I script with the CLI?
Yes. Every command supports `--json` for machine-readable output, and exit codes are documented (0=ok, 2=auth, 3=rate-limited, 4=server, 5=network). Set CRYPTOHOPPER_TOKEN in your CI environment to skip the interactive login.
Ready to ship from the terminal?
Pick your OS above, paste the install command, and run cryptohopper login.
Or verify checksums: SHA256SUMS