Atombot: Atomic-lightweight personal AI assistant
๐ A tiny but powerful personal AI assistant inspired by OpenClaw and nanobot.
โ๏ธ Core functionality in just ~500 lines of code โ ~90% smaller than nanobot (~4k lines) and ~99.9% smaller than OpenClaw (400k+ lines).
โจ Features
- ๐ง Multiple LLM provider support: Supports OpenAI-compatible endpoints and Codex(CLI mode).
- ๐ฌ Gateway: Chat with the same agent via Telegram with allowlist-based access control.
- ๐งพ Persistent memory: Long-term memory with searchable daily history logs.
- โฐ Scheduled reminders: Supports both one-time and recurring reminders.
- ๐งฉ Skills system: Compatible with OpenClaw
SKILL.mdformat with metadata support. - ๐ Fast onboarding: Provider-first setup that auto-detects Codex, LM Studio, and Ollama models, then bootstraps config and workspace.
๐ฆ Installation
From source (recommended for development)
git clone https://github.com/daegwang/atombot.git cd atombot pip install -e .
From PyPI
๐ Quick Start
1. Initialize workspace
The onboarding process:
- Selects provider โ model
- Detects available providers and models (Codex / LM Studio / Ollama)
- Bootstraps config, workspace folders, prompts, and skills
- Optionally configures the Telegram gateway
2. Start Gateway (Telegram)
This allows you to chat with your agent via Telegram.
3. Chat with Atombot
You can interact with Atombot via Telegram or the CLI.
Telegram
- Send a message to your configured bot.
CLI
Example:
Atombot ready. Type 'exit' to quit.
> hello
Hello! ๐ I'm Atombot, your lightweight personal AI assistant. How can I help you today?
>
The CLI provides an interactive chat interface for communicating with your agent directly from the terminal.
๐ Project Structure
atombot/
โโโ agent/ # agent runtime (loop, context, memory/skills/tool wiring)
โ โโโ core.py # main agent logic
โ โโโ memory.py # memory read/write + recall
โ โโโ skills.py # skill discovery + injection
โ โโโ tools.py # local tools exposed to the model
โโโ prompts/ # base prompt files (AGENTS.md, MEMORY.md)
โโโ channels/ # chat channels (Telegram gateway)
โโโ provider/ # provider adapter (OpenAI-compatible + Codex CLI)
โโโ scheduler/ # cron storage and reminder trigger logic
โโโ skills/ # built-in skills (OpenClaw-compatible)
