Open the terminal and run this command to install Agent Stack:
Copy
Ask AI
sh -c "$(curl -LsSf https://raw.githubusercontent.com/i-am-bee/agentstack/install/install.sh)"
This interactive script installs Agent Stack CLI, downloads and starts the platform, prompts you to configure your LLM API key, then launches the web interface.
Follow the interactive prompts to finish installation and setup.
Windows support is experimental and requires Windows 11 22H2 or later. For the best experience, we recommend Linux or macOS.
1
Install WSL
Open PowerShell as Administrator and run:
Copy
Ask AI
wsl.exe --update
Follow the instructions displayed, if any, and continue by running:
Copy
Ask AI
wsl.exe --install
The command output may instruct you to restart your PC. Do so, and afterwards run the same command again. It may take up to two restarts to complete the installation process.WSL is properly set up once you reach a working Linux shell. You can verify this by running wsl.exe without arguments. Once you have a working shell, you can close it and proceed to the next step.
Even though WSL2 is required, Agent Stack CLI can’t be installed inside WSL2. All subsequent commands should be run from Windows PowerShell.
Close and reopen your terminal after installation.
3
Configure Ollama (optional)
If you plan to use Ollama, we recommend installing the Windows app.In the Ollama app settings, it’s necessary to enable “Expose Ollama to the network” in order for it to be accessible by Agent Stack. After enabling this option, you may get a firewall prompt where you need to select “Allow”.
4
Configure local agents
Run in PowerShell:
Copy
Ask AI
setx HOST 0.0.0.0
Close and reopen your terminal after this.
This will make local agents accessible over the local network, which is needed for Agent Stack to access them. When running local agents, you may encounter firewall prompts where you need to select “Allow”.
agentstack ui # Launch web interfaceagentstack list # See what agents are availableagentstack run chat "Hi!" # Send a message to chat agentagentstack run chat # Try interactive modeagentstack info chat # View agent detailsagentstack --help # See all options
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.