--- id: XiaomingX/moltbot-connector-feishu-dingtalk/dingtalk-connection version: "15d23297" license: Apache-2.0 install: manual updated: 2026-01-30 --- # dingtalk-connection — DingTalk Connection routes outgoing webhook messages from DingTalk to Clawdbot Gateway over a local WebSocket connection, enabling DingTalk as a messaging channel for AI agents. Configure your bot's callback URL, run the bridge service, and optionally auto-start it on macOS. Publisher: XiaomingX · Stars: 7 · Updated: 2026-01-30 Install (manual): `git clone https://github.com/XiaomingX/moltbot-connector-feishu-dingtalk` ## SKILL.md # DingTalk Bridge Bridge DingTalk bot messages to Clawdbot Gateway over a local WebSocket connection. ## Architecture ``` DingTalk user -> DingTalk cloud -> webhook (bridge.py) -> Clawdbot Gateway -> AI agent ``` ## Setup ### 1. Create DingTalk bot Create a bot that can send outgoing webhooks and set the callback URL to your public endpoint. ### 2. Run bridge ```bash cd /dingtalk-connection uv sync DINGTALK_SIGNING_SECRET=your_secret uv run python bridge.py ``` ### 3. Auto-start (macOS) ```bash uv run python setup_service.py launchctl load ~/Library/LaunchAgents/com.clawdbot.dingtalk-bridge.plist ``` ## Environment variables | Variable | Required | Default | |---|---|---| | `DINGTALK_PORT` | — | `3210` | | `DINGTALK_PATH` | — | `/dingtalk` | | `DINGTALK_SIGNING_SECRET` | — | — | | `DINGTALK_BOT_ID` | — | — | | `DINGTALK_BOT_NAME` | — | — | | `CLAWDBOT_CONFIG_PATH` | — | `~/.clawdbot/clawdbot.json` | | `CLAWDBOT_AGENT_ID` | — | `main` | | `DINGTALK_THINKING_THRESHOLD_MS` | — | `2500` | [View on SkillFed](https://skillfed.io/XiaomingX/moltbot-connector-feishu-dingtalk/dingtalk-connection) · [View on GitHub](https://github.com/XiaomingX/moltbot-connector-feishu-dingtalk)