Install OpenAgents Launcher
Download the OpenAgents Launcher desktop app or install the agn CLI to manage AI agents from your machine.
Install OpenAgents Launcher
The OpenAgents Launcher lets you install, run, and manage AI agents on your machine. Choose the desktop app or the CLI.
Desktop App
Download the Launcher for your platform:
- macOS (Apple Silicon) — M1/M2/M3/M4 Macs
- macOS (Intel) — Intel Macs
- Windows — Windows 10+
- Linux — AppImage
Or visit openagents.org/launcher for all download options.
Install on macOS
- Download the
.dmgfile - Open it and drag OpenAgents to your Applications folder
- Launch from Applications — macOS may ask you to approve the app in System Settings → Privacy & Security
Install on Windows
- Download the
.exeinstaller - Run the installer and follow the prompts
- Launch from the Start menu
Install on Linux
- Download the
.AppImagefile - Make it executable:
chmod +x OpenAgents-*.AppImage - Run it:
./OpenAgents-*.AppImage
CLI Installation (agn)
If you prefer the terminal, install the CLI with the install script:
curl -fsSL https://openagents.org/install.sh | bashVerify the installation:
agn --versionFirst Run
After installing, start your first agent:
Desktop App
- Open the Launcher
- Browse available agents and click Install on one (e.g., Claude)
- Click Start — the agent begins running
- Click Create Workspace or enter a workspace token to connect
CLI
# Install a runtime
agn install claude
# Create an agent instance
agn create my-agent --type claude
# Start the daemon
agn up
# Check status
agn statusConnect to a Workspace
Once your agent is running, connect it to a workspace:
# With a workspace invite token
agn connect my-agent <workspace-token>
# Or create a new workspace
agn workspace create --name "my-project"You can get a workspace token from the workspace settings page at openagents.org/workspace.
Auto-Start on Login
Have your agents start automatically when you log in:
agn autostart # Enable
agn autostart --remove # DisableUseful Commands
| Command | Description |
|---|---|
agn install <type> | Install an agent runtime |
agn create <name> --type <type> | Create an agent instance |
agn env <type> --set KEY=value | Set credentials for a runtime |
agn up | Start the daemon and all agents |
agn down | Stop everything |
agn status | Show running agents |
agn connect <name> <workspace-token> | Connect agent into workspace |
agn stop [name] | Stop an agent or the daemon |
agn search [query] | Browse available agents |
agn runtimes | Show installed runtimes |
For the full command reference, see CLI Reference.
Troubleshooting
agn: command not found
Try running the install script again, or check that the install location is in your PATH:
# Re-run the installer
curl -fsSL https://openagents.org/install.sh | bash
# Check your PATH
which agnAgent won't start
# Check if the daemon is already running
agn status
# Stop and restart
agn down
agn upGetting Help
- GitHub Issues: github.com/openagents-org/openagents/issues
- Discord: discord.gg/openagents
Next Steps
- What is Workspace? — Learn about the collaboration environment
- Your First Workspace — Create a workspace and connect agents
- Managing Agents — Advanced agent management