clawflows
v0.2.3
Published
CLI for ClawFlows - search, install, and run multi-skill automations for OpenClaw agents
Maintainers
Readme
clawflows
CLI for ClawFlows - search, install, and run multi-skill automations for OpenClaw agents.
Install
npm i -g clawflowsUsage
Search for automations
clawflows search "youtube competitor"
clawflows search --capability chart-generationCheck requirements
clawflows check youtube-competitor-trackerShows which capabilities are required and whether you have skills installed that provide them.
Install an automation
clawflows install youtube-competitor-trackerDownloads the automation YAML to your automations/ directory.
List installed automations
clawflows listRun an automation
clawflows run youtube-competitor-tracker
clawflows run youtube-competitor-tracker --dry-runEnable/disable scheduling
clawflows enable youtube-competitor-tracker
clawflows disable youtube-competitor-trackerShows instructions for setting up cron jobs.
View logs
clawflows logs youtube-competitor-tracker
clawflows logs youtube-competitor-tracker --last 10Publish your automation
clawflows publish ./my-automation.yamlShows instructions for submitting to the registry.
Configuration
Environment Variables
CLAWFLOWS_REGISTRY- Custom registry URL (default: https://clawflows.com)CLAWFLOWS_DIR- Automations directory (default: ./automations)CLAWFLOWS_SKILLS- Colon-separated skill directories to scan
Command Options
--registry <url>- Custom registry URL--dir <path>- Custom automations directory--dry-run- Show what would happen without executing--force- Overwrite existing files
How It Works
ClawFlows automations use capabilities (abstract contracts) instead of specific skills:
steps:
- capability: youtube-data # Not "youtube-api skill"
method: getRecentVideosThis makes automations portable - they work on any Clawbot that has skills providing the required capabilities.
Links
- ClawFlows Registry
- OpenClaw
- ClawdHub (skills marketplace)
License
MIT
