Skip to content

Latest commit

Β 

History

History
76 lines (48 loc) Β· 1.89 KB

File metadata and controls

76 lines (48 loc) Β· 1.89 KB

Quick Start

The shortest path from zero to talking to the agent.

Install

Pick one:

Linux / macOS (one-liner):

curl -fsSL https://raw.githubusercontent.com/zeroclaw-labs/zeroclaw/master/install.sh | bash

Homebrew (macOS, Linux):

brew install zeroclaw

Windows:

Run setup.bat from the latest release, or see Setup β†’ Windows.

From source:

cargo install --locked --path . # inside a clone

Onboard

zeroclaw onboard

The wizard asks ~9 questions. Minimum inputs:

  1. An LLM provider (Anthropic, OpenAI, Ollama, OpenRouter, etc.) and its API key or endpoint
  2. At least one channel β€” the default cli channel works; add Discord, Telegram, Slack, etc. if you want to chat from those platforms

Everything else has safe defaults. Total time: ~2 minutes.

Talk to it

zeroclaw agent

This drops you into an interactive session using the cli channel. Type, get replies. Pass -m "one-shot message" for a single non-interactive turn.

For always-on deployment, register the service:

zeroclaw service install
zeroclaw service start

Then use a chat platform channel to reach the agent from Discord, Telegram, or wherever you configured.

If the wizard's questions annoy you

Run with defaults and skip channel setup:

zeroclaw onboard --quick --provider ollama --model qwen3.6:35b-a3b

Or go all the way and use YOLO mode β€” one config preset that disables approvals and safety gates. For dev boxes and home labs only.

Next