经 AI Skill Hub 精选评估,AI工作流平台 获评「强烈推荐」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
AI工作流平台 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
AI工作流平台 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install mindroot
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install mindroot
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/runvnc/mindroot
cd mindroot
pip install -e .
# 验证安装
python -c "import mindroot; print('安装成功')"
# 命令行使用
mindroot --help
# 基本用法
mindroot input_file -o output_file
# Python 代码中调用
import mindroot
# 示例
result = mindroot.process("input")
print(result)
# mindroot 配置文件示例(config.yml) app: name: "mindroot" debug: false log_level: "INFO" # 运行时指定配置文件 mindroot --config config.yml # 或通过环境变量配置 export MINDROOT_API_KEY="your-key" export MINDROOT_OUTPUT_DIR="./output"
Build, operate, and embed tool-using AI agents without locking your application to one model, vendor, or interface.
MindRoot is a self-hostable Python agent platform with a web UI, REST API, Python SDK, and an extensible plugin runtime. It turns models into operational agents by connecting them to typed tools, internal services, pipelines, knowledge bases, persistent context, custom interfaces, and external systems.
It is designed for teams that need more than a chat wrapper:
MindRoot can be used as an agent backend, an internal automation platform, a customizable AI workspace, or the foundation of a complete vertical application.
MindRoot is broad by design, but not monolithic: most capabilities live in plugins, and agents receive only the commands and services enabled for them.
Tools are registered and enabled per agent. A research agent, support agent, and infrastructure agent can share one deployment without receiving the same permissions.
libgl-dev may be requiredMindRoot is intended for real applications rather than one narrow agent pattern. Examples include:
Existing plugins cover integrations such as Anthropic, OpenAI, OpenRouter, Gemini, Groq, DeepSeek, Cerebras, Fireworks, Together AI, Deepgram, image and video generation, browser and computer control, SQL databases, Supabase, file and Office-document operations, MCP, persistent memory, knowledge bases, job queues, and custom UI components.
The plugin ecosystem changes faster than this README. Use the admin plugin index or install a compatible plugin directly from GitHub to inspect the currently available integrations.
python -m venv .venv
source .venv/bin/activate
pip install mindroot
Optional email verification:
bash export REQUIRE_EMAIL_VERIFY=true ```
See the SMTP plugin documentation for mail configuration.
Set a secret and the credentials required by your chosen provider:
```bash export JWT_SECRET_KEY="replace-with-a-long-random-value" export ANTHROPIC_API_KEY="..."
Open /admin and:
You now have an agent accessible through the web interface and programmatically.
Run an agent as a long-running task:
curl -X POST \
"http://localhost:8010/task/Assistant?api_key=${MINDROOT_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"instructions":"Inspect this request, use the enabled tools, and return a concise report."}' \
--max-time 300
A successful response includes the final result, task trace, and conversation log identifier:
{
"status": "ok",
"results": "Final textual or structured result",
"full_results": [
{
"cmd": "some_command",
"args": {},
"result": "..."
}
],
"log_id": "..."
}
See API documentation for authentication, task-agent configuration, endpoint behavior, and additional examples.
pip install mrsdk
from mrsdk import MindRootClient
client = MindRootClient(
api_key="your_api_key",
base_url="http://localhost:8010",
)
result = client.run_task(
agent_name="Assistant",
instructions="What is the square root of 256? Show your work.",
)
print(result["results"])
See the mrsdk repository for SDK details and task-trace access.

A MindRoot plugin is a normal installable Python package that can contribute one or more layers of an application:
my_plugin/
├── plugin_info.json # Metadata, commands and services
├── pyproject.toml
└── src/my_plugin/
├── mod.py # Agent commands and internal services
├── router.py # Optional FastAPI routes
├── static/ # JavaScript, CSS and other assets
├── templates/ # Plugin-owned pages
├── inject/ # Add content to existing template blocks
└── override/ # Replace existing template blocks
Plugins are not limited to tools. They can add FastAPI routes and complete frontend experiences using Jinja2 and Lit Web Components. The standard chat UI exposes command lifecycle events such as partial output, running state, final results, media, and completion. A plugin can register a renderer for its command and turn structured output into a chart, table, editor, approval form, or other interactive interface.
This allows domain applications to live with the agent rather than maintaining a disconnected frontend and orchestration stack.
See Plugin documentation for package structure, decorators, routes, template injection, component integration, SSE events, pipelines, and development guidance.


MindRoot 是一个可自托管的 Python Agent 平台,旨在帮助开发者构建、运行并嵌入具备工具使用能力的 AI Agent。它提供 Web UI、REST API 和 Python SDK,并拥有可扩展的插件运行时。通过将模型连接到类型化的 Tools,MindRoot 能让模型从单纯的对话者转变为具备实际操作能力的 Agent,且不会将你的应用锁定在特定的模型、供应商或接口上。
MindRoot 具备显式的能力���理机制。你可以为不同的 Agent 注册并启用不同的 Tools。这意味着你可以通过同一次部署,同时运行研究型 Agent、支持型 Agent 或基础设施 Agent,并确保它们各自仅拥有被授权的权限,实现精细化的权限控制与功能隔离。
使用 MindRoot 需要 Python 3 环境,强烈建议在虚拟环境中运行。你需要准备好至少一个模型供应商的凭证(如 API Key),或者配置本地模型供应商。此外,在某些 Linux 系统上,可能需要安装 `libgl-dev` 库以支持图形相关功能。
你可以通过 Python 的包管理工具快速安装。首先创建并激活虚拟环境,然后使用 `pip install mindroot` 进行安装。对于需要邮件验证功能的场景,可以通过设置环境变量 `REQUIRE_EMAIL_VERIFY=true` 并配置相应的 SMTP 插件来实现。
MindRoot 支持多种应用场景,不仅限于单一的 Agent 模式。你可以用它构建内部研究助手、文档提取与报告生成系统、基于 RAG 的知识库应用、浏览器与桌面自动化工具,甚至是支持语音和多模态输入的业务助手。通过 Web 界面或程序化调用,你可以轻松驱动这些复杂的自动化工作流。
配置过程非常直观。首先需要通过环境变量设置 `JWT_SECRET_KEY` 以及你所选模型供应商的凭证(例如 `ANTHROPIC_API_KEY`)。随后,通过访问 `/admin` 管理界面,安装相应的模型供应商插件,配置其环境变量,创建或选择 Agent,并根据需求勾选允许使用的命令。在安装或更改插件后,请根据提示重启 MindRoot。
MindRoot 提供了强大的交互能力。你可以通过 REST API 发起长时运行的任务,并获取执行结果。同时,官方提供了 `mrsdk` Python SDK,允许开发者通过简单的 Python 代码调用 `client.run_task` 方法,实现与 Agent 的程序化交互,非常适合集成到现有的业务系统中。
MindRoot 采用高度灵活的插件模型,插件本质上是标准的 Python 包。插件不仅可以提供 Tools,还可以通过 FastAPI 扩展路由,甚至利用 Jin2 和 Lit Web Components 构建完整的全栈前端体验。标准聊天 UI 会暴露命令的生命周期事件(如中间输出、运行状态、最终结果等),允许插件注册自定义渲染器来处理复杂的数据展示。
高质量的开源AI工作流平台
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:AI工作流平台 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | mindroot |
| 原始描述 | 开源AI工作流:AI agent web app platform。⭐94 · Python |
| Topics | AIFastAPI工作流 |
| GitHub | https://github.com/runvnc/mindroot |
| License | MIT |
| 语言 | Python |
收录时间:2026-07-11 · 更新时间:2026-07-11 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端