🛠️ Installation¶
Getting AgentOS running on your machine takes one command.
⚡ One-Line Install (Recommended)¶
The fastest way to get started on macOS or Linux. This script auto-detects your OS and architecture, downloads the correct flavour binary, renames it to agentos, and installs it to your PATH:
# Default: installs Jean-Pierre (PM copilot)
curl -fsSL https://unicolab.github.io/agentos/install.sh | sh
# Choose a different flavour:
curl -fsSL https://unicolab.github.io/agentos/install.sh | sh -s -- --flavour retail
curl -fsSL https://unicolab.github.io/agentos/install.sh | sh -s -- --flavour office
Available Flavours
| Flavour | Description |
|---|---|
| pm (default) | Jean-Pierre — AI Project Management Copilot |
| retail | Retail Operations Assistant |
| office | Office Productivity Assistant |
That's it! After installation, just run agentos serve and you're live. 🎉 The binary is always called agentos regardless of flavour.
🏗️ Supported Platforms¶
All architectures are pre-built and available on the Releases Page.
Each flavour has its own archive. Choose the one that matches your role:
| Flavour | Platform | Archive Pattern |
|---|---|---|
| 🎩 PM | macOS arm64 / amd64, Linux | agentos-pm_{version}_{os}_{arch}.tar.gz |
| 🛒 Retail | macOS arm64 / amd64, Linux | agentos-retail_{version}_{os}_{arch}.tar.gz |
| 🏢 Office | macOS arm64 / amd64, Linux | agentos-office_{version}_{os}_{arch}.tar.gz |
Not sure which macOS version?
Run uname -m in Terminal. arm64 = Apple Silicon, x86_64 = Intel.
Binary is always called agentos
The install script automatically renames the per-flavour binary to agentos. If installing manually, rename it yourself: mv agentos-pm agentos.
🖥️ Manual Install¶
If you prefer to install manually:
No admin access? No problem — run it from any folder:
# 1. Extract
tar xzf agentos_*_darwin_*.tar.gz
# 2. Clear quarantine (no sudo needed on your own files)
xattr -rd com.apple.quarantine ./agentos
codesign --force --sign - ./agentos
# 3. Run directly
./agentos serve
Optional: add to your user PATH
macOS Gatekeeper
If you still see a security warning, go to System Settings → Privacy & Security and click "Allow Anyway" next to the AgentOS entry.
Automatic (recommended):
# Download and run the installer (default: PM flavour)
curl -fsSL https://unicolab.github.io/agentos/install.bat -o install.bat
.\install.bat
# Choose a different flavour:
.\install.bat --flavour retail
Manual:
- Download the
.zipfor your flavour from the Releases Page - Extract the archive
- Rename the binary:
ren agentos-pm.exe agentos.exe - (Optional) Move to a folder in your system Path
- Open PowerShell and run:
⚙️ Initial Configuration¶
Once AgentOS is running, navigate to http://localhost:18080. All configuration can be done directly in the Web UI Settings panel (++cmd+comma++).
CLI Setup is Optional
You can also run agentos setup for terminal-based configuration, but the Web UI provides the same functionality with a premium visual interface.
What you'll need:¶
- 🤖 AI Provider: Ollama (free, local) or an API key (OpenAI, Anthropic, Gemini).
- 🐙 GitHub Token: For repository tracking (optional).
- 🔑 License Key: Request a free beta key at info@unicolab.ai.
🔋 Background Service¶
Run AgentOS automatically on boot: