Skip to main content

A lightweight personal AI assistant framework

Project description

Root Engine

Root Engine

Ultra-lightweight, extensible runtime for personal agents, tool use, and multi-channel automation.

Python

What is Root Engine?

Root Engine is a compact agent runtime designed to be easy to read, easy to extend, and fast to ship. It focuses on the fundamentals: agent loop + tools + skills + memory + channels + scheduling—without burying you in frameworks.

If you want a repo you can actually understand end-to-end, modify confidently, and deploy quickly, this is the point.


Key Features

  • Ultra-Lightweight Core Small, focused agent runtime with clean boundaries between agent logic, tools, and integrations.

  • Provider-Driven LLM Support Plug in popular LLM providers (or any OpenAI-compatible endpoint) via a simple provider registry + config.

  • Tool Use + Skills System Built-in tools and a skills loader so agents can execute actions, call external capabilities, and stay modular.

  • Persistent Memory Optional long-running memory for continuity across sessions.

  • Multi-Channel Gateways Run Root Engine through chat platforms and messaging channels (where supported in this repo).

  • Scheduled Tasks (Cron) Run proactive reminders, routines, and agent jobs on a schedule.

  • MCP Support Connect external tool servers using Model Context Protocol, automatically discovered on startup.

  • Security Controls Workspace restrictions and allow-lists to reduce risk when running agents in real environments.


Architecture

Root Engine architecture

At a high level:

  • A CLI launches an agent or a gateway
  • The agent loop runs LLM ↔ tool execution
  • A provider registry resolves LLM routing
  • Skills extend capabilities cleanly
  • Channels handle inbound/outbound messaging
  • Cron/heartbeat enable proactive behavior

Install

Requires Python 3.11+

git clone https://github.com/TreyBros/root_engine
cd root-engine
pip install -e .

Once published on PyPI: pip install root-engine


Quick Start

Root Engine reads configuration from: ~/.root-engine/config.json

1) Initialize

root-engine onboard

2) Configure your provider + model

Edit ~/.root-engine/config.json and set at minimum:

Provider API key (example: OpenRouter)

{
  "providers": {
    "openrouter": {
      "apiKey": "sk-or-v1-xxx"
    }
  }
}

Default model

{
  "agents": {
    "defaults": {
      "model": "anthropic/claude-opus-4-5"
    }
  }
}

3) Chat

root-engine agent

Or one-shot:

root-engine agent -m "Hello!"

Chat Apps

Root Engine can run as a gateway for supported chat platforms (tokens/credentials required). Enable a channel in ~/.root-engine/config.json, then run:

root-engine gateway

Channel Config Examples

Telegram

{
  "channels": {
    "telegram": {
      "enabled": true,
      "token": "YOUR_BOT_TOKEN",
      "allowFrom": ["YOUR_USER_ID"]
    }
  }
}

Discord

{
  "channels": {
    "discord": {
      "enabled": true,
      "token": "YOUR_BOT_TOKEN",
      "allowFrom": ["YOUR_USER_ID"]
    }
  }
}

Slack (Socket Mode)

{
  "channels": {
    "slack": {
      "enabled": true,
      "botToken": "xoxb-...",
      "appToken": "xapp-...",
      "groupPolicy": "mention"
    }
  }
}

Configuration

Config file: ~/.root-engine/config.json

Providers

Root Engine uses a provider registry to route models and normalize configuration.

Common provider entries include:

  • openrouter
  • anthropic
  • openai
  • deepseek
  • groq
  • gemini
  • minimax
  • dashscope
  • moonshot
  • zhipu
  • vllm (local / OpenAI-compatible)
  • custom (any OpenAI-compatible API base)

Exact available providers depend on what's included in this repo version.

Custom Provider (Any OpenAI-compatible API)

{
  "providers": {
    "custom": {
      "apiKey": "your-api-key",
      "apiBase": "https://api.your-provider.com/v1"
    }
  },
  "agents": {
    "defaults": {
      "model": "your-model-name"
    }
  }
}

vLLM (local / OpenAI-compatible)

{
  "providers": {
    "vllm": {
      "apiKey": "dummy",
      "apiBase": "http://localhost:8000/v1"
    }
  },
  "agents": {
    "defaults": {
      "model": "meta-llama/Llama-3.1-8B-Instruct"
    }
  }
}

MCP (Model Context Protocol)

Root Engine can connect to MCP tool servers and expose them as native tools.

Example config:

{
  "tools": {
    "mcpServers": {
      "filesystem": {
        "command": "npx",
        "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/dir"]
      }
    }
  }
}

Supported transport modes:

  • Stdio: command + args
  • HTTP: url (remote endpoint)

MCP tools are discovered and registered on startup.


Security

For safer local/prod use, restrict tool access to your workspace:

{
  "tools": {
    "restrictToWorkspace": true
  }
}

And restrict who can interact on channels:

{
  "channels": {
    "telegram": {
      "enabled": true,
      "token": "YOUR_BOT_TOKEN",
      "allowFrom": ["YOUR_USER_ID"]
    }
  }
}

CLI Reference

Command Description
root-engine onboard Initialize config & workspace
root-engine agent Interactive agent chat
root-engine agent -m "..." One-shot message
root-engine agent --no-markdown Plain-text replies
root-engine agent --logs Show runtime logs
root-engine gateway Start multi-channel gateway
root-engine status Show runtime/config status
root-engine channels status Show channel status
root-engine cron add ... Add scheduled job
root-engine cron list List scheduled jobs
root-engine cron remove <id> Remove scheduled job

Interactive mode exits: exit, quit, /exit, /quit, :q, or Ctrl+D.


Scheduled Tasks (Cron)

# Add a job
root-engine cron add --name "daily" --message "Good morning!" --cron "0 9 * * *"
root-engine cron add --name "hourly" --message "Check status" --every 3600

# List jobs
root-engine cron list

# Remove a job
root-engine cron remove <job_id>

Docker

Compose

docker compose run --rm root-engine-cli onboard
vim ~/.root-engine/config.json
docker compose up -d root-engine-gateway
docker compose run --rm root-engine-cli agent -m "Hello!"
docker compose logs -f root-engine-gateway
docker compose down

Docker

docker build -t root-engine .

docker run -v ~/.root-engine:/root/.root-engine --rm root-engine onboard
vim ~/.root-engine/config.json

docker run -v ~/.root-engine:/root/.root-engine -p 18790:18790 root-engine gateway
docker run -v ~/.root-engine:/root/.root-engine --rm root-engine agent -m "Hello!"
docker run -v ~/.root-engine:/root/.root-engine --rm root-engine status

Project Structure

root_engine/
├── agent/          # Core agent logic
│   ├── loop.py     # Agent loop (LLM ↔ tool execution)
│   ├── context.py  # Prompt builder
│   ├── memory.py   # Persistent memory
│   ├── skills.py   # Skills loader
│   ├── subagent.py # Background task execution
│   └── tools/      # Built-in tools
├── skills/         # Bundled skills
├── channels/       # Chat channel integrations
├── bus/            # Message routing
├── cron/           # Scheduled tasks
├── heartbeat/      # Proactive wake-up
├── providers/      # LLM providers
├── session/        # Conversation sessions
├── config/         # Configuration schema + loader
└── cli/            # CLI commands

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

root_engine-0.1.5.tar.gz (102.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

root_engine-0.1.5-py3-none-any.whl (133.8 kB view details)

Uploaded Python 3

File details

Details for the file root_engine-0.1.5.tar.gz.

File metadata

  • Download URL: root_engine-0.1.5.tar.gz
  • Upload date:
  • Size: 102.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.0

File hashes

Hashes for root_engine-0.1.5.tar.gz
Algorithm Hash digest
SHA256 0a3c3efc935a0c690f0c12e02099ecbf3a248418942c918371f34eb43fdd08ec
MD5 2603bd3f96888a6b7e6ef44ca9d2e2ff
BLAKE2b-256 61646459a938b7a692c2f4a83d1dcc5b7ced92505d0b19ff5eca609f5e2c4502

See more details on using hashes here.

File details

Details for the file root_engine-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: root_engine-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 133.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.0

File hashes

Hashes for root_engine-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 ed58c9a1805209622cf993d023840c2b880770aac52486ffd0f34bb4709dd1b6
MD5 254a94d022cf6c88d2e72d9f0f667321
BLAKE2b-256 8552414fefc4d344f9e968afe475d437d20b9557a414ace8880c7aa24a71652a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page