Installation
From Source (Recommended)
Section titled “From Source (Recommended)”git clone https://github.com/auser/agentzerocd agentzerocargo install --path crates/agentzero-cliRequirements
Section titled “Requirements”- Rust 1.75+ (install via rustup)
- Git (for skill installation from repositories)
- Ollama or another local LLM server (for chat)
Verify Installation
Section titled “Verify Installation”az --version# az 0.1.0
az doctorShell Completions
Section titled “Shell Completions”# Zshaz completions zsh > ~/.zfunc/_az
# Bashaz completions bash > ~/.local/share/bash-completion/completions/az
# Fishaz completions fish > ~/.config/fish/completions/az.fishLLM Provider Setup
Section titled “LLM Provider Setup”AgentZero needs a local model server for chat. Choose one:
Ollama (Recommended)
Section titled “Ollama (Recommended)”# Install Ollamacurl -fsSL https://ollama.com/install.sh | sh
# Pull a modelollama pull llama3.2
# Start the serverollama servellama.cpp
Section titled “llama.cpp”# Start the server with your model./llama-server -m model.gguf --host 0.0.0.0 --port 8080python -m vllm.entrypoints.openai.api_server --model meta-llama/Llama-3.2-3BLM Studio
Section titled “LM Studio”Download from lmstudio.ai, load a model, and start the local server.