GitHub - daegwang/atombot: A tiny but powerful personal AI assistant ๐Ÿ™

2 min read Original article โ†—

atombot

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.md format 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)