Files
deepseek-harness/packages/workflow/README.zh.md
2026-08-05 16:16:57 +08:00

15 lines
1015 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# workflow/:动态工作流能力家族
[English](README.md) | 中文
本家族通过 subagent 运行由模型编写的编排工作流,并将通用工具与固定策略工具公开给模型。
| 包 | 职责 | ctx 键 |
|---|---|---|
| [`workflow/`](workflow/README.md) | 定义工作流执行和生命周期事件 | `ctx.workflows` |
| [`workflow-workerthread/`](workflow-workerthread/README.md) | 在线程中运行工作流脚本 | 注册到 `ctx.workflows` |
| [`tool-workflow/`](tool-workflow/README.md) | 向模型公开通用工作流执行 | 注册到 `ctx.tools` |
| [`tool-ralph/`](tool-ralph/README.md) | 公开使用全新 agent智能体的固定 Ralph 工作流 | 注册到 `ctx.tools` |
worker thread 将工作流执行与宿主事件循环隔离,但不构成安全边界。参见[动态工作流](../../.agents/notes/implemented/feature/2026-07-05-dynamic-workflows.md)和 [Ralph 工具](../../.agents/notes/implemented/feature/2026-07-19-fresh-agent-ralph-workflow-tool.md)决策。