智能工作流 是 AI Skill Hub 本期精选Agent工作流之一。综合评分 8.0 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
智能工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
智能工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:npm 全局安装 npm install -g omadia # 方式二:npx 直接运行(无需安装) npx omadia --help # 方式三:项目依赖安装 npm install omadia # 方式四:从源码运行 git clone https://github.com/byte5ai/omadia cd omadia npm install npm start
# 命令行使用
omadia --help
# 基本用法
omadia [options] <input>
# Node.js 代码中使用
const omadia = require('omadia');
const result = await omadia.run(options);
console.log(result);
# omadia 配置说明 # 查看配置选项 omadia --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export OMADIA_CONFIG="/path/to/config.yml"
- Plugin runtime — channels, integrations, tools, sub-agents, capability providers; everything is a plugin behind a stable API surface (@omadia/plugin-api) - Builder — UI-driven plugin authoring with codegen, slot-typecheck, in-process ESLint auto-fix, and a runtime smoke harness - Knowledge graph — pgvector-backed (Postgres) with an in-memory alternative for tests - Channels — web-chat (admin UI) is in-tree; Teams + Telegram are shipped as separately-distributed plugin ZIPs - Auth — multi-provider login (local password + OIDC), per-provider user table, admin UI for provider toggle and user management - Routines — user-authored cron-triggered agent runs with full per-run trace + call-stack viewer
open http://localhost:3333 ```
That's it — docker compose up -d, open the UI, set your LLM key in the wizard, and run your first agent team. The next section is the 90-second "wow moment".
- Local / single-tenant — docker compose up, see Quickstart above - Bring-your-own — the runtime is a stock Node + Postgres app; any host capable of running both works (Kubernetes, ECS, plain VM).
Required production secret. The shipped image runs withNODE_ENV=production, which makesVAULT_KEYmandatory at boot — without it the middleware refuses to start (this is intentional; the dev fallback writes the master key into the data volume, which is not safe at rest). Generate one withopenssl rand -base64 32and wire it as a platform secret before the first deploy. The bundleddocker-compose.yamlpinsNODE_ENV=developmentso the dev fallback stays available for localdocker compose upwithout configuration; drop that override (and setVAULT_KEYin.env) when you re-use the compose file as a starting point for a non-local deploy.
```bash git clone https://github.com/byte5ai/omadia.git && cd omadia
docker compose up -d
```bash
docker compose -f infra/docker-compose.yml \ --profile diagrams --profile embeddings up -d ```
Enable diagram rendering by generating a secret and adding it tomiddleware/.envasDIAGRAM_URL_SECRET(only needed alongsideKROKI_BASE_URL+BUCKET_NAME):openssl rand -hex 32.
docker compose -f infra/docker-compose.yml --profile embeddings up -d
docker compose -f infra/docker-compose.yml --profile diagrams up -d
Start here → byte5ai/omadia-plugin-starter — a ready-to-fork template for building your own omadia plugin. Clone it, fill in your logic against @omadia/plugin-api, and ship.
omadia plugins are self-contained ZIP files that the operator uploads through the admin UI. The platform never trusts external npm registries at runtime — plugins ship node_modules baked in (or use the platform's standard library via @omadia/plugin-api). Two reference plugins are also shipped in-tree as starting points:
- agent-reference-maximum — exercises every capability in the plugin API - agent-seo-analyst — a smaller, focused tool-only example
The Builder UI walks operators through cloning either reference, slot-filling the differentiating logic, and verifying with the smoke runner before install.
高质量的开源AI工作流项目
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,智能工作流 在Agent工作流赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | omadia |
| Topics | aitypescriptdockeragentic-os |
| GitHub | https://github.com/byte5ai/omadia |
| License | MIT |
| 语言 | TypeScript |
收录时间:2026-06-10 · 更新时间:2026-06-10 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端