经 AI Skill Hub 精选评估,Steuermann AI工作流引擎 获评「推荐使用」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 6.5 分,适合有一定技术背景的用户使用。
Steuermann AI工作流引擎 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
Steuermann AI工作流引擎 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install steuermann-ai
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install steuermann-ai
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/mediaworkbench/steuermann-ai
cd steuermann-ai
pip install -e .
# 验证安装
python -c "import steuermann_ai; print('安装成功')"
# 命令行使用
steuermann-ai --help
# 基本用法
steuermann-ai input_file -o output_file
# Python 代码中调用
import steuermann_ai
# 示例
result = steuermann_ai.process("input")
print(result)
# steuermann-ai 配置文件示例(config.yml) app: name: "steuermann-ai" debug: false log_level: "INFO" # 运行时指定配置文件 steuermann-ai --config config.yml # 或通过环境变量配置 export STEUERMANN_AI_API_KEY="your-key" export STEUERMANN_AI_OUTPUT_DIR="./output"

Build domain-specific, multi-agent AI systems — entirely on your own infrastructure.
Steuermann (German for steersman) is a self-hosted runtime for deploying and operating multi-agent AI systems on-prem-first. It combines graph-based orchestration, persistent memory, retrieval pipelines, tool routing, and operational infrastructure into a reusable deployment architecture.
One codebase, many deployments. Each domain deployment — medical, financial, operational, analytical — is driven by a profile overlay: YAML configuration files that customize every layer of behavior without touching runtime code.
Experimental Beta — Steuermann is under active development. Core architecture, APIs, configuration schemas, and feature surface may change between releases. This is not yet production ready and many additional features will be implemented in the coming releases!
Profiles are the architectural core of Steuermann — the mechanism that makes one codebase serve unlimited deployment scenarios. Each domain deployment is a self-contained YAML overlay that customizes LLM providers, prompts, tools, memory settings, crews, UI branding, and feature flags without touching the runtime. Activate a profile by setting PROFILE_ID in .env; no rebuild needed for config-only changes.
See docs/profile_creation.md for a step-by-step guide.
```bash git clone https://github.com/mediaworkbench/steuermann-ai.git cd steuermann-ai cp .env.example .env
poetry install poetry run steuermann setup doctor --format json poetry run steuermann config validate --format json poetry run steuermann config contract-check --format json poetry run steuermann docs check --format json
Linux hosts (bind-mount permissions): set UID/GID in `.env` before first build so container users match your host account.
bash echo "APP_UID=$(id -u)" >> .env echo "APP_GID=$(id -g)" >> .env mkdir -p ./data/workspaces ./data/checkpoints ./data/rag-data chown -R $(id -u):$(id -g) ./data/workspaces ./data/checkpoints ./data/rag-data ```
Set these in .env:
AUTH_ENABLED=true
AUTH_USERNAME=admin
AUTH_PASSWORD_HASH='scrypt$...$...' # see .env.example for generation command
AUTH_SESSION_SECRET=$(python -c "import secrets; print(secrets.token_hex(32))")
CHAT_ACCESS_TOKEN=$(python -c "import secrets; print(secrets.token_hex(32))")
Rebuild and visit <http://localhost:3000/login>:
docker compose up -d --build
```bash
mkdir -p ./data/rag-data
poetry run steuermann profile scaffold --from starter --profile my-profile
poetry run steuermann config validate --profile my-profile --format json
---
Configuration follows a three-layer hierarchy: Base → Profile Overlay → Environment Variables.
config/
├── core.yaml # Base infra only: database, memory vector store, checkpointing
├── features.yaml # Deployment-global feature flags
├── contracts/ # Config contract schemas (validation)
└── profiles/
└── starter/ # Default profile (copy to create your own)
├── profile.yaml # Profile metadata (top-level `profile:` key)
├── core.yaml # LLM roles, embeddings, memory, RAG, tokens, ingestion
├── features.yaml # Feature flag overrides
├── agents.yaml # CrewAI crew and agent definitions
├── tools.yaml # Tool registration and routing
├── ui.yaml # Branding and theme
└── prompts/
├── en.yaml # English system prompts
└── de.yaml # German system prompts
Everything except base infra lives in the profile overlay — agents.yaml, tools.yaml, and per-language prompts/ exist only under config/profiles/<profile_id>/, not at the base level.
Activate a profile by setting PROFILE_ID in .env. See docs/configuration.md for the full schema reference.
---
A Next.js frontend built for operators. It ships a streaming chat interface with image attachment support, a settings panel for runtime configuration, a metrics dashboard with real-time and historical views, a memory management page, an admin-only RAG knowledge explorer for searching the knowledge base by keyword and reviewing retrieved documents, and persistent workspace documents with version history and AI-driven save-back. Branding and theming adapt to the active profile.
Memory is an explicit, first-class part of the execution graph. Dedicated nodes load relevant context before the LLM responds and persist new memories after — no hidden side effects. Memories are ranked by relevance, recency, and user feedback, with co-occurrence linking to surface related context across conversations.
See docs/technical_architecture.md for memory pipeline details.
Tools are discovered from YAML manifests at startup. Each tool can be a LangChain-native Python class or a remote MCP server — the routing pipeline treats both identically. Semantic similarity matching selects the right tools for each query, and the system automatically adapts its calling strategy to match what the active model supports.
See docs/tool_development_guide.md for building custom tools and MCP integrations.
Steuermann定位清晰,本地部署特性符合隐私需求。但项目成熟度有限,文档和社区支持待加强,适合早期探索者。
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
AI Skill Hub 点评:Steuermann AI工作流引擎 的核心功能完整,质量良好。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | steuermann-ai |
| 原始描述 | 开源AI工作流:Steuermann is designed as a domain-agnostic, on-premise AI runtime. It can be ex。⭐9 · Python |
| Topics | AI工作流AI代理本地部署开源框架Python |
| GitHub | https://github.com/mediaworkbench/steuermann-ai |
| 语言 | Python |
收录时间:2026-06-06 · 更新时间:2026-06-11 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端