Install the Agnes CLI on this machine
Connect your terminal and Claude Code to this server. Copy the one-liner below — it downloads and installs the CLI wheel, then seeds your local config.
One click generates a personal access token, assembles a complete setup script (install CLI, save token, verify), and copies it to your clipboard. Paste the result into Claude Code to finish.
Valid 90 days · token stays in your clipboard only.
What Claude Code will receive
Read-only preview. The real token is generated when you click the button above and is placed directly in your clipboard — it is never rendered on this page.
{% with preview_mode=True %} {% include "_claude_setup_instructions.jinja" %} {% endwith %}Or run manually on a restricted environment
If agnes is not found in a new shell, add
~/.local/bin to your PATH:
Add that line to your ~/.bashrc or
~/.zshrc for persistence.
Run this in your terminal (Linux / macOS). The installer
downloads the wheel and seeds ~/.config/agnes/config.yaml
with this server URL.
Sign in to skip the manual steps — you'll get a one-click setup with a pre-configured token.
If agnes is not found in a new shell, add
~/.local/bin to your PATH:
Add that line to your ~/.bashrc or
~/.zshrc for persistence.
Tokens let the CLI, CI jobs, and Claude Code talk to the server without a browser session.
Open /tokensExport it for the current shell and verify the connection:
Manual install For restricted environments, offline machines, or Windows — download the wheel yourself.
- Download the wheel from {{ server_url }}/cli/download.
-
Install it:
$ uv tool install ./agnes_the_ai_analyst-*.whl— or —$ python3 -m pip install --user ./agnes_the_ai_analyst-*.whl
On macOS (Homebrew) or recent Debian/Ubuntu,
pip install --useris blocked by PEP 668 — preferuv tool installabove. Thepipcommand is for users with an activated virtualenv.If
agnesis not found after install, ensure~/.local/binis on yourPATH:$ export PATH="$HOME/.local/bin:$PATH"Add that line to your
~/.bashrcor~/.zshrcto make it persistent. -
Seed the server URL:
$ mkdir -p ~/.config/agnes && echo "server: {{ server_url }}" > ~/.config/agnes/config.yaml
- Continue with Step 2 — Create a personal access token above.