Back to Onyx

Onyx CLI

cli/README.md

3.3.04.7 KB
Original Source

Onyx CLI

A terminal interface for chatting with your Onyx agent. Built with Go using Bubble Tea for the TUI framework.

Installation

shell
pip install onyx-cli

Or with uv:

shell
uv pip install onyx-cli

Setup

Run the interactive setup:

shell
onyx-cli configure

This prompts for your Onyx server URL and API key, tests the connection, and saves config to ~/.config/onyx-cli/config.json.

Environment variables override config file values:

VariableRequiredDescription
ONYX_SERVER_URLNoServer base URL (default: https://cloud.onyx.app)
ONYX_API_KEYYesAPI key for authentication
ONYX_PERSONA_IDNoDefault agent/persona ID

Usage

Interactive chat (default)

shell
onyx-cli

One-shot question

shell
onyx-cli ask "What is our company's PTO policy?"
onyx-cli ask --agent-id 5 "Summarize this topic"
onyx-cli ask --json "Hello"
FlagDescription
--agent-id <int>Agent ID to use (overrides default)
--jsonOutput raw NDJSON events instead of plain text

List agents

shell
onyx-cli agents
onyx-cli agents --json

Serve over SSH

shell
# Start a public SSH endpoint for the CLI TUI
onyx-cli serve --host 0.0.0.0 --port 2222

# Connect as a client
ssh your-host -p 2222

Clients can either:

  • paste an API key at the login prompt, or
  • skip the prompt by sending ONYX_API_KEY over SSH:
shell
export ONYX_API_KEY=your-key
ssh -o SendEnv=ONYX_API_KEY your-host -p 2222

Useful hardening flags:

  • --idle-timeout (default 15m)
  • --max-session-timeout (default 8h)
  • --rate-limit-per-minute (default 20)
  • --rate-limit-burst (default 40)

Commands

CommandDescription
chatLaunch the interactive chat TUI (default)
askAsk a one-shot question (non-interactive)
agentsList available agents
serveServe the interactive chat TUI over SSH
configureConfigure server URL and API key
validate-configValidate configuration and test connection
install-skillInstall the agent skill file into a project

Slash Commands (in TUI)

CommandDescription
/helpShow help message
/clearClear chat and start a new session
/agentList and switch agents
/attach <path>Attach a file to next message
/sessionsList recent chat sessions
/configureRe-run connection setup
/connectorsOpen connectors in browser
/settingsOpen settings in browser
/quitExit Onyx CLI

Keyboard Shortcuts

KeyAction
EnterSend message
EscapeCancel current generation
Ctrl+OToggle source citations
Ctrl+DQuit (press twice)
Scroll / Shift+Up/DownScroll chat history
Page Up / Page DownScroll half page

Building from Source

Requires Go 1.24+.

shell
cd cli
go build -o onyx-cli .

Development

shell
# Run tests
go test ./...

# Build
go build -o onyx-cli .

# Lint
staticcheck ./...

Publishing to PyPI

The CLI is distributed as a Python package via PyPI. The build system uses hatchling with manygo to cross-compile Go binaries into platform-specific wheels.

Tag a release and push — the release-cli.yml workflow builds wheels for all platforms and publishes to PyPI automatically:

shell
tag --prefix cli

To do this manually:

shell
git tag cli/v0.1.0
git push origin cli/v0.1.0

The workflow builds wheels for: linux/amd64, linux/arm64, darwin/amd64, darwin/arm64, windows/amd64, windows/arm64.

Manual release

Build a wheel locally with uv. Set GOOS and GOARCH to cross-compile for other platforms (Go handles this natively — no cross-compiler needed):

shell
# Build for current platform
uv build --wheel

# Cross-compile for a different platform
GOOS=linux GOARCH=amd64 uv build --wheel

# Upload to PyPI
uv publish

Versioning

Versions are derived from git tags with the cli/ prefix (e.g. cli/v0.1.0). The tag is parsed by internal/_version.py and injected into the Go binary via -ldflags at build time.