Workflow Engine
by @plgonzalezrx8
Structural parity skeleton for queue-driven orchestration in a workflow context.
clawhub install workflow-engineπ About This Skill
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
Contract
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.yamlArgument Parsing
Parse arguments in this order:
1. positional target (optional)
2. --handoff (boolean)
3. --batch (optional)
4. --type (optional)
5. unknown flags are non-fatal; report and ignore
If no target is supplied, list candidate inbox files and request explicit selection.
Runtime Loader Requirements
Before doing queue work, load runtime context from:
ops/derivation-manifest.md (if present)ops/config.yaml (if present)ops/queue/queue.yaml
2. ops/queue/queue.yml
3. ops/queue/queue.jsonIf no queue file exists, fail safely with actionable remediation.
Safety Constraints
Never:
Always:
extract -> create -> reflect -> reweave -> verify -> done)--handoff is setScope Boundary
No plugin hooks are implemented in this skeleton. Lifecycle behavior is emulated in-skill to preserve deterministic execution semantics only.
Installation
To install the workflow-engine and enable its hooks:
# Clone or navigate to the workflow-engine directory
cd workflow-engineRun the install script to set up hooks
./install-hooks.shOr manually enable hooks via openclaw
openclaw hooks enable session-orient
openclaw hooks enable write-validate
openclaw hooks enable session-capture