AI/TLDR

AgenticSeek

Private, fully local AI assistant that browses, codes, and plans on your own hardware

Overview

AgenticSeek is an open-source, voice-enabled AI assistant built to run entirely on your own machine. It positions itself as a private, local alternative to Manus AI: it can browse the web, write and run code, and break large tasks into steps without sending your files, conversations, or searches to any cloud service.

The project is designed around local reasoning models such as Deepseek, Magistral, or Qwen running through providers like Ollama or LM Studio, so you can keep everything on your hardware. If your machine is not powerful enough, it can also connect to API providers such as OpenAI, Google Gemini, Deepseek, or TogetherAI instead.

AgenticSeek picks the best agent for each request automatically. You describe what you want, and it routes the job to the right specialist agent, whether that means searching and reading the web, writing code, or planning and coordinating a multi-step task across several agents.

What it does

  • Fully local and private: everything runs on your machine with no cloud dependency or data sharing
  • Autonomous web browsing that can search, read pages, extract information, and fill in web forms hands-free
  • Autonomous coding assistant that can write, debug, and run programs in Python, C, Go, Java, and more
  • Smart agent selection that automatically chooses the best agent for each task you ask
  • Plans and executes complex tasks by splitting big goals into steps across multiple AI agents
  • Voice-enabled interaction with text-to-speech and speech-to-text (in progress)

Getting started

AgenticSeek runs fully in Docker by default and ships with a web interface. You need Git, Python 3.10.x, and Docker Engine with Docker Compose installed before you start.

Clone the repository and create your env file

Clone the project, enter the directory, and copy the example environment file so you can edit it.

shsh
git clone https://github.com/Fosowl/agenticSeek.git
cd agenticSeek
mv .env.example .env

Configure your local provider in config.ini

Edit config.ini to point AgenticSeek at a local provider and a model your hardware can run. A reasoning model such as Deepseek is recommended. API keys are optional when running locally.

iniini
[MAIN]
is_local = True
provider_name = ollama
provider_model = deepseek-r1:14b
provider_server_address = 127.0.0.1:11434

Start your local model provider

Export the provider listen address and start your provider. This example uses Ollama; make sure your model is available before launching AgenticSeek.

shsh
export OLLAMA_HOST=0.0.0.0:11434
ollama serve

Start the services and open the web interface

Launch all Docker services (searxng, redis, frontend, and backend). The first run can take up to 30 minutes to download images, so wait until the backend is healthy, then open the web interface.

shsh
./start_services.sh full  # macOS / Linux
start start_services.cmd full  # Windows
# then open http://localhost:3000/

Commands and code are distilled from the project's own documentation — always check the official repo for the latest.

When to use it

  • Run a private AI assistant that browses, codes, and plans entirely offline so sensitive files and conversations never leave your machine
  • Automate web research tasks such as searching, reading pages, and extracting or filling in information hands-free
  • Generate, debug, and run code in languages like Python, C, Go, and Java without supervision
  • Break a large multi-step project into smaller tasks and let multiple coordinated agents work through them

How AgenticSeek compares

AgenticSeek alongside other open-source assistants & chatbots tools AI/TLDR tracks, ranked by GitHub stars.

ToolStarsWhat it does
OpenClaw★ 380kOpenClaw is a self-hosted personal AI assistant that answers you on WhatsApp, Telegram, Slack, Discord, and many other channels, with voice and a live visual canvas.
Hermes Agent★ 198kA self-improving personal AI agent from Nous Research that builds skills from experience, remembers across sessions, and reaches you on Telegram, Discord, Slack, and more.
Khoj★ 35.2kAn open-source, self-hostable personal AI that chats with any local or online LLM, answers from your own documents and the web, and runs custom agents.
AgenticSeek★ 26.5kPrivate, fully local AI assistant that browses, codes, and plans on your own hardware
Leon★ 17.3kLeon is an open-source personal AI assistant that uses real tools, layered memory, and agent-style planning to complete tasks across local and remote AI providers.
Rowboat★ 15kRowboat connects to your email and meeting notes, builds a long-lived knowledge graph on your machine, and uses that context to draft, summarize, and plan.
Eigent★ 14.3kEigent is an open-source Cowork desktop that builds a custom AI workforce of specialized agents to break down and automate complex tasks on your machine.
Microsoft 365 CopilotAI assistant embedded across Word, Excel, Outlook, Teams and other Microsoft 365 apps that drafts, summarizes, and searches over your work data.