# Send Workflow Engine to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "workflow-engine",
    "name": "Workflow Engine",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/plgonzalezrx8/workflow-engine",
    "canonicalUrl": "https://clawhub.ai/plgonzalezrx8/workflow-engine",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/workflow-engine",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=workflow-engine",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "skill.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "workflow-engine",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T15:56:58.475Z",
      "expiresAt": "2026-05-08T15:56:58.475Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=workflow-engine",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=workflow-engine",
        "contentDisposition": "attachment; filename=\"workflow-engine-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "workflow-engine"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/workflow-engine"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/workflow-engine",
    "downloadUrl": "https://openagent3.xyz/downloads/workflow-engine",
    "agentUrl": "https://openagent3.xyz/skills/workflow-engine/agent",
    "manifestUrl": "https://openagent3.xyz/skills/workflow-engine/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/workflow-engine/agent.md"
  }
}
```
## Documentation

### Contract

This skill is intentionally skeleton-only. It provides structure parity with canonical queue orchestration without plugin hooks.

Wave 2 execution parity includes:

Setup derivation phase ordering: detection -> understanding -> derivation -> proposal -> generation -> validation
Required persisted setup artifacts: ops/derivation.md, ops/derivation-manifest.md, ops/config.yaml
In-skill lifecycle emulation routines (not real hook execution):

session orient
write-time validation checklist
stop/session capture persistence

### Argument Parsing

Parse arguments in this order:

positional target (optional)
--handoff (boolean)
--batch <id> (optional)
--type <phase> (optional)
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)
queue file with fallback precedence:

ops/queue/queue.yaml
ops/queue/queue.yml
ops/queue/queue.json

If no queue file exists, fail safely with actionable remediation.

### Safety Constraints

Never:

execute arbitrary shell from user-provided strings
continue processing after parse/load failures
mutate tasks outside declared queue schema fields
call external plugins/hooks (explicitly out of scope)

Always:

validate queue structure before state transitions
make state transitions explicit (extract -> create -> reflect -> reweave -> verify -> done)
produce deterministic handoff text when --handoff is set
preserve resumability by reading persisted queue state first

### Scope 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-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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: plgonzalezrx8
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T15:56:58.475Z
- Expires at: 2026-05-08T15:56:58.475Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/workflow-engine)
- [Send to Agent page](https://openagent3.xyz/skills/workflow-engine/agent)
- [JSON manifest](https://openagent3.xyz/skills/workflow-engine/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/workflow-engine/agent.md)
- [Download page](https://openagent3.xyz/downloads/workflow-engine)