skills$openclaw/flow
bvinci1-design2.2kā˜…

by bvinci1-design

flow – OpenClaw Skill

flow is an OpenClaw Skills integration for data analytics workflows. Intelligent skill orchestrator that compiles natural language requests into secure, reusable workflows

2.2k stars760 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameflow
descriptionIntelligent skill orchestrator that compiles natural language requests into secure, reusable workflows OpenClaw Skills integration.
ownerbvinci1-design
repositorybvinci1-design/flow
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @bvinci1-design/flow
last updatedFeb 7, 2026

Maintainer

bvinci1-design

bvinci1-design

Maintains flow in the OpenClaw Skills directory.

View GitHub profile
File Explorer
11 files
.
_meta.json
622 B
CHANGELOG.md
1.9 KB
flow.py
9.8 KB
natural_language_parser.py
11.3 KB
README.md
3.8 KB
requirements.txt
260 B
skill_composer.py
9.8 KB
skill_registry.py
10.5 KB
skill_scanner_integration.py
12.3 KB
SKILL.md
2.0 KB
streamlit_ui.py
10.3 KB
SKILL.md

name: flow description: Intelligent skill orchestrator that compiles natural language requests into secure, reusable workflows


summary: Intelligent skill orchestrator that compiles natural language requests into secure, reusable workflows tags:

  • automation
  • workflow
  • nlp
  • security
  • orchestration
  • skill-builder
  • clawdbot
  • mcp

Flow

Intelligent Skill Orchestrator for Clawdbot/MCP - compose natural language requests into secure, reusable FLOW skills.

Capabilities

  • Parse natural language build requests
  • Search skill registry for reusable components
  • Security scan all skills before composition
  • Compile multiple skills into unified FLOW
  • Track skill usage for intelligent reuse
  • Dependency resolution with topological sorting

How It Works

  1. Natural Language Input: Describe what you want to build
  2. Intent Parsing: Extract capabilities, tags, and execution steps
  3. Registry Search: Find existing skills that match requirements
  4. Security Scan: Check all components for malicious patterns
  5. Composition: Merge skills into single executable FLOW
  6. Registration: Save new FLOW for future reuse

Usage

Interactive Mode

python flow.py
Flow> Build a web scraper that extracts prices and saves to CSV

CLI Mode

python flow.py "Create an automation that monitors API endpoints"

List Skills

python flow.py --list

Security Features

  • Code execution detection (eval, exec)
  • Data exfiltration pattern matching
  • Crypto mining indicator scanning
  • System modification attempt detection
  • AST-based code analysis
  • Obfuscation detection

Architecture

  • flow.py - Main orchestrator
  • natural_language_parser.py - NLP for user intent
  • skill_registry.py - Reusable skill database
  • skill_scanner_integration.py - Security scanning
  • skill_composer.py - Compiles skills into FLOW

Requirements

  • Python 3.8+
  • No external dependencies for core functionality

Author

@bvinci1-design

README.md

Flow - Intelligent Skill Orchestrator

Flow allows users to express build ideas or tasks in natural language, finds the best existing skills, scans them for security, and compiles them into a single executable FLOW skill.

Features

  • Natural Language Processing: Describe what you want to build in plain English
  • Skill Registry: Reusable object architecture - never reinvent the wheel
  • Security Scanning: Integrated security checks for malware, spyware, and malicious code
  • Smart Composition: Automatically combines skills into unified workflows
  • Dependency Resolution: Handles skill dependencies with topological sorting

Installation

Prerequisites

  • Python 3.8+
  • pip

Clone the Repository

git clone https://github.com/bvinci1-design/flow.git
cd flow

Install Dependencies

pip install -r requirements.txt

How to Run

Web UI (Streamlit Interface)

For the most user-friendly experience, use the Streamlit web interface:

streamlit run streamlit_ui.py

This will open a web interface in your browser with:

  • šŸ  Build Flow: Enter natural language requests and watch the 5-step process
  • šŸ“š Skill Registry: Browse, search, and filter available skills
  • ā„¹ļø About: Learn more about Flow's architecture and features

The web UI provides real-time feedback on:

  • Intent parsing results
  • Skill matching scores
  • Security scan status (āœ… Safe / āš ļø Warning / āŒ Unsafe)
  • Composition progress

In Clawdbot

  1. Import the Flow skill into Clawdbot
  2. Use natural language to describe what you want:
    Flow> Build a web scraper that extracts product prices and saves to CSV
    
  3. Flow will:
    • Parse your request
    • Search for existing skills
    • Security scan all components
    • Compose a unified FLOW skill

On Any Device (CLI)

Interactive Mode
python flow.py

Then type your requests:

Flow> Create an automation that monitors a webpage for changes
Flow> quit
Single Command
python flow.py "Build a data pipeline that fetches API data and stores in database"
List Available Skills
python flow.py --list
Get Skill Info
python flow.py --info skill_name

Architecture

flow/
ā”œā”€ā”€ flow.py                      # Main orchestrator
ā”œā”€ā”€ natural_language_parser.py   # NLP for user intent
ā”œā”€ā”€ skill_registry.py            # Reusable skill database
ā”œā”€ā”€ skill_scanner_integration.py # Security scanning
ā”œā”€ā”€ skill_composer.py            # Compiles skills into FLOW
ā”œā”€ā”€ README.md
└── SKILL.md                     # ClawdHub skill definition

How It Works

  1. Parse Request: NLP parser extracts intent, capabilities, and steps
  2. Search Registry: Finds existing skills matching requirements
  3. Security Scan: Checks all skills for malicious patterns
  4. Compose: Merges skills into single executable FLOW
  5. Register: Saves new FLOW for future reuse

Security Features

Flow includes comprehensive security scanning:

  • Code execution detection (eval, exec)
  • Data exfiltration patterns
  • Crypto mining indicators
  • System modification attempts
  • Obfuscation detection
  • AST-based analysis

Configuration

Create a flow_config.json:

{
  "skills_directory": "./skills",
  "output_directory": "./flows",
  "registry_path": "./skill_registry.json",
  "security_level": "standard",
  "auto_update_registry": true
}

Examples

from flow import Flow

# Create Flow instance
flow = Flow()

# Process a natural language request
result = flow.process(
    "Build a skill that monitors YouTube channels and sends notifications"
)

print(f"Created: {result.flow_name}")
print(f"Skills used: {result.skills_used}")
print(f"Security: {result.security_status}")

License

MIT

Author

@bvinci1-design

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

- Code execution detection (eval, exec) - Data exfiltration pattern matching - Crypto mining indicator scanning - System modification attempt detection - AST-based code analysis - Obfuscation detection

Requirements

- Python 3.8+ - No external dependencies for core functionality

FAQ

How do I install flow?

Run openclaw add @bvinci1-design/flow in your terminal. This installs flow into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/bvinci1-design/flow. Review commits and README documentation before installing.