Personal AGI Operating Core
Project description
MONAD is not a chatbot or a simple tool-matcher. It is a self-learning, objective-driven autonomous rational agent core.
Unlike traditional agents that rely on a predefined, hardcoded set of tools, MONAD acts like a rational entity with basic "instincts". It has no memory and no pre-loaded knowledge of how to perform specific tasks (like checking the weather or searching the web).
Instead, it autonomously learns how to complete your tasks by writing and executing Python code on the fly, and then saving those successful experiences as reusable skills.
🧠 Core Philosophy
- File System as Database: The system itself has no memory of past sessions. It persists all learned information (axioms, environment knowledge, learned skills, user context, and experiences) directly to local Markdown files. No vector databases, no RAG, zero external dependencies.
- Absolute Rationality: MONAD follows a strict reasoning loop (
Analyze → Self-check → Learn → Execute → Reflect) to accomplish goals logically. - Self-Learning & Self-Evolving: Instead of shipping with 100 tools, MONAD ships with only 4 basic instincts (hands 🤲, voice 🗣️, eyes 👁️, dialogue 💬). It learns everything else by generating code.
- LLM as a Command Executor: The LLM's own training data is disregarded. All factual information must be retrieved from the real world via code execution or web perception.
- Stateless Message Management: Every user request starts with a fresh, clean message context. MONAD doesn't rely on LLM Chat History; instead, it persists vital information via reflection loops. This ensures reasoning purity and prevents hallucination buildup from long conversations.
- Search First, Ask Later: When stuck during execution (errors, missing packages, unfamiliar tools), MONAD's first instinct is to search the web via
web_fetch, never to guess. But if the user's intent is unclear, MONAD asks the user first. In short: unclear query → ask user; execution problem → search first.
⚡ Basic Capabilities ("Instincts")
MONAD comes with only four built-in capabilities:
| Capability | Metaphor | Description |
|---|---|---|
🐍 python_exec |
Hands 🤲 | Evaluate arbitrary Python code. Process data, call APIs, read/write files, install libraries—learn to do anything. |
💻 shell |
Voice 🗣️ | Execute shell commands on the host operating system. |
👁️ web_fetch |
Eyes 👁️ | Perceive the internet directly. Fetch web pages with 3 modes: fast (HTTP), stealth (anti-bot), browser (JS render). Powered by Scrapling. |
🙋 ask_user |
Dialogue 💬 | Ask the user for clarification when it truly cannot proceed independently. |
📂 Knowledge Architecture
MONAD uses Categorized Memory instead of semantic retrieval (RAG).
knowledge/
├── axioms/ # System axioms & core behavioral principles
├── environment/ # World knowledge (e.g., search engine URLs, API endpoints)
├── user/ # Categorized user context (No RAG used here)
│ ├── facts.md # Objective facts & preferences (e.g., prefers Python)
│ ├── mood.md # Current state & mood
│ └── goals.md # Long-term goals & ongoing projects
├── skills/ # Auto-generated reusable Python skills
├── experiences/ # Execution logs and post-task reflections
├── protocols/ # Error handling protocols
└── tools/ # Documentation for the 4 basic capabilities
⚙️ How It Works
When you give MONAD an objective (e.g., "What is the weather in Hangzhou today?"):
- Analyze & Self-Check: Understand intent and check the local knowledge base for existing skills.
- Learn & Research (The "Search First" Principle): If the task is unknown or an error occurs, MONAD uses
web_fetchto research documentation, API usage, or solutions. This is the "Learning" phase where it acquires the "how-to" knowledge before acting. - Execute & Observe: MONAD writes and executes Python code or shell commands via
python_exec. It treats the output as "Observations" to verify success or identify new obstacles. - Reflect & Persist: After a successful execution, the
Reflectionmodule summarizes the experience. TheSkillBuilderthen evaluates if the logic should be abstracted into a permanent, reusableskill. - Answer: Provide the final answer based on real-world data verified through execution.
💡 Deep Dive: Why Stateless?
MONAD intentionally discards traditional "Chat History" in favor of a Stateless Design, where every task starts with a clean context and persists only vital information via the file system.
- Mitigating Hallucination: Long-running chat histories eventually lead to context pollution and attention decay. By resetting the context per task, we force the LLM to reason in a pure, noise-free environment.
- Physical Memory: Unlike black-box model caches, MONAD's memory consists of human-readable Markdown files. This is a deliberate step towards Personal Data Sovereignty.
- Task Atomicity: Every objective becomes an independent, reproducible unit of execution.
- The Future of Agents: We believe the evolution of Agents will shift from "simulating conversation" to "simulating rational execution." Maintaining a living "State Whiteboard" via reflection loops is far more aligned with the essence of AGI than endlessly stacking chat logs.
🚀 Installation
1. Install via pip (Recommended)
pip install monad-core
Alternatively, install from source:
git clone https://github.com/hscspring/Monad.git
cd Monad
pip install -e .
2. Configure your LLM
On your first run, MONAD will initialize its workspace in ~/.monad/. Update ~/.monad/.env with your LLM Base URL, API Key, and Model name.
Note: If you don't configure this manually, MONAD will guide you through an interactive setup with connectivity validation on your first launch.
💻 Usage
Once installed, you can start the MONAD agent from any directory in your terminal.
Start Web UI (Default)
Launch the modern browser-based interface:
monad
Interactive Terminal Mode (Classic)
Start the continuous ReAct agent loop in the CLI:
monad --cli
Feishu (Lark) Bot Mode
- Follow the first two steps in the Feishu Bot Guide to create a bot and obtain your
APP_IDandAPP_SECRET. - Connect MONAD to your Feishu bot via WebSocket:
APP_ID=xxx APP_SECRET=yyy monad --feishu
Note: Requires
pip install monad-core[feishu]for thelark-oapidependency.
Self-Test
Verify all modules load correctly and the LLM connection is functioning:
monad --test
Unit Tests
Run the test suite for all tools:
python -m pytest tests/ -v
Built with pure rational reasoning 💡
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 monad_core-0.2.1.tar.gz.
File metadata
- Download URL: monad_core-0.2.1.tar.gz
- Upload date:
- Size: 59.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2c2ae65919a06d15c42a48d5772ce0afa2dd5a15ca1382542b8ab19a02bea36
|
|
| MD5 |
d7859486192c1066681ac7a1cc04e7e0
|
|
| BLAKE2b-256 |
26ec39e8fdab95013d20b653dd8ffa74466c414afd60fe60d60b6d09c40c6070
|
File details
Details for the file monad_core-0.2.1-py3-none-any.whl.
File metadata
- Download URL: monad_core-0.2.1-py3-none-any.whl
- Upload date:
- Size: 67.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dee1ad35249e5ee8680cde108525b2eed0933730e997e5f32a84e4927492f30
|
|
| MD5 |
5b94c48e2e8726990b1d9c702ebd2c9d
|
|
| BLAKE2b-256 |
027205fe5d318bd1fc4e4766d9c14f7d63d07f5fa82e900e6d1702a496096cd0
|