← Back to Skills Marketplace
235
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install flowbridge
Description
FlowBridge - 零代码跨生态自动化工具 | No-code cross-platform automation with WeChat, DingTalk, Feishu, WPS integration
README (SKILL.md)
FlowBridge - 零代码跨生态自动化工具
让无代码基础的用户也能在3分钟内搭建跨平台自动化流程,连接微信、钉钉、飞书、WPS等国内主流生态。
核心功能
| 功能模块 | 说明 |
|---|---|
| 国内生态接口对接 | 微信、钉钉、飞书、WPS、腾讯文档、阿里云盘 |
| 零代码流程配置 | 可视化拖拽,3分钟完成配置 |
| AI流程智能生成 | 自然语言指令自动生成流程 |
| 执行监控与兜底 | 与重试降级Skill联动,成功率≥95% |
| 模板中心 | 50+高频场景模板一键复用 |
快速开始
from scripts.workflow_engine import WorkflowEngine
from scripts.ai_flow_generator import AIFlowGenerator
# AI生成流程
ai_gen = AIFlowGenerator()
workflow = ai_gen.generate("微信收到文件自动同步到阿里云盘")
# 执行流程
engine = WorkflowEngine()
engine.run(workflow)
安装
pip install -r requirements.txt
项目结构
clawhub-automation/
├── SKILL.md # Skill说明
├── README.md # 完整文档
├── requirements.txt # 依赖
├── config/
│ └── connectors.yaml # 生态连接器配置
├── scripts/ # 核心模块
│ ├── workflow_engine.py # 流程引擎
│ ├── connector_manager.py # 生态连接器
│ ├── ai_flow_generator.py # AI流程生成
│ ├── template_center.py # 模板中心
│ ├── execution_monitor.py # 执行监控
│ └── permission_manager.py # 权限管理
├── templates/ # 场景模板
├── examples/ # 使用示例
└── tests/ # 单元测试
运行测试
cd tests
python test_automation.py
详细文档
请参考 README.md 获取完整API文档和使用指南。
Usage Guidance
This package appears to be a self‑contained demo framework that simulates connectors rather than performing real OAuth/API calls. Before installing or using it in production: 1) inspect the omitted/full files (workflow_engine, permission_manager, template_center) for any network calls, filesystem access, or hardcoded endpoints; 2) if you intend to connect real services, plan to provide proper OAuth client IDs/secrets and implement secure storage (the skill currently does not request them); 3) run the code in a sandboxed environment first and review any log/export functionality to ensure no unintended data exposure; 4) avoid pip installing untrusted packages system‑wide — use a virtualenv. If you want stronger assurance, request the author/source to document how real authentication and token storage are handled and to provide an explicit privacy/security design.
Capability Analysis
Type: OpenClaw Skill
Name: flowbridge
Version: 1.0.0
The FlowBridge skill bundle is a well-structured framework for cross-platform automation involving Chinese productivity ecosystems (WeChat, DingTalk, Feishu). Analysis of the core logic in scripts/workflow_engine.py and scripts/connector_manager.py reveals that platform interactions and actions are currently implemented as safe simulations or mocks. There is no evidence of data exfiltration, unauthorized network communication, or malicious prompt injection in SKILL.md or the AI intent parsing logic in scripts/ai_flow_generator.py.
Capability Assessment
Purpose & Capability
Name/description promise real cross‑platform integration (WeChat, DingTalk, Feishu, WPS, Tencent Docs, Aliyun Drive). The included code defines connectors and OAuth endpoints, but the connector implementation simulates authorization/token issuance in memory and no environment variables or client secrets are requested. This is coherent for a local demo or simulator, but would be incomplete for a production connector that must store client IDs/secrets and perform real HTTP OAuth flows.
Instruction Scope
SKILL.md and README instruct running tests, pip installing requirements, and importing the package. The runtime instructions do not tell the agent to read system files, secrets, or send data to unexpected external endpoints. Example code manipulates sys.path to import local scripts (normal for examples).
Install Mechanism
No install spec; code is delivered in the skill bundle and requirements.txt lists common libraries (requests, pyyaml, python-dateutil, schedule). No downloads from arbitrary URLs or archive extraction were specified. Risk from installation is typical for third‑party Python code (review before pip installing).
Credentials
The skill requests no environment variables or external credentials even though its declared purpose is integrating with external platforms that normally require OAuth client IDs/secrets. The provided connector code creates mock tokens in memory rather than performing authenticated network exchanges — acceptable for a demo but incomplete for real integrations. No unrelated secrets or config paths are requested.
Persistence & Privilege
Skill is not always‑on and uses default agent invocation settings. It does not request or attempt to modify other skills' configurations. There is no evidence of writing persistent system‑wide configuration or elevating privileges in the visible code.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install flowbridge - After installation, invoke the skill by name or use
/flowbridge - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release: 零代码跨生态自动化工具,支持微信/钉钉/飞书/WPS集成
Metadata
Frequently Asked Questions
What is FlowBridge?
FlowBridge - 零代码跨生态自动化工具 | No-code cross-platform automation with WeChat, DingTalk, Feishu, WPS integration. It is an AI Agent Skill for Claude Code / OpenClaw, with 235 downloads so far.
How do I install FlowBridge?
Run "/install flowbridge" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is FlowBridge free?
Yes, FlowBridge is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does FlowBridge support?
FlowBridge is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created FlowBridge?
It is built and maintained by Lv Lancer (@kaiyuelv); the current version is v1.0.0.
More Skills