$git clone https://github.com/the-open-agent/openagent<br/> <br/>
| 1 | <div align="center"> |
| 2 | |
| 3 | <img src="https://cdn.openagentai.org/img/openagent-logo_1900x450.png" alt="OpenAgent" width="480"> |
| 4 | |
| 5 | <br/> |
| 6 | <br/> |
| 7 | |
| 8 | **Next-generation personal AI assistant powered by LLM, RAG and agent loops — ships as a single binary, no installation needed** |
| 9 | |
| 10 | *Supporting computer-use, browser-use and coding agent* |
| 11 | |
| 12 | <br/> |
| 13 | |
| 14 | [](https://github.com/the-open-agent/openagent/actions/workflows/build.yml) |
| 15 | [](https://github.com/the-open-agent/openagent/releases/latest) |
| 16 | [](https://hub.docker.com/r/casbin/openagent) |
| 17 | [](https://goreportcard.com/report/github.com/the-open-agent/openagent) |
| 18 | [](https://github.com/the-open-agent/openagent/blob/master/LICENSE) |
| 19 | [](https://discord.gg/5rPsrAzK7S) |
| 20 | |
| 21 | <br/> |
| 22 | |
| 23 | [**Live Demo**](https://demo.openagentai.org) · [**Playground**](https://try.openagentai.org) · [**Docs**](https://www.openagentai.org) · [**Discord**](https://discord.gg/5rPsrAzK7S) |
| 24 | |
| 25 | </div> |
| 26 | |
| 27 | --- |
| 28 | |
| 29 | English | [中文](./README_zh.md) |
| 30 | |
| 31 | --- |
| 32 | |
| 33 | ## What is OpenAgent? |
| 34 | |
| 35 | OpenAgent is an open-source personal AI assistant that brings together powerful LLMs, your own knowledge base, and autonomous agent loops — all in one self-hostable platform. Connect any model provider, build a RAG knowledge base from your documents, and let agents browse the web, run code, and call any MCP-compatible tool on your behalf. |
| 36 | |
| 37 | <div align="center"> |
| 38 | <br/> |
| 39 | |
| 40 | | Usage Analytics | Activity Monitoring | |
| 41 | |:------------------------------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------------------------------------------------:| |
| 42 | |  |  | |
| 43 | | **Tool Management** | **Detailed Logs** | |
| 44 | |  |  | |
| 45 | |
| 46 | <br/> |
| 47 | </div> |
| 48 | |
| 49 | --- |
| 50 | |
| 51 | ## Quick Start |
| 52 | |
| 53 | Pre-built binaries for **Linux**, **macOS**, and **Windows** (`amd64` / `arm64`). The installer downloads the latest release and starts OpenAgent on **port 14000**. |
| 54 | |
| 55 | **macOS / Linux / WSL** |
| 56 | ```bash |
| 57 | curl -fsSL https://raw.githubusercontent.com/the-open-agent/openagent/master/scripts/install.sh | bash |
| 58 | ``` |
| 59 | |
| 60 | **Windows (PowerShell)** |
| 61 | ```powershell |
| 62 | irm https://raw.githubusercontent.com/the-open-agent/openagent/master/scripts/install.ps1 | iex |
| 63 | ``` |
| 64 | |
| 65 | > **Windows runs natively** — no WSL, no Docker required. |
| 66 | |
| 67 | Open [http://localhost:14000](http://localhost:14000) and you're in. |
| 68 | |
| 69 | > Optional env vars: `OPENAGENT_VERSION`, `INSTALL_DIR`, `BIN_DIR` |
| 70 | |
| 71 | **Build from source** |
| 72 | |
| 73 | Prerequisites: |
| 74 | - **Backend**: [Go](https://golang.org/dl/) 1.25.0+ |
| 75 | - **Frontend**: [Node.js](https://nodejs.org/) 20+ and [Yarn](https://classic.yarnpkg.com/) 1.x |
| 76 | |
| 77 | ```bash |
| 78 | # Backend |
| 79 | go b |