AI Skill Hub 推荐使用:MIDAS AI工作流治理平台 是一款优质的Agent工作流。AI 综合评分 7.2 分,在同类工具中表现稳健。如果你正在寻找可靠的Agent工作流解决方案,这是一个值得深入了解的选择。
MIDAS AI工作流治理平台 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
MIDAS AI工作流治理平台 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:go install(推荐) go install github.com/accept-io/midas@latest # 方式二:从源码编译 git clone https://github.com/accept-io/midas cd midas go build -o midas . # 方式三:下载预编译二进制 # 访问 Releases 页面下载对应平台二进制文件 # https://github.com/accept-io/midas/releases
# 查看帮助 midas --help # 基本运行 midas [options] <input> # 详细使用说明请查阅文档 # https://github.com/accept-io/midas
# midas 配置说明 # 查看配置选项 midas --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export MIDAS_CONFIG="/path/to/config.yml"
Authority governance engine for autonomous decisions.
MIDAS determines whether an automated agent is within authority to perform a consequential action. Every evaluation produces exactly one outcome and one tamper-evident audit envelope — capturing what was requested, what authority was resolved, and why the outcome was reached.
---
go run ./cmd/midas
Then open http://localhost:8080/explorer and sign in with demo / demo.
⚠️ Auth mode defaults toopenfor local development. Before exposing MIDAS to a network, setMIDAS_AUTH_MODE=requiredand configureMIDAS_AUTH_TOKENS. See Authentication.
docker compose up --build
Then open http://localhost:8080/explorer and sign in with demo / demo.
No database required. MIDAS starts with an in-memory store and demo data pre-loaded.
Run without demo mode:
Bash/sh:
MIDAS_DEV_SEED_DEMO_DATA=false MIDAS_DEV_SEED_DEMO_USER=false docker compose up --build
PowerShell:
$env:MIDAS_DEV_SEED_DEMO_DATA="false"; $env:MIDAS_DEV_SEED_DEMO_USER="false"; docker compose up --build
These variables persist for the current shell session. Open a fresh shell (or unset the variables) to return to default demo behaviour.
When MIDAS_DEV_SEED_DEMO_DATA=true, MIDAS also seeds deterministic synthetic drift data by default so the Drift Overview is populated for demos. Set MIDAS_DEV_SEED_SYNTHETIC_DRIFT=false to suppress synthetic drift while keeping the structural demo data. Dev/demo-only; idempotent.
Run with Postgres: uncomment the postgres service and environment block in docker-compose.yml.
| Variable | Default | Description |
|---|---|---|
MIDAS_LOG_LEVEL | info | info or debug |
MIDAS_EXPLORER_ENABLED | _(auto)_ | true enables Explorer UI. Auto-enabled in memory mode. |
MIDAS_DISPATCHER_ENABLED | false | true starts the Kafka outbox dispatcher |
MIDAS_KAFKA_BROKERS | _(none)_ | Comma-separated host:port. Required when dispatcher enabled. |
Full variable reference: docs/operations/deployment.md.
---
MIDAS v1 evaluates against explicitly declared structure. Pre-create the structural entities (BusinessService, Capability, Process, Surface, Profile, Grant, Agent) with POST /v1/controlplane/apply, then call /v1/evaluate with an explicit process_id. MIDAS validates that the process exists, the surface exists, and the surface belongs to the process; the request fails with 400 if any check fails.
curl -s -X POST http://localhost:8080/v1/evaluate \
-H "Content-Type: application/json" \
-d '{
"surface_id": "surf-loan-auto-approval",
"process_id": "proc-loan-standard",
"agent_id": "agent-credit-001",
"confidence": 0.91,
"consequence": {"type": "monetary", "amount": 4500, "currency": "GBP"},
"context": {"customer_id": "C-8821", "risk_band": "low"},
"request_id": "req-demo-001",
"request_source": "lending-service"
}' | jq .
Retrieve the full governance record:
curl http://localhost:8080/v1/decisions/request/req-demo-001?source=lending-service | jq .
---
填补AI工作流治理空白的有前景项目。架构清晰,Go实现性能优异,但生态完整度需提升。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
总体来看,MIDAS AI工作流治理平台 是一款质量良好的Agent工作流,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | midas |
| 原始描述 | 开源AI工作流:MIDAS is an open platform for governing execution authority at decision surfaces。⭐21 · Go |
| Topics | 工作流AI治理权限管理审计日志API网关 |
| GitHub | https://github.com/accept-io/midas |
| License | Apache-2.0 |
| 语言 | Go |
收录时间:2026-05-23 · 更新时间:2026-05-30 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端