AI Agent framework on LangChain/LangGraph — multi-backend filesystem, sub-agent scheduling, conversation summarization, security review, and skills system out of the box.
Project description
Mambo Agents
AI Agent framework built on LangChain/LangGraph — multi-backend filesystem, sub-agent parallel scheduling, conversation summarization, security review, skills system, and more, out of the box.
基于 LangChain/LangGraph 的 AI Agent 框架 — 提供多后端文件系统、子代理并行调度、对话摘要、安全审查、技能系统等开箱即用的能力。
📖 English | 中文
This project draws architectural inspiration from deepagents, with independent refactoring and extensions. See comparison with deepagents.
Key Features
- Multi-backend Filesystem —
StateBackend(in-memory),LocalBackend(local disk),SshBackend(remote SSH),HybridWorkspaceBackend(hybrid routing), unified throughBackendProtocol - Sub-agent System — sync/async sub-agents with parallel scheduling, streaming events, and isolated context windows
- Conversation Summarization — automatic long-history compaction with chained summaries and optional backend persistence
- Task Planning —
MamboPlanMiddlewareprovides structured TODO lists, deeply integrated with the summarization system - AI Security Review — pre-approve tool calls with a cheap model, escalating only high-risk operations to human review
- Skills System — progressive disclosure of skills, with multi-source overlay support
- Memory System — persistent context loaded from
AGENTS.md, with AI self-learning write-back
Quick Start
pip install mambo-agents
from mambo_agents import create_mambo_agent, StateBackend
from langchain_core.messages import HumanMessage
agent = create_mambo_agent(
"gpt-4o",
backend=StateBackend(),
include_general_purpose=True,
)
result = agent.invoke({"messages": [HumanMessage("Create a hello.py file")]})
Architecture
┌──────────────────────────────────────────────────────────┐
│ create_mambo_agent() │
│ │
│ ┌─────────────┐ ┌──────────┐ ┌────────────────────┐ │
│ │ Backend │ │ Model │ │ Middleware Stack │ │
│ │ Protocol │ │ (LLM) │ │ │ │
│ │ │ │ │ │ BackendTools │ │
│ │ State │ │ │ │ Skills │ │
│ │ Local │ │ │ │ Memory │ │
│ │ SSH │ │ │ │ Summarization │ │
│ │ TempWs │ │ │ │ Planning │ │
│ └─────────────┘ └──────────┘ │ SubAgents │ │
│ │ AsyncSubAgents │ │
│ │ SecurityReview │ │
│ │ Patch + Reorder │ │
│ └────────────────────┘ │
│ │
│ ┌─────────────────────────────────────────────────────┐ │
│ │ LangGraph CompiledGraph │ │
│ │ invoke() · astream() · astream_events() │ │
│ └─────────────────────────────────────────────────────┘ │
└──────────────────────────────────────────────────────────┘
Docs
- Detailed Usage Guide — API reference, configuration, advanced usage
- Comparison with deepagents — architectural differences, feature mapping, design trade-offs
Related Projects
- MamboChat — Full-featured Web UI built on Mambo Agents
License
MIT License
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 mambo_agents-0.2.0a4.tar.gz.
File metadata
- Download URL: mambo_agents-0.2.0a4.tar.gz
- Upload date:
- Size: 351.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.14 {"installer":{"name":"uv","version":"0.9.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6f76992df09b9a1d390762871205312abd4d3d5536e2f6e75dd54ddaaa4f061
|
|
| MD5 |
a94126ae6b0c628bef638d816ebeb2df
|
|
| BLAKE2b-256 |
de33ae60bb5c544387fc3ec7a1a4ddc4a48a37e1625c02098dce6f7c8c4b4bad
|
File details
Details for the file mambo_agents-0.2.0a4-py3-none-any.whl.
File metadata
- Download URL: mambo_agents-0.2.0a4-py3-none-any.whl
- Upload date:
- Size: 150.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.14 {"installer":{"name":"uv","version":"0.9.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
257168c2addc40d9b6a006f703b9106814379bd09bee484963b83d624de9a349
|
|
| MD5 |
32210b16e623f76e6e1fa7bcffa848c6
|
|
| BLAKE2b-256 |
f4b0ef43f66fb35555ecf71e9d00b583ff62c29fbeca045ea1d8404b3c665d5c
|