โ† All skills
Tencent SkillHub ยท Developer Tools

Workflow

Build automated pipelines with reusable components, data flow between nodes, and state management.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Build automated pipelines with reusable components, data flow between nodes, and state management.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, components.md, data-flow.md, errors.md, lifecycle.md, state.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Docs
  • SKILL.md Primary doc
  • components.md Docs
  • data-flow.md Docs
  • errors.md Docs
  • lifecycle.md Docs
  • state.md Docs