Search, install, and run multi-skill automations from clawflows.com. Combine multiple skills into powerful workflows with logic, conditions, and data flow between steps.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install clawflows或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install clawflows⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/clawflows/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: clawflows version: 1.0.0 description: Search, install, and run multi-skill automations from clawflows.com. Combine multiple skills into powerful workflows with logic, conditions, and data flow between steps. metadata: clawdbot: requires: bins: ["clawflows"] install: - id: node kind: node package: clawflows bins: ["clawflows"] label: "Install ClawFlows CLI (npm)" ---
Discover and run multi-skill automations that combine capabilities like database, charts, social search, and more.
npm i -g clawflows
clawflows search "youtube competitor"
clawflows search "morning brief"
clawflows search --capability chart-generation
Before installing, see what capabilities the automation needs:
clawflows check youtube-competitor-tracker
Shows required capabilities and whether you have skills that provide them.
clawflows install youtube-competitor-tracker
Downloads to ./automations/youtube-competitor-tracker.yaml
clawflows list
clawflows run youtube-competitor-tracker
clawflows run youtube-competitor-tracker --dry-run
The --dry-run flag shows what would happen without executing.
clawflows enable youtube-competitor-tracker # Shows cron setup instructions
clawflows disable youtube-competitor-tracker
clawflows logs youtube-competitor-tracker
clawflows logs youtube-competitor-tracker --last 10
clawflows publish ./my-automation.yaml
Prints instructions for submitting to the registry via PR.
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.
| Capability | What It Does | Example Skills | |------------|--------------|----------------| | youtube-data | Fetch video/channel stats | youtube-api | | database | Store and query data | sqlite-skill | | chart-generation | Create chart images | chart-image | | social-search | Search X/Twitter | search-x | | prediction-markets | Query odds | polymarket | | weather | Get forecasts | weather | | calendar | Read/write events | caldav-calendar | | email | Send/receive email | agentmail | | tts | Text to speech | elevenlabs-tts |
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]
---
安装 Clawflows 后,可以对 AI 说这些话来触发它
Help me get started with Clawflows
Explains what Clawflows does, walks through the setup, and runs a quick demo based on your current project
Use Clawflows to search, install, and run multi-skill automations from clawflows
Invokes Clawflows with the right parameters and returns the result directly in the conversation
What can I do with Clawflows in my data & analytics workflow?
Lists the top use cases for Clawflows, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/clawflows/ 目录(个人级,所有项目可用),或 .claude/skills/clawflows/(项目级)。重启 AI 客户端后,用 /clawflows 主动调用,或让 AI 根据上下文自动发现并使用。
Clawflows 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Clawflows 可免费安装使用。请查阅仓库了解许可证信息。
Search, install, and run multi-skill automations from clawflows.com. Combine multiple skills into powerful workflows with logic, conditions, and data flow between steps.
Clawflows 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using Clawflows
Identifies repetitive steps in your workflow and sets up Clawflows to handle them automatically