2.2kā
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
Skill Snapshot
| name | flow |
| description | Intelligent skill orchestrator that compiles natural language requests into secure, reusable workflows OpenClaw Skills integration. |
| owner | bvinci1-design |
| repository | bvinci1-design/flow |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @bvinci1-design/flow |
| last updated | Feb 7, 2026 |
Maintainer

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
- Natural Language Input: Describe what you want to build
- Intent Parsing: Extract capabilities, tags, and execution steps
- Registry Search: Find existing skills that match requirements
- Security Scan: Check all components for malicious patterns
- Composition: Merge skills into single executable FLOW
- 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 orchestratornatural_language_parser.py- NLP for user intentskill_registry.py- Reusable skill databaseskill_scanner_integration.py- Security scanningskill_composer.py- Compiles skills into FLOW
Requirements
- Python 3.8+
- No external dependencies for core functionality
Author
@bvinci1-design
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
- Import the Flow skill into Clawdbot
- Use natural language to describe what you want:
Flow> Build a web scraper that extracts product prices and saves to CSV - 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
- Parse Request: NLP parser extracts intent, capabilities, and steps
- Search Registry: Finds existing skills matching requirements
- Security Scan: Checks all skills for malicious patterns
- Compose: Merges skills into single executable FLOW
- 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.
