# Send Workflow 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",
    "name": "Workflow",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/workflow",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/workflow",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/workflow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=workflow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "components.md",
      "data-flow.md",
      "errors.md",
      "lifecycle.md",
      "state.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "workflow",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T03:57:25.735Z",
      "expiresAt": "2026-05-18T03:57:25.735Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=workflow",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=workflow",
        "contentDisposition": "attachment; filename=\"workflow-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "workflow"
      },
      "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"
    },
    "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",
    "downloadUrl": "https://openagent3.xyz/downloads/workflow",
    "agentUrl": "https://openagent3.xyz/skills/workflow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/workflow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/workflow/agent.md"
  }
}
```
## Documentation

### Architecture

Workflows live in workflows/ with components and flows:

workflows/
├── index.md                 # Inventory with tags
├── components/
│   ├── connections/         # Auth configs
│   ├── nodes/               # Reusable operations
│   └── triggers/            # Event sources
└── flows/{name}/
    ├── flow.md              # Definition
    ├── config.yaml          # Parameters
    ├── run.sh               # Executable
    ├── state/               # Persistent between runs
    └── logs/

### Quick Reference

TopicFileDirectory layout, naming, formatsstructure.mdData passing between nodesdata-flow.mdCursor, seen set, checkpointstate.mdRetry, rollback, idempotencyerrors.mdConnections, nodes, triggerscomponents.mdCreate, test, update, archivelifecycle.md

### Requirements

jq — JSON processing
yq — YAML config parsing
curl — HTTP requests
flock — Lock files to prevent concurrent runs
Secrets in macOS Keychain (security find-generic-password)

### Data Storage

Location: workflows/ in workspace root
State: flows/{name}/state/ — cursor.json, seen.json, checkpoint.json
Logs: flows/{name}/logs/ — JSONL per run
Data: flows/{name}/data/ — intermediate files between nodes

### 1. Data Flow Pattern

Each node writes output to data/{NN}-{name}.json. Next node reads it.

curl ... > data/01-fetch.json
jq '...' data/01-fetch.json > data/02-filter.json

Breaking this pattern = nodes can't communicate.

### 2. Error Declaration

Every node in flow.md MUST declare:

On error: retry(N) | fail | continue | alert
On empty: skip | continue | fail

Undefined behavior = unpredictable workflow.

### 3. Lock Files

Prevent concurrent runs:

LOCKFILE="/tmp/workflow-${NAME}.lock"
exec 200>"$LOCKFILE"
flock -n 200 || exit 0

### 4. State Files

FilePurposecursor.json"Where did I leave off?"seen.json"What have I processed?"checkpoint.json"Multi-step recovery"

### 5. Component Reuse

Before creating new connections/nodes/triggers:

ls workflows/components/connections/
ls workflows/components/nodes/

Use existing. Update "Workflows Using This" when adding.

Related: For LLM-driven multi-phase processes, see the cycle skill.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- 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-11T03:57:25.735Z
- Expires at: 2026-05-18T03:57:25.735Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/workflow)
- [Send to Agent page](https://openagent3.xyz/skills/workflow/agent)
- [JSON manifest](https://openagent3.xyz/skills/workflow/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/workflow/agent.md)
- [Download page](https://openagent3.xyz/downloads/workflow)