ASP源码
PHP源码
.NET源码
JSP源码
工作流编排器是一个技术框架,旨在为工作流上下文中的队列驱动编排提供结构对等性。它是开发人员构建需要严格阶段顺序和状态管理的复杂 AI 智能体时的基础组件。通过在 Openclaw Skills 生态系统中使用此技能,用户可以确保其智能体工作流遵循标准化的生命周期,包括检测、理解、推导、提案、生成和验证。
该技能特别注重执行对等性和确定性行为。它通过特定的持久化产物(如推导清单和配置文件)管理运行时上下文,从而实现可靠的会话恢复和移交。虽然它作为一个不带外部插件钩子的骨架运行,但它模拟了关键的生命周期例程,以维持高标准的写入时验证和会话捕获。
下载入口:https://github.com/openclaw/skills/tree/main/skills/plgonzalezrx8/workflow-engine
从源直接安装技能的最快方式。
npx clawhub@latest install workflow-engine
将技能文件夹复制到以下位置之一
全局模式~/.openclaw/skills/
工作区
/skills/
优先级:工作区 > 本地 > 内置
将此提示词复制到 OpenClaw 即可自动安装。
请帮我使用 Clawhub 安装 workflow-engine。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。
要将工作流编排器集成到您的 Openclaw Skills 设置中,请按照以下步骤操作:
# 进入 workflow-engine 目录
cd workflow-engine
# 执行安装脚本以配置钩子
./install-hooks.sh
您也可以使用 CLI 手动启用所需的生命周期钩子:
openclaw hooks enable session-orient
openclaw hooks enable write-validate
openclaw hooks enable session-capture
该技能使用结构化的目录模式组织其操作,以确保数据完整性和可追溯性。
| 产物 | 路径 | 描述 |
|---|---|---|
| 推导状态 | ops/derivation.md | 跟踪推导逻辑和当前阶段的主文件。 |
| 清单 | ops/derivation-manifest.md | 关于设置产物和推导历史的元数据。 |
| 配置 | ops/config.yaml | 全局设置和工作流参数。 |
| 任务队列 | ops/queue/queue.yaml | 主要任务列表(支持 .yml 和 .json 扩展名)。 |
| 会话日志 | ops/session-capture | 用于恢复中断工作流的持久化状态。 |
name: workflow-orchestrator
description: Structural parity skeleton for queue-driven orchestration in a workflow context.
user-invocable: true
version: "0.1"
allowed-tools: Read, Write, Edit, Grep, Glob, Bash
argument-hint: "[target] [--handoff] [--batch ] [--type ]"
This skill is intentionally skeleton-only. It provides structure parity with canonical queue orchestration without plugin hooks.
Wave 2 execution parity includes:
detection -> understanding -> derivation -> proposal -> generation -> validationops/derivation.md, ops/derivation-manifest.md, ops/config.yamlParse arguments in this order:
target (optional)--handoff (boolean)--batch (optional)--type (optional)If no target is supplied, list candidate inbox files and request explicit selection.
Before doing queue work, load runtime context from:
ops/derivation-manifest.md (if present)ops/config.yaml (if present)ops/queue/queue.yamlops/queue/queue.ymlops/queue/queue.jsonIf no queue file exists, fail safely with actionable remediation.
Never:
Always:
extract -> create -> reflect -> reweave -> verify -> done)--handoff is setNo plugin hooks are implemented in this skeleton. Lifecycle behavior is emulated in-skill to preserve deterministic execution semantics only.
To install the workflow-engine and enable its hooks:
# Clone or navigate to the workflow-engine directory
cd workflow-engine
# Run the install script to set up hooks
./install-hooks.sh
# Or manually enable hooks via openclaw
openclaw hooks enable session-orient
openclaw hooks enable write-validate
openclaw hooks enable session-capture