Sandbox
@HKUDS/nanobot

Python framework for self-hosted AI agents

nanobot is a small Python agent runtime that you can run in a browser, terminal, or chat app. It combines tools, memory, MCP integrations, model routing, multi-agent delegation, and automation so you can keep one agent setup working across sessions and channels.

47,990 stars8.5k forksPythonUpdated 6d ago
Nanobot VS OpenClaw: Who Wins?
Julian Goldie SEO21k views • 7 months ago

Videos about this repo

Who it's for

Builders who want a self-hosted agent they can run in a browser, terminal, or chat app.

What it delivers

You can keep one persistent agent setup that remembers context, uses tools, and runs recurring work across sessions.

What it does

WebUI and terminal clients

Run the agent in the browser with `nanobot webui` or in the terminal with `nanobot`.

Chat app connections

Connect the same agent runtime to Telegram, Discord, Slack, WeChat, Email, Mattermost, and other chat apps.

Memory and sessions

Keep session history and long-term memory through Dream so work can continue without re-explaining context.

MCP and tools

Use files, shell, web search, web fetch, MCP, cron, image generation, and subagents as tools.

Automations and gateways

Run long-horizon goals and scheduled automations, or keep the gateway running in the background with `nanobot gateway --background`.

OpenAI-compatible API and SDK

Expose an OpenAI-compatible API and a Python SDK for integrating nanobot with other apps.

How to get it

  1. 1macOS / Linux
    curl -fsSL https://raw.githubusercontent.com/HKUDS/nanobot/main/scripts/install.sh | sh
  2. 2Windows PowerShell
    irm https://raw.githubusercontent.com/HKUDS/nanobot/main/scripts/install.ps1 | iex
  3. 3To preview the plan without changing your environment, pass --dry-run.
    curl -fsSL https://raw.githubusercontent.com/HKUDS/nanobot/main/scripts/install.sh | sh -s -- --dry-run
  4. 4Run
    & ([scriptblock]::Create((irm https://raw.githubusercontent.com/HKUDS/nanobot/main/scripts/install.ps1))) --dry-run
  5. 5Install with uv
    uv tool install nanobot-ai
  6. 6Install from PyPI with pip
    python -m pip install nanobot-ai

README

nanobot README covernanobot README cover

nanobot

🐈 nanobot is an ultra-lightweight, open-source, self-hosted personal AI agent framework written in Python. It runs in a WebUI, terminal, or chat apps and combines tools, long-term memory, MCP integrations, model routing, multi-agent delegation, scheduled automation, and an OpenAI-compatible API in a small, readable core.

Start Here

You want to...Go to
Install nanobot with no terminal/config backgroundStart Without Technical Background
Install quickly and get one CLI replyInstall and Quick Start
Open the bundled browser UIWebUI
Connect Telegram, Discord, WeChat, Slack, Email, Mattermost, or another chat appChat Apps
Configure providers, fallback models, Langfuse, MCP, web tools, or securityDocs and Configuration
Understand or extend the internalsArchitecture and Development
Deploy to the cloud or keep nanobot running as a serviceDeployment

What can nanobot do?

nanobot is a self-hosted personal AI agent runtime. It can:

  • run in a browser WebUI or terminal
  • connect to Telegram, Discord, Slack, WeChat, Email, Mattermost, and other chat apps
  • use tools such as files, shell, web search, web fetch, MCP, cron, image generation, and subagents
  • keep session history and long-term memory through Dream
  • run long-horizon goals and scheduled automations
  • expose a Python SDK and OpenAI-compatible API for integrations
  • deploy as a long-running local or server-side agent gateway

💡 Why nanobot

  • Persistent workflows: goals, memory, tools, and chat context survive long-running work.
  • Chat-native reach: WebUI, API, Telegram, Feishu, Slack, Discord, Teams, email, and Mattermost.
  • Model freedom: OpenAI-compatible APIs, local LLMs, image generation, search, and fallbacks.
  • Small core: readable internals with MCP, memory, deployment, and automation built in.
  • Own your stack: inspect, customize, self-host, and extend without a giant platform.

📦 Install

[!IMPORTANT] If you want the newest features and experiments, install from source.

If you want the most stable day-to-day experience, install from PyPI or with uv.

Pick one install method:

TrackInstall withUpdate withWhat runs
Stableinstaller, uv, or pipthe same package toolone released Python/WebUI/TUI version
Current sourceeditable Git checkoutgit pull --ff-only + editable dependency syncPython, WebUI, and TUI from that checkout

Prerequisites: Python 3.11 or newer. Git and Bun are only needed for a source install. Published packages include the WebUI and fetch a checksummed, version-matched TUI archive—with its licenses, notices, corresponding application source, source offer, and relinking instructions—on first use.

If terminals, API keys, or config files are new to you, use the guided zero-background walkthrough in Start Without Technical Background instead of this compact README path.

One-command setup

macOS / Linux:

curl -fsSL https://raw.githubusercontent.com/HKUDS/nanobot/main/scripts/install.sh | sh

Windows PowerShell:

irm https://raw.githubusercontent.com/HKUDS/nanobot/main/scripts/install.ps1 | iex

The default command installs or upgrades nanobot-ai from PyPI. On a fresh local desktop, it then starts nanobot webui so you can configure the first provider and model in Settings → Models. SSH, headless, existing-config, and older-release paths keep the terminal setup wizard. The installer avoids system-wide pip installs by using an active virtual environment, uv, pipx, or a managed venv under ~/.nanobot/venv. It also prints the exact command it used to run nanobot; reuse that full command below if nanobot is not on PATH.

To preview the plan without changing your environment, pass --dry-run.

curl -fsSL https://raw.githubusercontent.com/HKUDS/nanobot/main/scripts/install.sh | sh -s -- --dry-run
& ([scriptblock]::Create((irm https://raw.githubusercontent.com/HKUDS/nanobot/main/scripts/install.ps1))) --dry-run

If you prefer to inspect the script first, open scripts/install.sh or scripts/install.ps1.

Install with uv

uv tool install nanobot-ai

Install from PyPI with pip

python -m pip install nanobot-ai

If pip reports externally-managed-environment on macOS or Linux, use the one-command installer, uv tool install nanobot-ai, pipx install nanobot-ai, or install inside a virtual environment.

Install from source

Clone the repository and install it in editable mode. Bun is required because the source checkout runs the matching TUI directly instead of downloading an older release binary.

git clone https://github.com/HKUDS/nanobot.git
cd nanobot
python -m venv .venv

Activate it with source .venv/bin/activate on macOS/Linux or .venv\Scripts\Activate.ps1 in Windows PowerShell, then run:

python -m pip install -e .

After that, the normal commands are identical to a stable install. nanobot runs the TUI from this checkout, and nanobot webui rebuilds stale frontend assets automatically. A later git pull --ff-only updates the Python, TUI, and WebUI source together; rerun python -m pip install -e . when Python dependencies change. Contributors should also read CONTRIBUTING.md.

Verify the install:

nanobot --version

If nanobot is not on PATH, invoke it through the method that installed it: reuse the recommended installer's command, use uv tool run --from nanobot-ai nanobot ... or pipx run --spec nanobot-ai nanobot ..., or use the Python executable from the environment where pip installed the package.

🚀 Quick Start

Open nanobot in your browser

nanobot webui

This is the recommended first run. The launcher creates the config and workspace when needed, safely enables the local WebSocket channel after confirmation, starts or joins the shared local gateway, and opens http://127.0.0.1:8765. A fresh install can open before a model is configured, so setup continues in the browser instead of beginning in a JSON file. The first-run WebUI binds to localhost by default and is not exposed to your LAN.

Your first three steps

  1. Open Settings → Models and choose a provider, credential, and model.
  2. Start a new topic and send Hello! to verify the connection.
  3. Before project work, choose the intended workspace and access mode from the composer.

Any normal reply means the provider, model, workspace, and browser gateway are working together.

Keep nanobot running after you close the terminal

nanobot gateway --background

This is the only command that promotes the shared gateway to persistent background mode. It leaves channels and automations running after every local TUI and WebUI launcher exits. Complete first-time model setup with nanobot webui before switching to background mode; open the same localhost WebUI again afterward.

nanobot gateway status
nanobot gateway logs
nanobot gateway restart
nanobot gateway stop

Prefer a gateway-first workflow?

nanobot gateway

This skips WebUI setup and browser opening, then runs the same complete gateway in the current terminal. It is the familiar entry point if you are coming from OpenClaw or already operate agents as long-lived services. The WebUI remains available when its channel is configured; open it manually when needed.

Use nanobot gateway --background for the same direct entry point without keeping the terminal attached. For automatic startup and supervision by the operating system, see Deployment.

Prefer to work entirely in the terminal?

nanobot

This opens the native terminal client with the launch directory as its workspace. It shares saved conversations and the local gateway with the WebUI. The explicit nanobot agent form remains available for compatibility.

  • Type / to discover commands, /sessions to switch conversations, or @ to mention an app, MCP server, or saved session.
  • Paste clipboard images with Ctrl+V or Alt+V, and use $ to complete skill references.
  • Use /diff to inspect file changes, /context to inspect session context, or /branch to continue from a completed reply in a new session.
  • Press Enter to send. While nanobot is working, Enter sends now and Tab sends after the current response. Press Shift+Enter to add a newline (Ctrl+J works in terminals that cannot distinguish modified Enter keys).
  • Use /detach to leave the current task running, or start with nanobot gateway --background when nanobot should stay online after all local clients exit.

Each launch starts a new session by default. Use --session to resume one and --workspace to choose another workspace. See the CLI reference for session branching, diffs, history, shortcuts, gateway lifecycle, and compatibility options.

For one request and an immediate exit, use:

nanobot -m "Hello!"

The one-shot form is useful for a quick provider check, shell scripts, and local automation. If you have not configured a model yet, run nanobot webui and open Settings → Models first.

Need manual JSON, another device on your LAN, or help with provider/model matching? Continue with Install and Quick Start, WebUI, or Troubleshooting.

If nanobot worked for you, a star on GitHub is the simplest way to support the project.

☁️ Deploy

Render — one click

Deploy nanobot's gateway and bundled WebUI from the repository's ready-to-use Blueprint:

Deploy to Render

Render will ask for ANTHROPIC_API_KEY and a private NANOBOT_WEB_TOKEN, then provision persistent storage for sessions, memory, and WebUI history. Persistent disks require a paid Render service.

Self-host

Prefer your own infrastructure? Follow the deployment guide for Docker, Docker Compose, Linux services, and macOS LaunchAgent setup.

🌐 WebUI

The WebUI ships inside the published wheel with no separate frontend build. It is the browser workbench for persistent topics, temporary chats, visible agent activity, workspace controls, Apps, Skills, Automations, and settings. Start it with nanobot webui.

The screenshots below use example conversations, illustrative token counts, and paused schedules.

nanobot WebUI preview with model, project, Apps, Skills, and Automations controls

Use it to:

  • keep separate topics for different tasks and projects;
  • use temporary chats when a conversation should not be saved to history or memory;
  • inspect reasoning, tool calls, file edits, diffs, command output, and generated artifacts;
  • switch models and workspaces without leaving the conversation;
  • configure providers and chat channels, connect Apps, discover Skills, and manage Automations from one place.

Keep related work side by side

Group up to four conversations and arrange them in columns, rows, a grid, or a main pane with supporting panes. Each topic keeps its own history. Select another topic from the @ menu, or drag it into the composer, to let the agent read its context and coordinate work across sessions.

Three conversations in one workbench: a release plan beside quick-start work and documentation review

Choose a project, access mode, and model for each task. Attach documents or images, then send follow-ups immediately or queue them for the next response. Explore topics and panes →

Inspect the work and its context

Expand agent activity to see reasoning, tool calls, and file changes. Switch Settings → Appearance → File edit display to Diff for inline patches. The composer's context indicator shows the current context size, input tokens by round, and cache reuse when the provider reports it.

An expanded file-edit diff above the context usage chart, with input tokens and cache reuse shown across four rounds

Context compaction also appears in the conversation timeline. Explore activity and context →

Bring your tools into the conversation

Use Apps to connect MCP servers, enable Agent Plugins, and manage local CLI App adapters. Add a preset or a custom server, then attach an available tool with @. Skills provide reusable instructions; Settings holds model, voice, image, web, and chat-channel setup.

The Apps MCP catalog with integration presets and controls to add or import a custom MCP server

Explore Apps → · Discover Skills → · Connect chat apps →

Let recurring work run on a schedule

Ask for an automation from the topic that should receive its results. Review the message, schedule, linked chat, and run history in Automations; pause or edit it as your needs change. Local triggers let a script start a saved task on demand.

The Automations view with example recurring tasks, a selected daily brief, its schedule, linked chat, and management controls

Keep the gateway running for scheduled delivery. Explore Automations →

For a conversation that should stay out of saved topic history and long-term memory, use Temporary chat from the header. Temporary chats end when the connection closes and use the default workspace in Restricted mode.

See the WebUI guide for LAN access, background operation, workspace controls, and the full feature tour. Working on the frontend itself? Use webui/README.md.

Architecture

nanobot architecture

🐈 nanobot stays lightweight by centering everything around a small agent loop: messages come in from chat apps, the LLM decides when tools are needed, and memory or skills are pulled in only as context instead of becoming a heavy orchestration layer. That keeps the core path readable and easy to extend, while still letting you add channels, tools, memory, and deployment options without turning the system into a monolith.

Docs

Browse the repo docs for the latest features and GitHub development version, or visit nanobot.wiki for the stable release documentation.

Releases

Latest release: v0.3.0 - The Agency Release

The Agency Release turns nanobot from a durable workbench into an agent runtime that can coordinate helpers, switch models per session, and carry authorized work through to completion.

  • Consult inline subagents without leaving the current task
  • Switch model presets per session directly from the composer
  • Start from a guided WebUI setup with clearer execution controls
  • Apply configuration changes live across a more reliable provider, channel, and tool runtime

Read the v0.3.0 release notes

Recent Updates

  • 2026-09-05 🧠 Visible context-compaction progress in the WebUI, terminal, and chat channels.
  • 2026-09-04 📊 WebUI context usage and cache reuse shown by conversation round.
  • 2026-08-29 🖥️ nanobot opens the native terminal agent by default.
  • 2026-08-27 📎 Clipboard image attachments in the native terminal.
  • 2026-08-19 🔗 Session mentions let agents read and message other saved conversations.
  • 2026-08-12 🖥️ A WebUI workbench with grouped conversation panes and adjustable layouts.

For older updates, see the release archive or GitHub releases.

Open Source Partners

Kimi Open Source FriendsKimi Open Source Friends MiniMax

🤝 Contribute

Use nanobot for a real task, report what broke, and then pick a focused improvement.

Maintainers

Xubin Ren
Xubin Ren

Xubin Ren on X
Yongru Chen
Yongru Chen

Yongru Chen on X

Community Contributors

Athemis axelray-dev yorkhellen 04cb santhreal

Files in the repo

Repository payload31 top-level entries
  • .agent
  • .github
  • docs
  • images
  • nanobot
  • packages
  • scripts
  • tests
  • tui
  • webui
  • .dockerignore
  • .gitattributes
  • .gitignore
  • AGENTS.md
  • CLAUDE.md
  • COMMUNICATION.md
  • conftest.py
  • CONTRIBUTING.md
  • core_agent_lines.sh
  • docker-compose.bwrap.yml
  • docker-compose.yml
  • Dockerfile
  • entrypoint.sh
  • hatch_build.py
  • LICENSE
  • pyproject.toml
  • README.md
  • render-config.json
  • render.yaml
  • SECURITY.md
  • THIRD_PARTY_NOTICES.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More frameworks & sdks

microsoft/
SkillOpt
microsoft/SkillOptFrameworks & SDKs

SkillOpt is a text-space optimizer that trains reusable natural-language skills for frozen LLM agents through trajectory-driven edits, validation-gated updates, and deployable best_skill.md artifacts.

17k
omnigent-ai/omnigentFrameworks & SDKs

Omnigent is an open-source AI agent framework and meta-harness: orchestrate Claude Code, Codex, Cursor, Pi, and custom agents — swap harnesses without rewriting, enforce policies and sandboxing, and collaborate in real time from any device.

9.8k
kyegomez/
OpenMythos
kyegomez/OpenMythosFrameworks & SDKs

A theoretical reconstruction of the Claude Mythos architecture, built from first principles using the available research literature.

15k
D4Vinci/ScraplingFrameworks & SDKs

🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!

80k