CLI Getting Started
Install the yeero CLI, log in, and start your first AI conversation in under 2 minutes.
What is yeero CLI?
yeero CLI is a command-line tool for YeeroAI, letting you chat with AI, manage AI applications, and configure your account — all from the terminal. It communicates with a local Daemon service that bridges the CLI and the YeeroAI cloud API.
Install
macOS / Linux
curl -fsSL https://yeero.ai/cli/install.sh | sh
The install script automatically downloads the correct binary for your platform, places it in ~/.yeero/bin/, and attempts to add it to your PATH.
If your terminal doesn't recognize yeero after installation, run:yeero config add-to-path
then restart your terminal or run source ~/.zshrc (or ~/.bashrc).
Windows
Run in PowerShell (Admin):
irm https://yeero.ai/cli/install.ps1 | iex
The script installs yeero to %USERPROFILE%\.yeero\bin\ and adds it to your user PATH.
Verify Installation
yeero --version
Log In
yeero login
This opens your browser to complete authentication. After login, your credentials are securely stored locally.
To check who you're logged in as:
yeero whoami
First Conversation
# Interactive TUI mode (recommended)
yeero chat
# One-shot mode — get an answer inline
yeero chat --once "What is the capital of France?"
In TUI mode, type your message and press Enter. Press Ctrl+C or type /exit to quit.
Next Steps
- Explore all commands: Command Reference
- Learn advanced chat options: Chat In Depth
- Build AI applications: AI Apps
- Configure language and default model: Config & Daemon