docs: make Chinese README the default
CI / detect-changes (push) Has been cancelled
Publish docs via GitHub Pages / Deploy docs (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / build (push) Has been cancelled
CI / test-harness (push) Has been cancelled
CI / generate-e2e-matrix (push) Has been cancelled
CI / build-ui (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / e2e (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 10:29:17 +00:00
parent d98072c7b3
commit d4408ff6c0
+93 -88
View File
@@ -1,3 +1,8 @@
<!-- WEHUB_ZH_README -->
> [!NOTE]
> 本文档由 WeHub 基于上游 README 翻译整理,属于社区翻译,非官方中文文档。
> [English](./README.en.md) · [原始项目](https://github.com/conductor-oss/conductor) · [上游 README](https://github.com/conductor-oss/conductor/blob/HEAD/README.md)
> 原作者、版权与许可证归属以原始项目及本仓库 LICENSE 文件为准。
<picture>
<!-- Dark mode logo -->
@@ -8,7 +13,7 @@
<h1 align="center" style="border-bottom: none">
Conductor - Internet scale Agentic Workflow Engine
Conductor - 互联网规模的智能体工作流引擎
</h1>
@@ -18,33 +23,33 @@
[![Conductor Slack](https://img.shields.io/badge/Slack-Join%20the%20Community-blueviolet?logo=slack)](https://join.slack.com/t/orkes-conductor/shared_invite/zt-3dpcskdyd-W895bJDm8psAV7viYG3jFA)
[![Conductor OSS](https://img.shields.io/badge/Conductor%20OSS-Visit%20Site-blue)](https://conductor-oss.org)
#### Orchestrating distributed systems means wrestling with failures, retries, and state recovery. Conductor handles all of that so you don't have to.
#### 编排分布式系统意味着要应对故障、重试和状态恢复。Conductor 会替你处理这一切。
Conductor is an open-source, durable workflow engine built at [Netflix](https://netflixtechblog.com/netflix-conductor-a-microservices-orchestrator-2e8d4771bf40) for orchestrating microservices, AI agents, and durable workflows at internet scale. Trusted in production at Netflix, Tesla, LinkedIn, and J.P. Morgan. Actively maintained by [Orkes](https://orkes.io) and a growing [community](https://join.slack.com/t/orkes-conductor/shared_invite/zt-3dpcskdyd-W895bJDm8psAV7viYG3jFA).
Conductor 是在 [Netflix](https://netflixtechblog.com/netflix-conductor-a-microservices-orchestrator-2e8d4771bf40) 构建的开源持久化(durable)工作流引擎,用于在互联网规模上编排微服务、AI 智能体(agent)和持久化工作流。NetflixTeslaLinkedIn J.P. Morgan 均已在生产环境中信赖并使用。由 [Orkes](https://orkes.io) 和不断壮大的 [community](https://join.slack.com/t/orkes-conductor/shared_invite/zt-3dpcskdyd-W895bJDm8psAV7viYG3jFA). 积极维护。
[![conductor_oss_getting_started](https://github.com/user-attachments/assets/6153aa58-8ad1-4ec5-93d1-38ba1b83e3f4)](https://youtu.be/4azDdDlx27M)
---
# Get Running in 60 Seconds
# 60 秒快速启动
**Prerequisites:** [Node.js](https://nodejs.org/) v16+ and Java 21+ must be installed.
**前置条件:** 必须安装 [Node.js](https://nodejs.org/) v16+ Java 21+
```shell
npm install -g @conductor-oss/conductor-cli
conductor server start
```
Open [http://localhost:8080](http://localhost:8080) — your server is running with the built-in ui-next UI.
打开 [http://localhost:8080](http://localhost:8080) — 你的服务器已运行,并带有内置的 ui-next UI
> **Upgrading from a previous version?** The CLI caches the server JAR at `~/.conductor-cli/`. If you have an older version cached, force a fresh download:
> **从旧版本升级?** CLI 会在 `~/.conductor-cli/` 缓存服务器 JAR。如果缓存了旧版本,请强制重新下载:
> ```shell
> conductor server start latest
> # or delete the cache manually
> rm ~/.conductor-cli/conductor-server-latest.jar && conductor server start
> ```
**Run your first workflow:**
**运行你的第一个工作流:**
```shell
# Create a workflow that calls an API and parses the response — no workers needed
@@ -52,44 +57,44 @@ curl -s https://raw.githubusercontent.com/conductor-oss/conductor/main/docs/quic
conductor workflow create workflow.json
```
> **Note:** Running this command twice will return an error on the second call — the workflow already exists. This is expected behavior. Use `conductor workflow update` to modify an existing workflow.
> **注意:** 连续运行两次该命令会在第二次调用时返回错误——工作流已存在。这是预期行为。使用 `conductor workflow update` 修改现有工作流。
```shell
conductor workflow start -w hello_workflow --sync
```
See the [Quickstart guide](https://docs.conductor-oss.org/quickstart/) for the full walkthrough, including writing workers and replaying workflows.
查看 [Quickstart guide](https://docs.conductor-oss.org/quickstart/) 了解完整演练,包括编写 worker 和重放工作流。
**Docker Image for Conductor** (includes the ui-next UI):
**Conductor 的 Docker 镜像**(包含 ui-next UI):
```shell
# UI at http://localhost:5000 | API at http://localhost:8080
docker run -p 5000:5000 -p 8080:8080 conductoross/conductor:next
```
All CLI commands have equivalent cURL/API calls. See the [Quickstart](https://docs.conductor-oss.org/quickstart/) for details.
所有 CLI 命令都有等效的 cURL/API 调用。详见 [Quickstart](https://docs.conductor-oss.org/quickstart/)
---
# Why Conductor is the workflow engine of choice for developers
# 为什么 Conductor 是开发者首选的工作流引擎
| | |
|---|---|
| **Durable execution** | Every step is persisted. Survives crashes, restarts, and network failures with configurable retries and timeouts. |
| **Deterministic by design** | Orchestration is separated from business logic — determinism is architectural, not developer discipline. Workers run any code; the workflow graph stays deterministic by construction. |
| **AI agent orchestration** | 14+ native LLM providers, MCP tool calling, function calling, human-in-the-loop approval, and vector databases for RAG. |
| **Dynamic at runtime** | Dynamic forks, tasks, and sub-workflows resolved at runtime. LLMs generate JSON workflow definitions and Conductor executes them immediately. |
| **Full replayability** | Restart from the beginning, rerun from any task, or retry just the failed step — on any workflow, at any time. |
| **Internet scale** | Battle-tested at Netflix, Tesla, LinkedIn, and J.P. Morgan. Scales horizontally to billions of workflow executions. |
| **Polyglot workers** | Workers in Java, Python, Go, JavaScript, C#, Ruby, or Rust. Workers poll, execute, and report — run them anywhere. |
| **Self-hosted, no lock-in** | Apache 2.0. 5 persistence backends, 6 message brokers. Runs anywhere Docker or a JVM runs. |
| **持久化执行(Durable execution** | 每一步都会持久化。可承受崩溃、重启和网络故障,并支持可配置的重试和超时。 |
| **设计即确定性(Deterministic by design** | 编排与业务逻辑分离——确定性是架构层面的,而非靠开发者自律。Worker 可运行任意代码;工作流图在构建上保持确定性。 |
| **AI 智能体编排** | 14+ 原生 LLM 提供商、MCP 工具调用、函数调用、人在回路(human-in-the-loop)审批,以及用于 RAG 的向量数据库。 |
| **运行时动态化** | 动态分叉、任务和子工作流在运行时解析。LLM 生成 JSON 工作流定义,Conductor 立即执行。 |
| **完全可重放** | 可从开头重启、从任意任务重新运行,或仅重试失败步骤——适用于任何工作流,任何时候都可以。 |
| **互联网规模** | 在 NetflixTeslaLinkedIn J.P. Morgan 久经考验。可水平扩展至数十亿次工作流执行。 |
| **多语言 Worker** | 支持 JavaPython、Go、JavaScript、C#、Ruby 或 Rust 编写的 Worker。Worker 轮询、执行并上报——可在任意位置运行。 |
| **自托管,无厂商锁定** | Apache 2.0。5 种持久化后端、6 种消息代理。可在任何能运行 Docker JVM 的环境中运行。 |
# Ship Agents, Not Framework Code
# 交付智能体,而非框架代码
Conductor workers are plain code — any language, any library, any I/O. No determinism constraints, no SDK ritual. The orchestration layer is declarative and machine-readable, so LLMs generate and compose workflows natively. If an agent crashes at iteration 12, it resumes from iteration 12.
Conductor worker 就是普通代码——任意语言、任意库、任意 I/O。没有确定性约束,没有 SDK 仪式。编排层是声明式且机器可读的,因此 LLM 可以原生生成和组合工作流。如果智能体在第 12 次迭代时崩溃,它会从第 12 次迭代恢复。
**An autonomous think-act agent in Conductor:** discover tools via MCP, reason with an LLM, call the chosen tool, repeat until done.
**Conductor 中的自主思考-行动(think-act)智能体:** 通过 MCP 发现工具,用 LLM 推理,调用所选工具,重复直至完成。
```json
{
@@ -153,15 +158,15 @@ Conductor workers are plain code — any language, any library, any I/O. No dete
}
```
Every step is durably persisted — no framework, no SDK lock-in. Code-first engines force your code to be deterministic so the framework can replay it. Conductor makes the engine deterministic — so your code doesn't have to be.
每一步都持久化保存——无框架、无 SDK 锁定。代码优先(code-first)引擎要求你的代码具有确定性,以便框架可以重放。Conductor 让引擎具有确定性——因此你的代码不必如此。
See the [Build Your First AI Agent](https://docs.conductor-oss.org/devguide/ai/first-ai-agent.html) guide for the full walkthrough.
查看 [Build Your First AI Agent](https://docs.conductor-oss.org/devguide/ai/first-ai-agent.html) 指南了解完整演练。
---
## Conductor Skills for AI Coding Assistants
## 面向 AI 编程助手的 Conductor Skills
**[Conductor Skills](https://github.com/conductor-oss/conductor-skills)** let AI coding assistants (Claude Code, Gemini CLI, and others) create, manage, and deploy Conductor workflows directly from your terminal.
**[Conductor Skills](https://github.com/conductor-oss/conductor-skills)** AI 编程助手(Claude CodeGemini CLI 等)可直接从你的终端创建、管理和部署 Conductor 工作流。
### Claude
```shell
@@ -170,9 +175,9 @@ See the [Build Your First AI Agent](https://docs.conductor-oss.org/devguide/ai/f
/plugin install conductor@conductor-skills
```
### Install for all detected agents
### 为所有检测到的 agent 安装
One command to auto-detect every supported agent on your system and install globally where possible. Re-run anytime — it only installs for newly detected agents.
一条命令即可自动检测系统上所有受支持的 agent,并在可能的情况下进行全局安装。可随时重新运行——仅会为新检测到的 agent 安装。
**macOS / Linux**
```bash
@@ -192,7 +197,7 @@ powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1
# SDKs
| Language | Repository | Install |
| 语言 | 仓库 | 安装 |
|----------|------------|---------|
| ☕ Java | [conductor-oss/java-sdk](https://github.com/conductor-oss/java-sdk) | [Maven Central](https://mvnrepository.com/artifact/org.conductoross/conductor-client) |
| 🐍 Python | [conductor-oss/python-sdk](https://github.com/conductor-oss/python-sdk) | `pip install conductor-python` |
@@ -204,20 +209,20 @@ powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1
---
# Documentation & Community
# 文档与社区
- **[Documentation](https://conductor-oss.org)** — Architecture, guides, API reference, and cookbook recipes.
- **[Slack](https://join.slack.com/t/orkes-conductor/shared_invite/zt-3dpcskdyd-W895bJDm8psAV7viYG3jFA)** — Community discussions and support.
- **[Community Forum](https://community.orkes.io/)** — Ask questions and share patterns.
- **[文档](https://conductor-oss.org)** — 架构、指南、API 参考和 cookbook 示例。
- **[Slack](https://join.slack.com/t/orkes-conductor/shared_invite/zt-3dpcskdyd-W895bJDm8psAV7viYG3jFA)** — 社区讨论与支持。
- **[社区论坛](https://community.orkes.io/)** — 提问并分享模式。
---
<details>
<summary><strong>Backend Configuration</strong></summary>
<summary><strong>后端配置</strong></summary>
| Backend | Configuration |
| 后端 | 配置 |
|---------|---------------|
| Redis + ES7 (default) | [config-redis.properties](docker/server/config/config-redis.properties) |
| Redis + ES7(默认) | [config-redis.properties](docker/server/config/config-redis.properties) |
| Redis + ES8 | [config-redis-es8.properties](docker/server/config/config-redis-es8.properties) |
| Redis + OpenSearch | [config-redis-os.properties](docker/server/config/config-redis-os.properties) |
| Postgres | [config-postgres.properties](docker/server/config/config-postgres.properties) |
@@ -228,12 +233,12 @@ powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1
---
# Build From Source
# 从源码构建
<details>
<summary><strong>Requirements and instructions</strong></summary>
<summary><strong>要求与说明</strong></summary>
**Requirements:** Docker Desktop, Java (JDK) 21+, Node.js 18+ and pnpm (for UI)
**要求:** Docker DesktopJava (JDK) 21+Node.js 18+ 以及 pnpm(用于 UI
```shell
git clone https://github.com/conductor-oss/conductor
@@ -248,15 +253,15 @@ cd server
../gradlew bootRun
```
**Run the UI in dev mode (hot-reload at http://localhost:1234):**
**以开发模式运行 UI(在 http://localhost:1234):** 热重载**
Requires a running Conductor server on `http://localhost:8080`. Enable `corepack` once if you haven't already:
需要在 `http://localhost:8080` 上运行 Conductor 服务器。如果尚未启用,请先启用 `corepack`
```shell
corepack enable
```
Then start the dev server:
然后启动开发服务器:
```shell
cd ui-next
@@ -264,9 +269,9 @@ pnpm install
pnpm dev
```
Open [http://localhost:1234](http://localhost:1234) — the UI reloads automatically on file changes.
打开 [http://localhost:1234](http://localhost:1234) — 文件变更时 UI 会自动重载。
See the [full build guide](docs/devguide/running/source.md) for details.
详见[完整构建指南](docs/devguide/running/source.md)
</details>
---
@@ -274,112 +279,112 @@ See the [full build guide](docs/devguide/running/source.md) for details.
# FAQ
<details>
<summary><strong>Is this the same as Netflix Conductor?</strong></summary>
<summary><strong>这与 Netflix Conductor 相同吗?</strong></summary>
Yes. Conductor OSS is the continuation of the original [Netflix Conductor](https://github.com/Netflix/conductor) repository after Netflix contributed the project to the open-source foundation.
是的。Conductor OSS 是原版 [Netflix Conductor](https://github.com/Netflix/conductor) 仓库的延续,Netflix 将该项目贡献给开源基金会之后由社区继续维护。
</details>
<details>
<summary><strong>Is Conductor open source?</strong></summary>
<summary><strong>Conductor 是开源的吗?</strong></summary>
Yes. Conductor is a fully open-source workflow engine licensed under Apache 2.0. You can self-host on your own infrastructure with 5 persistence backends and 6 message brokers.
是的。Conductor 是完全开源的工作流引擎,采用 Apache 2.0 许可证。你可以在自己的基础设施上自托管,支持 5 种持久化后端和 6 种消息代理(message broker)。
</details>
<details>
<summary><strong>Is this project actively maintained?</strong></summary>
<summary><strong>该项目是否在积极维护?</strong></summary>
Yes. [Orkes](https://orkes.io) is the primary maintainer and offers an enterprise SaaS platform for Conductor across all major cloud providers.
是的。[Orkes](https://orkes.io) 是主要维护方,并在所有主流云服务商上提供 Conductor 的企业级 SaaS 平台。
</details>
<details>
<summary><strong>Can Conductor scale to handle my workload?</strong></summary>
<summary><strong>Conductor 能否扩展以应对我的工作负载?</strong></summary>
Yes. Built at Netflix, battle-tested at internet scale. Conductor scales horizontally across multiple server instances to handle billions of workflow executions.
可以。Conductor 诞生于 Netflix,在互联网规模下经过实战检验。它可跨多个服务器实例水平扩展,处理数十亿次工作流执行。
</details>
<details>
<summary><strong>Does Conductor support durable execution?</strong></summary>
<summary><strong>Conductor 是否支持持久化执行(durable execution)?</strong></summary>
Yes. Conductor pioneered durable execution patterns, ensuring workflows and durable agents complete reliably despite infrastructure failures or crashes. Every step is persisted and recoverable.
是的。Conductor 开创了持久化执行模式,确保工作流和持久化 agent 在基础设施故障或崩溃时仍能可靠完成。每一步都会持久化并可恢复。
</details>
<details>
<summary><strong>Can I replay a workflow after it completes or fails?</strong></summary>
<summary><strong>工作流完成或失败后,我可以重放吗?</strong></summary>
Yes. Conductor preserves full execution history indefinitely. You can restart from the beginning, rerun from a specific task, or retry just the failed step — via API or UI.
可以。Conductor 会无限期保留完整执行历史。你可以从头重新开始、从特定任务重新运行,或仅重试失败步骤——通过 API UI 均可。
</details>
<details>
<summary><strong>Can Conductor orchestrate AI agents and LLMs?</strong></summary>
<summary><strong>Conductor 能否编排 AI agent LLM</strong></summary>
Yes. Conductor provides native integration with 14+ LLM providers (Anthropic, OpenAI, Gemini, Bedrock, and more), MCP tool calling, function calling, human-in-the-loop approval, and vector database integration for RAG.
是的。Conductor 原生集成 14+ LLM 提供商(AnthropicOpenAIGeminiBedrock 等),支持 MCP 工具调用、函数调用(function calling)、人在回路(human-in-the-loop)审批,以及用于 RAG 的向量数据库集成。
</details>
<details>
<summary><strong>Why does Conductor separate orchestration from code?</strong></summary>
<summary><strong>为什么 Conductor 将编排与代码分离?</strong></summary>
Coupling orchestration logic with business logic forces developers to maintain determinism constraints manually — no direct I/O, no system time, no randomness in workflow definitions. Conductor eliminates this entire class of bugs by making the orchestration layer deterministic by construction. Workers are plain code with zero framework constraints — write them in any language, use any library, call any API.
将编排逻辑与业务逻辑耦合,会迫使开发者在工作流定义中手动维持确定性约束——不能直接 I/O、不能使用系统时间、不能引入随机性。Conductor 通过让编排层在结构上保持确定性,消除了整类此类 bug。Worker 是普通代码,零框架约束——可用任意语言编写,使用任意库,调用任意 API
</details>
<details>
<summary><strong>Isn't writing workflows as code more powerful than JSON?</strong></summary>
<summary><strong>用代码编写工作流不是比 JSON 更强大吗?</strong></summary>
It depends on what you mean by "powerful." In code-first engines, the workflow definition and your business logic live in the same runtime — which means the engine must replay your code to recover state. That forces determinism constraints on your business logic: no direct I/O, no system time, no threads, no randomness. Conductor separates these concerns. The orchestration graph is declarative (JSON), so it's deterministic by construction. Your workers are plain code with zero constraints — use any language, any library, call any API. You get the full power of code where it matters (business logic) without the framework tax where it doesn't (orchestration).
这取决于你对「强大」的定义。在代码优先(code-first)引擎中,工作流定义与业务逻辑运行在同一运行时中——这意味着引擎必须重放你的代码才能恢复状态。这会迫使业务逻辑满足确定性约束:不能直接 I/O、不能使用系统时间、不能使用线程、不能引入随机性。Conductor 将这些关注点分离。编排图是声明式的(JSON),因此在结构上就是确定性的。你的 Worker 是普通代码,零约束——可使用任意语言、任意库,调用任意 API。你在真正需要的地方(业务逻辑)获得代码的全部能力,而在不需要的地方(编排)避免框架负担。
</details>
<details>
<summary><strong>Can JSON workflows handle complex logic like branching, loops, and error handling?</strong></summary>
<summary><strong>JSON 工作流能否处理分支、循环和错误处理等复杂逻辑?</strong></summary>
Yes. Conductor supports `SWITCH` (conditional branching), `DO_WHILE` (loops with configurable iteration cleanup), `FORK_JOIN` (parallel execution with dynamic fanout), `SUB_WORKFLOW` (composition), and `DYNAMIC` tasks resolved at runtime. These are composable — you can nest loops inside branches inside forks. For error handling, every task supports configurable retries, timeouts, and optional/compensating tasks. The declarative model doesn't limit complexity — it makes complexity visible and debuggable.
可以。Conductor 支持 `SWITCH`(条件分支)、`DO_WHILE`(可配置迭代清理的循环)、`FORK_JOIN`(动态扇出的并行执行)、`SUB_WORKFLOW`(组合),以及运行时解析的 `DYNAMIC` 任务。这些能力可组合——你可以在 fork 内的分支中嵌套循环。对于错误处理,每个任务都支持可配置的重试、超时,以及可选/补偿任务。声明式模型不会限制复杂度——它让复杂度可见且可调试。
</details>
<details>
<summary><strong>How does Conductor handle workflow versioning?</strong></summary>
<summary><strong>Conductor 如何处理工作流版本控制?</strong></summary>
Workflow definitions are versioned by number. Running executions continue on the version they started with — deploying a new version never breaks in-flight workflows. There's no replay compatibility problem because Conductor doesn't replay your code. The orchestration graph is the source of truth, and each execution is pinned to its definition version. Update orchestration logic without redeploying workers and without worrying about breaking running workflows.
工作流定义按编号进行版本管理。正在运行的执行会继续使用启动时的版本——部署新版本永远不会破坏进行中的工作流。不存在重放兼容性问题,因为 Conductor 不会重放你的代码。编排图是唯一真相来源,每次执行都固定在其定义版本上。更新编排逻辑时无需重新部署 worker,也无需担心破坏正在运行的工作流。
</details>
<details>
<summary><strong>What about developer experience — IDE support, type checking, debugging?</strong></summary>
<summary><strong>开发者体验如何——IDE 支持、类型检查、调试?</strong></summary>
Conductor provides a built-in visual UI for designing, running, and debugging workflows. Every execution is fully observable: you can inspect the input, output, timing, and retry history of every task. For type safety, Conductor validates workflow inputs and task I/O against JSON Schema. Workers are plain code in your language of choice — you get full IDE support, type checking, and debugging for your business logic. The orchestration layer is visible in the UI, not hidden inside a framework.
Conductor 提供内置可视化 UI,用于设计、运行和调试工作流。每次执行都可完全观测:你可以检查每个任务的输入、输出、时序和重试历史。为实现类型安全(type safety),Conductor 会根据 JSON Schema 验证工作流输入和任务 I/O。Worker 是你所选语言中的普通代码——你的业务逻辑可获得完整的 IDE 支持、类型检查和调试能力。编排层在 UI 中可见,而非隐藏在框架内部。
</details>
<details>
<summary><strong>Can Conductor handle long-running workflows (days, weeks, months)?</strong></summary>
<summary><strong>Conductor 能处理长时间运行的工作流(数天、数周、数月)吗?</strong></summary>
Yes. Conductor is designed for long-running workflows. Executions are fully persisted — a workflow can pause for months waiting for a human approval, an external signal, or a scheduled timer, and resume exactly where it left off. There's no in-memory state to lose. This is the same mechanism that makes AI agent loops durable: if iteration 12 waits for a human review for three weeks, iteration 13 picks up right where it left off.
可以。Conductor 专为长时间运行的工作流而设计。执行状态会完整持久化——工作流可以暂停数月,等待人工审批、外部信号或定时器,并在中断处精确恢复。不存在会丢失的内存状态。这正是让 AI agent 循环具备持久性的机制:如果第 12 次迭代等待人工审核三周,第 13 次迭代会从中断处继续。
</details>
<details>
<summary><strong>Don't I lose flexibility by not having orchestration in code?</strong></summary>
<summary><strong>不把编排写在代码里,会不会失去灵活性?</strong></summary>
You gain flexibility. Because workflows are JSON, LLMs can generate and modify them at runtime — no compile/deploy cycle. Dynamic forks let you fan out to a variable number of parallel tasks determined at runtime. Dynamic sub-workflows let one workflow compose others by name. And because workers are decoupled from orchestration, you can update the workflow graph or swap worker implementations independently. Code-first engines couple these together, so changing orchestration means redeploying and re-versioning your code.
你会获得更大的灵活性。由于工作流是 JSON 格式,LLM 可以在运行时生成和修改它们——无需编译/部署周期。动态分叉(dynamic forks)可让你扇出(fan out)到运行时确定的可变数量的并行任务。动态子工作流(dynamic sub-workflows)允许一个工作流按名称组合其他工作流。由于 worker 与编排解耦,你可以独立更新工作流图或替换 worker 实现。代码优先(code-first)引擎将两者耦合在一起,因此更改编排意味着重新部署和重新版本化你的代码。
</details>
<details>
<summary><strong>How does Conductor compare to other workflow engines?</strong></summary>
<summary><strong>Conductor 与其他工作流引擎相比如何?</strong></summary>
Conductor is an open-source workflow engine with native LLM task types for 14+ providers, built-in MCP integration, durable execution, full replayability, and 7 language SDKs. Unlike code-first engines, Conductor separates orchestration from business logic — determinism is an architectural guarantee, not a developer constraint. Your workers are plain code with zero framework rules. The orchestration layer is declarative, so it's observable, versionable, and composable by LLMs. Battle-tested at Netflix, Tesla, LinkedIn, and J.P. Morgan.
Conductor 是开源工作流引擎,原生支持 14+ 提供商的 LLM 任务类型,内置 MCP 集成、持久化执行、完整可重放性,以及 7 种语言的 SDK。与代码优先引擎不同,Conductor 将编排与业务逻辑分离——确定性是架构层面的保证,而非开发者的约束。你的 worker 是普通代码,零框架规则。编排层是声明式的,因此可被 LLM 观测、版本化和组合。已在 NetflixTeslaLinkedIn J.P. Morgan 经实战检验。
</details>
<details>
<summary><strong>Is Orkes Conductor compatible with Conductor OSS?</strong></summary>
<summary><strong>Orkes Conductor Conductor OSS 兼容吗?</strong></summary>
100% compatible. Orkes Conductor is built on top of Conductor OSS with full API and workflow compatibility.
100% 兼容。Orkes Conductor 构建于 Conductor OSS 之上,具备完整的 API 和工作流兼容性。
</details>
---
# Contributing
# 贡献
We welcome contributions from everyone!
我们欢迎所有人贡献!
- **Report Issues:** Open an [issue on GitHub](https://github.com/conductor-oss/conductor/issues).
- **Contribute code:** Check out our [Contribution Guide](CONTRIBUTING.md) and [good first issues](https://github.com/conductor-oss/conductor/labels/good%20first%20issue).
- **Improve docs:** Help keep our [documentation](https://github.com/conductor-oss/conductor/tree/main/docs) great.
- **报告问题:** 在 GitHub 上提交 [issue](https://github.com/conductor-oss/conductor/issues).
- **贡献代码:** 查看我们的[贡献指南](CONTRIBUTING.md)和[适合新手的 issue](https://github.com/conductor-oss/conductor/labels/good%20first%20issue).
- **改进文档:** 帮助维护我们的[文档](https://github.com/conductor-oss/conductor/tree/main/docs)
## Contributors
## 贡献者
<a href="https://github.com/conductor-oss/conductor/graphs/contributors">
<img src="https://contrib.rocks/image?repo=conductor-oss/conductor" />
@@ -387,10 +392,10 @@ We welcome contributions from everyone!
---
# Roadmap
# 路线图
[See the Conductor OSS Roadmap](ROADMAP.md). Want to participate? [Reach out](https://forms.gle/P2i1xHrxPQLrjzTB7).
[查看 Conductor OSS 路线图](ROADMAP.md)。想参与?[联系我们](https://forms.gle/P2i1xHrxPQLrjzTB7).
# License
# 许可证
Conductor is licensed under the [Apache 2.0 License](LICENSE).
Conductor 采用 [Apache 2.0 License](LICENSE) 许可证。