FlowBridge

FlowBridge - 零代码跨生态自动化工具 | No-code cross-platform automation with WeChat, DingTalk, Feishu, WPS integration

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 23 · 0 current installs · 0 all-time installs
byLv Lancer@kaiyuelv
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk975nqr8pg4hhvgfhgsh5c4kbd831tjw

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

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文档和使用指南。

Files

13 total
Select a file
Select a file to preview.

Comments

Loading comments…