New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

clawflows

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clawflows

CLI for ClawFlows - search, install, and run multi-skill automations for OpenClaw agents

latest
Source
npmnpm
Version
0.2.3
Version published
Weekly downloads
205
-24.91%
Maintainers
1
Weekly downloads
 
Created
Source

clawflows

CLI for ClawFlows - search, install, and run multi-skill automations for OpenClaw agents.

Install

npm i -g clawflows

Usage

Search for automations

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

Check requirements

clawflows check youtube-competitor-tracker

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

Install an automation

clawflows install youtube-competitor-tracker

Downloads the automation YAML to your automations/ directory.

List installed automations

clawflows list

Run an automation

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

Enable/disable scheduling

clawflows enable youtube-competitor-tracker
clawflows disable youtube-competitor-tracker

Shows instructions for setting up cron jobs.

View logs

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

Publish your automation

clawflows publish ./my-automation.yaml

Shows 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: getRecentVideos

This makes automations portable - they work on any Clawbot that has skills providing the required capabilities.

License

MIT

Keywords

clawflows

FAQs

Package last updated on 21 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts