经 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.


高质量的开源AI工作流平台
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:AI工作流平台 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | mindroot |
| Topics | AIFastAPI工作流 |
| GitHub | https://github.com/runvnc/mindroot |
| License | MIT |
| 语言 | Python |
收录时间:2026-07-11 · 更新时间:2026-07-11 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端