⚡️next-generation personal AI assistant powered by LLM, RAG and agent loops, supporting computer-use, browser-use and coding agent, demo: https://demo.openagentai.org
OpenAgent is a self-hostable personal AI assistant written in Go that ships as a single binary for Linux, macOS, and Windows, running on port 14000 with no installation beyond a one-line curl or PowerShell command. It connects to more than 30 model providers, including Anthropic Claude, OpenAI, Google Gemini, and Ollama, and lets users switch providers per conversation without code changes. The platform combines autonomous agent loops with a RAG knowledge base, allowing the assistant to ingest user documents and retrieve relevant context at query time. Agent capabilities include browser automation (navigating, clicking, and screenshotting real pages), shell execution, web search, and Office file read/write for Word, Excel, and PowerPoint. MCP-compatible servers can be connected via SSE, Stdio, or StreamableHTTP transports, exposing their tools directly to the agent loop. Every tool invocation, its arguments, and return value are logged step by step. Developers, researchers, and self-hosters who want a multi-provider, multi-agent environment without cloud lock-in are the primary audience.
- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Healthy fork ratio
- ✓Clear description
- ✓Topics declared
- ✓Mature repo (>1y old)
git clone https://github.com/the-open-agent/openagent && cp openagent/*.md ~/.claude/agents/24 items in this repository
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
Manage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
Use when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel="bluebubbles".
Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.
Delegate coding tasks to Codex, Claude Code, or Pi agents via background process. Use when: (1) building/creating new features or apps, (2) reviewing PRs (spawn in temp dir), (3) refactoring large codebases, (4) iterative coding that needs file exploration. NOT for: simple one-liner fixes (just edit), reading code (use read tool), thread-bound ACP harness requests in chat (for example spawn/run Codex or Claude Code in a Discord thread; use sessions_spawn with runtime:"acp"), or any work in ~/clawd workspace (never spawn agents here). Claude Code: use --print --permission-mode bypassPermissions (no PTY). Codex/Pi/OpenCode: pty:true required.
Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
Use when interacting with GitHub repositories, authentication, remotes, pushes, or repository creation through the GitHub CLI and related git workflows.
Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts.
Host security hardening and risk-tolerance configuration for OpenClaw deployments. Use when a user asks for security audits, firewall/SSH/update hardening, risk posture, exposure review, OpenClaw cron scheduling for periodic checks, or version status checks on a machine running OpenClaw (laptop, workstation, Pi, VPS).
CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).
Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation.
Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
Subagents overview
<div align="center"> <img src="https://cdn.openagentai.org/img/openagent-logo_1900x450.png" alt="OpenAgent" width="480"> <br/> <br/> **Next-generation personal AI assistant powered by LLM, RAG and agent loops — ships as a single binary, no installation needed** *Supporting computer-use, browser-use and coding agent* <br/> [](https://github.com/the-open-agent/openagent/actions/workflows/build.yml) [](https://github.com/the-open-agent/openagent/releases/latest) [](https://hub.docker.com/r/casbin/openagent) [](https://goreportcard.com/report/github.com/the-open-agent/openagent) [](https://github.com/the-open-agent/openagent/blob/master/LICENSE) [](https://discord.gg/5rPsrAzK7S) <br/> [**Live Demo**](https://demo.openagentai.org) · [**Playground**](https://try.openagentai.org) · [**Docs**](https://www.openagentai.org) · [**Discord**](https://discord.gg/5rPsrAzK7S) </div> --- English | [中文](./README_zh.md) --- ## What is OpenAgent? 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. <div align="center"> <br/> | Usage Analytics | Activity Monitoring | |:------------------------------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------------------------------------------------:| |  |  | | **Tool Management** | **Detailed Logs** | |  |  | <br/> </div> --- ## Quick Start Pre-built binaries for **Linux**, **macOS**, and **Windows** (`amd64` / `arm64`). The installer downloads the latest release and starts OpenAgent on **port 14000**. **macOS / Linux / WSL** ```bash curl -fsSL https://raw.githubusercontent.com/the-open-agent/openagent/master/scripts/install.sh | bash ``` **Windows (PowerShell)** ```powershell irm https://raw.githubusercontent.com/the-open-agent/openagent/master/scripts/install.ps1 | iex ``` > **Windows runs natively** — no WSL, no Docker required. Open [http://localhost:14000](http://localhost:14000) and you're in. > Optional env vars: `OPENAGENT_VERSION`, `INSTALL_DIR`, `BIN_DIR` **Build from source** Prerequisites: - **Backend**: [Go](https://golang.org/dl/) 1.25.0+ - **Frontend**: [Node.js](https://nodejs.org/) 20+ and [Yarn](https://classic.yarnpkg.com/) 1.x ```bash # Backend go build # Frontend cd web && yarn install && yarn start ``` **Docker** ```bash docker-compose up ``` Open [http://localhost:14000](http://localhost:14000) once the containers are running. --- ## Features ### 🤖 30+ Model Providers Connect every major LLM provider and switch between them per conversation — no code changes required. <div align="center"> `OpenAI` · `Azure OpenAI` · `Anthropic Claude` · `Google Gemini` · `DeepSeek` · `Mistral` · `Grok` · `Qwen` · `Doubao` · `Moonshot` · `ChatGLM` · `Baichuan` · `Ernie` · `iFlytek` · `HuggingFace` · `Cohere` · `Amazon Bedrock` · `OpenRouter` · `Ollama` · `and more` </div> --- ### 🔄 Autonomous Agent Loops | Capability | Description | |:---------------------------|:---------------------------------------------------------------------------------------------------| | **Browser-Use** | Drive a real browser — navigate, click, fill forms, scrape, and screenshot pages | | **Web Search & Fetch** | Search the web and pull live page content into the agent's context | | **Shell Execution** | Run shell commands and scripts directly from the agent loop | | **Office Automation** | Read and write Word, Excel, and PowerPoint files | | **MCP Integration** | Plug in any MCP-compatible server (SSE / Stdio / StreamableHTTP) and expose its tools to the agent | | **Transparent Tool Calls** | See every tool invocation, its arguments, and its return value — step by step | --- ### 📚 RAG & Knowledge Base | Capability | Description | |:-------------------------|:----------------------------------------------------------------------------------------------| | **Document Ingestion** | Upload PDFs, Word docs, Excel sheets, and more — chunked, embedded, and indexed automatically | | **Semantic Search** | Retrieves the most relevant passages from your knowledge base before each LLM response | | **Pluggable Embeddings** | OpenAI, Azure, Gemini, Qwen, Cohere, Jina, HuggingFace, local models, and more | | **Isolated Stores** | Organise knowledge into separate stores; assign them per chat or per application | --- ### ⚡ Workflow Automation | Capability | Description | |:-------------------------------------|:--------------------------------------------------------------------| | **Visual Workflow Builder** | Compose multi-step pipelines with a BPMN-style drag-and-drop editor | | **Conditional & Parallel Execution** | Branch on gateway conditions; run independent tasks concurrently | | **Task Scheduling** | Trigger workflows or agent jobs on a recurring schedule | | **Usage Analytics** | Track token consumption and cost per provider, model, and user | --- ### 🏗️ Platform Features | Capability | Description | |:----------------------------|:------------------------------------------------------------------------------------------------------------------| | **Single Binary** | One executable file — no installer, no runtime dependencies. Download and run instantly on any supported platform | | **Native Windows Support** | Runs directly on Windows — no WSL, no Docker, no Linux subsystem required | | **Single Sign-On** | OIDC / OAuth2 / LDAP / SAML via the built-in auth layer | | **Multi-tenancy** | Isolated workspaces per user or organisation | | **REST API + Swagger UI** | Every feature is accessible programmatically | | **Audit Logs** | Full activity history for every action | | **File & Media Management** | Built-in storage for files, images, and video content | --- ### 📊 Admin Dashboard | Panel | What you get | |:------------------------|:--------------------------------------------------------------------------------------------| | **Usage Statistics** | Token & cost metrics per app, user, and model — with interactive charts and heatmaps | | **Activity Monitoring** | Real-time system operations with success/error rates, operation-type breakdowns, and trends | | **Tool Management** | Centralised CRUD for all agent tools: browser, shell, office, web search, and more | | **Request Logs** | Full request/response payloads with JSON formatting, filtering, and debugging | --- ## Online Demo | Environment | URL | Notes | |:-----------------|:-----------------------------|:--------------------------------------------------| | **Live Preview** | https://demo.openagentai.org | Read-only tour — no account needed | | **Playground** | https://try.openagentai.org | Make changes freely — data resets every 5 minutes | --- ## Documentation Full docs at **[https://www.openagentai.org](https://www.openagentai.org)** --- ## Community - **Discord** — [discord.gg/5rPsrAzK7S](https://discord.gg/5rPsrAzK7S) · chat with maintainers and other u
What people ask about openagent
What is the-open-agent/openagent?
+
the-open-agent/openagent is subagents for the Claude AI ecosystem. ⚡️next-generation personal AI assistant powered by LLM, RAG and agent loops, supporting computer-use, browser-use and coding agent, demo: https://demo.openagentai.org It has 5.2k GitHub stars and was last updated today.
How do I install openagent?
+
You can install openagent by cloning the repository (https://github.com/the-open-agent/openagent) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is the-open-agent/openagent safe to use?
+
Our security agent has analyzed the-open-agent/openagent and assigned a Trust Score of 100/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains the-open-agent/openagent?
+
the-open-agent/openagent is maintained by the-open-agent. The last recorded GitHub activity is from today, with 46 open issues.
Are there alternatives to openagent?
+
Yes. On ClaudeWave you can browse similar subagents at /categories/agents, sorted by popularity or recent activity.
Deploy openagent to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/the-open-agent-openagent)<a href="https://claudewave.com/repo/the-open-agent-openagent"><img src="https://claudewave.com/api/badge/the-open-agent-openagent" alt="Featured on ClaudeWave: the-open-agent/openagent" width="320" height="64" /></a>More Subagents
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
The agent that grows with you
Java 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Production-ready platform for agentic workflow development.
The agent engineering platform.
🤯 LobeHub is your Chief Agent Operator, organizing your agents into 7×24 operations by hiring, scheduling, and reporting on your entire AI team.