创建支持链接飞书和钉钉的moltbot ,clawdbot
npx skills add https://github.com/xiaomingx/moltbot-connector-feishu-dingtalk --skill dingtalk-connectionInstallez cette compétence avec la CLI et commencez à utiliser le flux de travail SKILL.md dans votre espace de travail.
Channel bridge skills for Moltbot, managed with Python 3.11 and uv.
feishu-connection: Feishu/Lark WebSocket bridge.dingtalk-connection: DingTalk outgoing webhook bridge.Each skill has its own README.md under skills/<skill>/ with detailed setup steps.
npx skills add xiaomingx/moltbot-connector-feishu-dingtalk
This installs the skill bundles so your agent framework can load them directly.
Installed skills are placed under your agent's skill directory; use that path as <skill-dir>.
Choose a channel below and run the bridge on the same machine as the Moltbot Gateway.
~/.clawdbot/secrets/feishu_app_secret.cd <skill-dir>/feishu-connection
uv sync
FEISHU_APP_ID=cli_xxx uv run python bridge.py
cd <skill-dir>/dingtalk-connection
uv sync
uv run python bridge.py
If you cloned this repo, use skills/ as <skill-dir>.
Both bridges read the local Gateway config at ~/.clawdbot/clawdbot.json by default.
Override paths and behavior with environment variables:
CLAWDBOT_CONFIG_PATHCLAWDBOT_AGENT_ID*_THINKING_THRESHOLD_MS (per skill)See each skill README for full env var lists and provider-specific setup.
Assuming you have Moltbot Gateway installed and running.
Prepare your local configuration and secrets:
# 1) Config file (if not already present)
# Default path: ~/.clawdbot/clawdbot.json
# 2) Save your App Secret
mkdir -p ~/.clawdbot/secrets/
echo "your_app_secret_here" > ~/.clawdbot/secrets/feishu_app_secret
# Enter the Feishu connector directory
cd <skill-dir>/feishu-connection
# Sync dependencies
uv sync
# Start the bridge (replace with your FEISHU_APP_ID)
FEISHU_APP_ID=cli_a5dxxxxx uv run python bridge.py
Send a message like Hello to the bot in Feishu. You will see the event flow in your terminal:
Each skill includes a launchd helper:
# Feishu
cd <skill-dir>/feishu-connection
FEISHU_APP_ID=cli_xxx uv run python setup_service.py
# DingTalk
cd <skill-dir>/dingtalk-connection
uv run python setup_service.py
skills/
feishu-connection/
dingtalk-connection/
MIT. See LICENSE.