Self-hosted Telegram-first AI assistant with async tooling, memory, and scheduling.
Project description
MiniBot 🤖
Your personal AI assistant for Telegram - self-hosted, auditable, and intentionally opinionated.
Overview
MiniBot is a lightweight personal AI assistant you run on your own infrastructure. It is built for people who want reliable automation and chat assistance without a giant platform footprint.
The project is intentionally opinionated: Telegram-first, SQLite-first, async-first. You get a focused, production-practical bot with clear boundaries, predictable behavior, and enough tools to be useful daily.
Quickstart (Docker)
cp config.example.toml config.toml- Populate secrets in
config.toml(bot token, allowed chat IDs, provider key). mkdir -p logsdocker compose up --build -ddocker compose logs -f minibot
Quickstart (Poetry)
poetry installcp config.example.toml config.toml- Populate secrets in
config.toml(bot token, allowed chat IDs, provider key). poetry run minibot
Up & Running with Telegram
- Launch Telegram
@BotFatherand create a bot to obtain a token. - Update
config.toml:- set
channels.telegram.bot_token - populate
allowed_chat_idsorallowed_user_idswith your ID numbers - configure the LLM provider section (
provider,api_key,model)
- set
- Run
poetry run minibotand send a message to your bot. Expect a simple synchronous reply (LLM, memory backed). - Monitor
logs(Logfmt vialogfmter) andhtmlcov/index.htmlfor coverage during dev.
Top features
- 🤖 Personal assistant, not SaaS: your chats, memory, and scheduled prompts stay in your instance.
- 🎯 Opinionated by design: Telegram-centric flow, small tool surface, and explicit config over hidden magic.
- 🏠 Self-hostable: Dockerfile + docker-compose provided for easy local deployment.
- 💬 Telegram channel with chat/user allowlists and long-polling or webhook modes; accepts text, images, and file uploads (multimodal inputs when enabled).
- 🧠 Focused provider support (via llm-async): currently
openai,openai_responses, andopenrouteronly. - 🖼️ Multimodal support: media inputs (images/documents) are supported with
llm.provider = "openai_responses","openai", and"openrouter".openai_responsesuses Responses API content types;openai/openrouteruse Chat Completions content types. - 🧰 Small, configurable tools: chat memory, KV notes, HTTP fetch, calculator, current_datetime, optional Python execution, and MCP server bridges.
- 🗂️ Managed file workspace tools:
list_files,create_file,send_file, andself_insert_artifact(directive-based artifact insertion). - 🌐 Optional browser automation via MCP servers (for example Playwright MCP tools).
- ⏰ Scheduled prompts (one-shot and interval recurrence) persisted in SQLite.
- 📊 Structured logfmt logs, request correlation IDs, and a focused test suite (
pytest+pytest-asyncio).
Demo
Example: generate images with the python_execute tool and receive them in the Telegram channel.
Why self-host
- Privacy & ownership: all transcripts, KV notes, and scheduled prompts are stored in your instance (SQLite files), not a third-party service.
- Cost & provider control: pick where to route LLM calls and manage API usage independently.
- Network & runtime control: deploy behind your firewall, restrict outbound access, and run the daemon as an unprivileged user.
Configuration Reference
Use config.example.toml as the source of truth—copy it to config.toml and update secrets before launching. Key sections:
-
Byte-size fields accept raw integers or quoted size strings; SI units are preferred in examples (for example
"16KB","5MB","2GB"). IEC units are also accepted (for example"16KiB","5MiB"). -
[runtime]: global flags such as log level and environment. -
[channels.telegram]: enables the Telegram adapter, provides the bot token, and lets you whitelist chats/users plus set polling/webhook mode. -
[llm]: configures the chosen llm-async provider (currentlyopenai,openai_responses, oropenrouter), plus API key, model, optional temperature/token/reasoning params,max_tool_iterations, basesystem_prompt, andprompts_dir(default./prompts) for channel prompt fragments injected at request time. Request params are only sent when present inconfig.toml(omit keys liketemperature,max_new_tokens, orreasoning_effortto avoid sending them). For OpenRouter, optionalllm.openrouter.modelslets you provide a fallback model pool,llm.openrouter.providerlets you send routing controls (order,allow_fallbacks,only,ignore,sort, throughput/latency preferences,max_price, andprovider_extrafor future keys), andllm.openrouter.pluginslets you pass request plugins (for examplefile-parserPDF engine selection). -
[memory]: conversation history backend (default SQLite). TheSQLAlchemyMemoryBackendstores session exchanges soLLMMessageHandlercan build context windows.max_history_messagesoptionally enables automatic trimming of old transcript messages after each user/assistant append; when unset, transcript retention is unlimited. -
[scheduler.prompts]: configures delayed prompt execution storage/polling and recurrence safety (min_recurrence_interval_secondsguards interval jobs). -
[tools.kv_memory]: optional key/value store powering the KV tools. It has its own database URL, pool/echo tuning, and pagination defaults. Enable it only when you need tool-based memory storage. -
[tools.http_client]: toggles the HTTP client tool. Configure timeout +max_bytes(raw byte cap), optionalmax_chars(LLM-facing char cap), andresponse_processing_mode(auto/none) for response shaping via aiosonic. -
[tools.calculator]: controls the built-in arithmetic calculator tool (enabled by default) with Decimal precision, expression length limits, and exponent guardrails. -
[tools.python_exec]: configures host Python execution with interpreter selection (python_path/venv_path), timeout/output/code caps, environment policy, optional pseudo-sandbox modes (none,basic,rlimit,cgroup,jail), and optional artifact export controls (artifacts_*) to persist generated files into managed storage for latersend_file. -
[tools.file_storage]: configures managed file operations and in-loop file injection:root_dir,max_write_bytes, and Telegram upload persistence controls (save_incoming_uploads,uploads_subdir). -
[tools.mcp]: configures optional Model Context Protocol bridge discovery. Setenabled,name_prefix, andtimeout_seconds, then register one or more[[tools.mcp.servers]]entries using eithertransport = "stdio"(command, optionalargs/env/cwd) ortransport = "http"(url, optionalheaders). -
[logging]: structured log flags (logfmt, separators) consumed byadapters/logging/setup.py.
Every section has comments + defaults in config.example.toml—read that file for hints.
MCP Bridge Guide
MiniBot can discover and expose remote MCP tools as local tool bindings at startup. For each configured server,
MiniBot calls tools/list, builds local tool schemas dynamically, and exposes tool names in this format:
<name_prefix>_<server_name>__<remote_tool_name>
For example, with name_prefix = "mcp", server_name = "dice_cli", and remote tool roll_dice,
the local tool name becomes mcp_dice_cli__roll_dice.
Enable the bridge in config.toml:
[tools.mcp]
enabled = true
name_prefix = "mcp"
timeout_seconds = 10
Add one or more server entries.
Stdio transport example:
[[tools.mcp.servers]]
name = "dice_cli"
transport = "stdio"
command = "python"
args = ["tests/fixtures/mcp/stdio_dice_server.py"]
env = {}
cwd = "."
enabled_tools = []
disabled_tools = []
HTTP transport example:
[[tools.mcp.servers]]
name = "dice_http"
transport = "http"
url = "http://127.0.0.1:8765/mcp"
headers = {}
enabled_tools = []
disabled_tools = []
Playwright MCP server example:
Requires Node.js (and npx) on the host running MiniBot.
[[tools.mcp.servers]]
name = "playwright-cli"
transport = "stdio"
command = "npx"
# Notice: if npx is not on PATH (for example with asdf), use "/home/myuser/.asdf/shims/npx".
args = [
# Recommended: pin a version if --output-dir behavior affects you
"@playwright/mcp@0.0.64",
# Or use "@playwright/mcp@latest",
# "--headless",
"--browser=chromium",
# Enable screenshots (vision) and PDFs
"--caps=vision,pdf",
# Output directory (screenshots/downloads/session)
"--output-dir=./data/files/browser",
# Persist browser state/session under output-dir
"--save-session"
]
env = {}
cwd = "."
# enabled_tools = []
# disabled_tools = []
Tool filtering behavior:
enabled_tools: if empty, all discovered tools are allowed; if set, only listed remote tool names are exposed.disabled_tools: always excluded, even if also present inenabled_tools.
Troubleshooting:
- If discovery fails for a server, startup logs include
failed to load mcp toolswith the server name.
Suggested model presets
openai_responses:gpt-5-miniwithreasoning_effort = "medium"is a solid default for a practical quality/cost balance.openrouter:x-ai/grok-4.1-fastwith medium reasoning effort is a comparable quality/cost balance default.
Scheduler Guide
Schedule by chatting naturally. MiniBot understands reminders for one-time and recurring prompts, and keeps jobs persisted in SQLite so they survive restarts.
Use plain prompts like:
- "Remind me in 30 minutes to check my email."
- "At 7:00 AM tomorrow, ask me for my daily priorities."
- "Every day at 9 AM, remind me to send standup."
- "List my active reminders."
- "Cancel the standup reminder."
Notes:
-
One-time and recurring reminders are supported.
-
Recurrence minimum interval is
scheduler.prompts.min_recurrence_interval_seconds(default60). -
Configure scheduler storage/polling under
[scheduler.prompts]inconfig.toml. -
Typical flow: ask for a reminder in plain language, then ask to list/cancel it later if needed.
Security & sandboxing
MiniBot intentionally exposes a very limited surface of server-side tools. The most sensitive capability is
python_execute, which can run arbitrary Python code on the host if enabled. Treat it as a powerful but
potentially dangerous tool and follow these recommendations:
- Disable
tools.python_execunless you need it; toggle it viaconfig.example.toml. - Prefer non-host execution or explicit isolation when executing untrusted code (
sandbox_modeoptions includerlimit,cgroup, andjail). - If using
jailmode, configuretools.python_exec.jail.command_prefixto wrap execution with a tool like Firejail and restrict filesystem/network access. - Artifact export (
python_executewithsave_artifacts=true) requirestools.file_storage.enabled = true. Insandbox_mode = "jail", artifact export is blocked by default unlesstools.python_exec.artifacts_allow_in_jail = trueand a shared directory is configured intools.python_exec.artifacts_jail_shared_dir. - When enabling jail artifact export, ensure your Firejail profile allows read/write access to
artifacts_jail_shared_dir(for example via whitelist/bind rules); otherwise the bot cannot reliably collect generated files. - Run the daemon as a non-privileged user, mount only required volumes (data directory) and avoid exposing sensitive host paths to the container.
Example jail command prefix (set in config.toml):
[tools.python_exec.jail]
enabled = true
command_prefix = [
"firejail",
"--private=/srv/minibot-sandbox",
"--quiet",
# "--net=none", # add this to restrict network access from jailed processes
]
Minimal Firejail + artifact export example (single-user host):
- Create shared directory:
mkdir -p /home/myuser/mybot/data/files/jail-shared
chmod 700 /home/myuser/mybot/data/files/jail-shared
- Configure Python exec + shared artifact path:
[tools.python_exec]
sandbox_mode = "jail"
artifacts_allow_in_jail = true
artifacts_jail_shared_dir = "/home/myuser/mybot/data/files/jail-shared"
- Configure Firejail wrapper:
[tools.python_exec.jail]
enabled = true
command_prefix = [
"firejail",
"--quiet",
"--noprofile",
# "--net=none", # add this to restrict network access from jailed processes
"--caps.drop=all",
"--seccomp",
"--whitelist=/home/myuser/mybot/data/files/jail-shared",
"--read-write=/home/myuser/mybot/data/files/jail-shared",
"--whitelist=/home/myuser/mybot/tools_venv",
]
Notes:
- Keep
artifacts_jail_shared_dirand Firejail whitelist/read-write paths exactly identical. - Ensure
tools.python_exec.python_path(orvenv_path) points to an interpreter visible inside Firejail. --noprofileavoids host distro defaults that may block home directory executables.
Note: ensure the wrapper binary (e.g. firejail) is available in your runtime image or host. The Dockerfile in this repo installs firejail by default for convenience; review its flags carefully before use.
Stage 1 targets:
- Telegram-only channel with inbound/outbound DTO validation via
pydantic. - SQLite/SQLAlchemy-backed conversation memory for context/history.
- Structured
logfmterlogs with request correlation and event bus-based dispatcher. - Pytest + pytest-asyncio tests for config, event bus, memory, and handler plumbing.
Mini Hex Architecture
MiniBot follows a lightweight hexagonal layout described in detail in ARCHITECTURE.md. The repository root keeps
minibot/ split into:
core/– Domain entities and protocols (channel DTOs, memory contracts, future job models).app/– Application services such as the daemon, dispatcher, handlers, and event bus that orchestrate domain + adapters.adapters/– Infrastructure edges (config, messaging, logging, memory, scheduler persistence) wired through the DI container.llm/– Thin wrappers around llm-async providers plusllm/tools/, which defines tool schemas/handlers that expose bot capabilities (KV memory, scheduler controls, utilities) to the model.shared/– Cross-cutting utilities.
Tests under tests/ mirror this structure so every layer has a corresponding suite. This “mini hex” keeps the domain
pure while letting adapters evolve independently.
Prompt Packs
MiniBot can inject channel-specific prompt fragments at runtime.
- Configure root folder with
llm.prompts_dir(default./prompts). - Place channel fragments under
prompts/channels/<channel>.md(for exampleprompts/channels/telegram.md). - Handler composes effective system prompt as: base
llm.system_prompt+ channel fragment (+ tool safety addenda).
Incoming Message Flow
flowchart TD
subgraph TCHAN[Telegram channel]
TG[Telegram Update]
AD[Telegram Adapter]
SEND[Telegram sendMessage]
end
TG --> AD
AD --> EV[EventBus MessageEvent]
EV --> DP[Dispatcher]
DP --> HD[LLMMessageHandler]
HD --> MEM[(Memory Backend)]
HD --> LLM[LLM Client + Tools]
LLM --> HD
HD --> RESP[ChannelResponse]
RESP --> DEC{should_reply?}
DEC -- yes --> OUT[EventBus OutboundEvent]
OUT --> AD
AD --> SEND[Telegram sendMessage]
DEC -- no --> SKIP[No outbound message]
Tooling
Tools live under minibot/llm/tools/ and are exposed to llm-async with server-side execution controls.
- 🧠
chat_history: inspect/trim chat transcript history for the current session. - 🧮
calculate_expression+ 🕒current_datetime: quick built-in utility tools. - 📝
kv_memory: save/get/search short notes. - 🌐
http_client: guarded HTTP/HTTPS fetches via aiosonic. - ⏰
schedule_prompt,list_scheduled_prompts,cancel_scheduled_prompt,delete_scheduled_prompt: one-time and recurring reminder scheduling. - 🐍
python_execute+python_environment_info: optional host Python execution and runtime/package inspection, including optional artifact export into managed files (save_artifacts=true) so outputs can be sent withsend_file. - 🗂️
list_files,create_file,send_file: managed workspace file listing/writing/sending. - 🧩
self_insert_artifact: injects a managed file (tools.file_storage.root_dirrelative path) into runtime directives so the model can analyze it as multimodal context in-loop. - 🧭
mcp_*dynamic tools (optional): tool bindings discovered from configured MCP servers. - 🖼️ Telegram media inputs (
photo/document) are supported onopenai_responses,openai, andopenrouter.
Conversation context:
- Uses a rolling history window (
get_historydefault32messages), not full lifetime transcript. - In OpenAI Responses mode, turns are rebuilt from stored history (no
previous_response_idreuse).
Roadmap / Todos
- Add more channels: WhatsApp, Discord — implement adapters under
adapters/messaging/<channel>reusing the event bus and dispatcher. - Minimal web UI for analytics & debug — a small FastAPI control plane + lightweight SPA to inspect events, scheduled prompts, and recent logs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file minibot-0.0.4.tar.gz.
File metadata
- Download URL: minibot-0.0.4.tar.gz
- Upload date:
- Size: 80.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bba7860249310747ad337ffc6b77aaa7e21c53c579e33da1cd40957e1d067c5
|
|
| MD5 |
cac9a245616ab5670f30f12c627d0498
|
|
| BLAKE2b-256 |
8b4028e04d5d17511cb4a10dcb766868900b8d57498c4b832d39297661a997d2
|
File details
Details for the file minibot-0.0.4-py3-none-any.whl.
File metadata
- Download URL: minibot-0.0.4-py3-none-any.whl
- Upload date:
- Size: 92.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c71415ffbdb1f5dbaae8b8a06677191bde6e4c9bb6d9174d740074bfa6010c37
|
|
| MD5 |
1ef87f651fb0a267d4a0614e2d7ae109
|
|
| BLAKE2b-256 |
86cdf5b13ddba2764bc1092260f30bb0b3d4db044ccb868fdf56b09cfc9e6111
|