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

### What It Does

Provides a practical workflow-authoring and operations standard for Gina sandbox automation.

Creates and validates workflow definitions.
Runs workflows and inspects artifacts/logs.
Applies a repeatable eval -> optimize -> compare loop.
Uses safe TypeScript/SQL/KV patterns for step logic.

### When To Use

You are creating or maintaining multi-step workflow orchestration.
You need reproducible debugging from run artifacts.
You want measurable improvements using baseline comparisons.

### When Not To Use

The task is a single action with no orchestration requirement.
You only need high-level strategy language without runnable steps.
You cannot provide explicit permissions or side effects.

### Inputs

Workflow intent and success criteria.
Trigger definition and input schema.
Required tools/data sources and permission scope.
Optional baseline run ID for optimization.

### Outputs

Validated workflow definition (.ts).
Runnable execution with traceable artifacts.
Evaluation record with baseline comparison.
Clear rollback path for regressions.

### Core Commands

workflow create <id>
workflow validate <id>
workflow run <id> [--input JSON]
workflow status <run-id>
workflow logs <run-id> [--step <step-id>]
workflow eval <run-id>
workflow optimize <id> --baseline <run-id>
workflow rollback <id> <opt-run-id>

### Setup

Confirm workflow tooling is available (workflow list should succeed).
Scaffold or open the target workflow in /workspace/.harness/workflows/.
Keep active versions on @latest.ts naming when versioned variants exist.
Validate before every run: workflow validate <id>.
For risky changes, capture a baseline run and eval before editing.

### Capability Contract Checklist

For each workflow entry, explicitly define:

Trigger.
Inputs.
Outputs.
Side effects.
Failure modes.
Permission scope.

### Failure Modes

Validation failure from malformed step definitions.
Runtime errors in TS/SQL/Bash steps.
Missing tool permissions or tool availability.
Data shape changes causing parse/cast failures.
Timeout/retry exhaustion in external calls.

### Security And Permissions

Use least privilege by step using allow and block.
Declare permissions in the submission contract (no wildcard permissions).
Never include raw secrets in skill text, logs, or examples.
Treat writes (files, KV, external posts, trading actions) as explicit side effects.

### Evidence Expectations

Setup path that a reviewer can execute in under 10 minutes.
One reproducible run artifact or run log example.
Clear statement of expected outputs and acceptable failure behavior.

### Optional Directories

workflows/
  SKILL.md
  references/   # implementation and API details
  scripts/      # optional helpers for repeatable checks
  assets/       # optional diagrams/screenshots

### Reference Material

Deep technical references are intentionally split out:

references/cli-and-definition.md
references/eval-optimize-and-artifacts.md
references/polymarket-patterns.md

Use these as appendices while keeping this file focused on operational usage.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: askginadotai
- Version: 1.0.2
## 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:26.179Z
- Expires at: 2026-05-18T03:57:26.179Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/workflows)
- [Send to Agent page](https://openagent3.xyz/skills/workflows/agent)
- [JSON manifest](https://openagent3.xyz/skills/workflows/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/workflows/agent.md)
- [Download page](https://openagent3.xyz/downloads/workflows)