Skip to main content

Prerequisites

  • Basic terminal/command line experience
  • LLM API key (OpenAI, Anthropic, Gemini, watsonx, or free via OpenRouter / Groq) or Ollama (requires a powerful computer)
  • Fast internet (2–3GB download)

Installation

One-Line Install

Open the terminal and run this command to install Agent Stack:
sh -c "$(curl -LsSf https://raw.githubusercontent.com/i-am-bee/agentstack/install/install.sh)"
The installer sets up uv and the agentstack-cli on your host machine. Agent Stack uses a virtual machine (managed via a bundled Lima binary) to keep your host machine clean. The Kubernetes cluster running the Agent Stack server, agent containers, and associated storage and services live entirely inside the VM and not on your host directly.For details on what happens under the hood, refer to the Manual Install section or read the install.sh source code.
1

Install uv

Follow the installation instructions. Agent Stack uses uv to manage its own internal Python environment.
2

Linux only: Install QEMU

On Linux, Lima requires QEMU. Install it via these (instructions).
3

Install Agent Stack

Open a new terminal and run:
uv python install --quiet --python-preference=only-managed --no-bin 3.13 && uv tool install --refresh --force --python-preference=only-managed --python=3.13 agentstack-cli && agentstack self install
Follow the interactive prompts to finish setup and optionally start the VM.

Usage

agentstack ui                          # Launch web interface
agentstack list                        # See what agents are available
agentstack run chat "Hi, who are you"  # Send a message to chat agent
agentstack run chat                    # Try interactive mode
agentstack info chat                   # View agent details
agentstack --help                      # See all options

Platform Management

agentstack platform start        # Start platform
agentstack model setup           # Configure LLM provider
agentstack platform stop         # Stop (keeps data)
agentstack platform delete       # Delete all data

Version & Upgrades

If you are having issues with these commands, you may be running an old version of Agent Stack. Run the one-line install script above to upgrade to the latest version.
agentstack self version          # Check version
agentstack self upgrade          # Update
agentstack self uninstall        # Remove completely