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

### ClawFlows

Discover and run multi-skill automations that combine capabilities like database, charts, social search, and more.

### Install CLI

npm i -g clawflows

### Search for automations

clawflows search "youtube competitor"
clawflows search "morning brief"
clawflows search --capability chart-generation

### Check requirements

Before installing, see what capabilities the automation needs:

clawflows check youtube-competitor-tracker

Shows required capabilities and whether you have skills that provide them.

### Install an automation

clawflows install youtube-competitor-tracker

Downloads to ./automations/youtube-competitor-tracker.yaml

### List installed automations

clawflows list

### Run an automation

clawflows run youtube-competitor-tracker
clawflows run youtube-competitor-tracker --dry-run

The --dry-run flag shows what would happen without executing.

### Enable/disable scheduling

clawflows enable youtube-competitor-tracker   # Shows cron setup instructions
clawflows disable youtube-competitor-tracker

### View logs

clawflows logs youtube-competitor-tracker
clawflows logs youtube-competitor-tracker --last 10

### Publish your automation

clawflows publish ./my-automation.yaml

Prints instructions for submitting to the registry via PR.

### How It Works

Automations use capabilities (abstract) not skills (concrete):

steps:
  - capability: youtube-data      # Not a specific skill
    method: getRecentVideos
    args:
      channels: ["@MrBeast"]
    capture: videos
    
  - capability: database
    method: upsert
    args:
      table: videos
      data: "${videos}"

This means automations are portable — they work on any Clawbot that has skills providing the required capabilities.

### Standard Capabilities

CapabilityWhat It DoesExample Skillsyoutube-dataFetch video/channel statsyoutube-apidatabaseStore and query datasqlite-skillchart-generationCreate chart imageschart-imagesocial-searchSearch X/Twittersearch-xprediction-marketsQuery oddspolymarketweatherGet forecastsweathercalendarRead/write eventscaldav-calendaremailSend/receive emailagentmailttsText to speechelevenlabs-tts

### Making Skills ClawFlows-Compatible

To make your skill work with ClawFlows automations, add a CAPABILITY.md file:

# my-capability Capability

Provides: my-capability
Skill: my-skill

## Methods

### myMethod

**Input:**
- param1: description
- param2: description

**How to fulfill:**
\\\`\\\`\\\`bash
./scripts/my-script.sh --param1 "${param1}"
\\\`\\\`\\\`

**Output:** Description of output format

And declare it in your SKILL.md frontmatter:

---
name: my-skill
provides:
  - capability: my-capability
    methods: [myMethod]
---

### Links

Registry: https://clawflows.com
CLI on npm: https://www.npmjs.com/package/clawflows
GitHub: https://github.com/Cluka-399/clawflows-registry
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Cluka-399
- 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-01T17:22:53.636Z
- Expires at: 2026-05-08T17:22:53.636Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawflows)
- [Send to Agent page](https://openagent3.xyz/skills/clawflows/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawflows/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawflows/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawflows)