Pilot Agent Marketplace Setup
部署包含4个角色的去中心化代理能力市场,支持能力发现与交易结算。
下载 510
用于配置 OpenClaw 与钉钉机器人的连接,支持消息收发和会话管理。
openclaw skills install @chao980/dingtalk-link-smb命令、参数、文件名以原文为准
配置 OpenClaw 与钉钉机器人连接,支持 AI Card 流式响应和会话管理。
openclaw plugins install @dingtalk-real-ai/dingtalk-connector⚠️ 应用必须发布才能正常接收消息
使用命令行配置:
openclaw channels add选择 DingTalk,输入 AppKey 和 AppSecret。
或手动编辑 ~/.openclaw/openclaw.json:
{
"channels": {
"dingtalk-connector": {
"enabled": true,
"clientId": "你的AppKey",
"clientSecret": "你的AppSecret"
}
}
}openclaw gateway restart
openclaw status确认 DingTalk 状态为 ON / OK。
openclaw logs --follow检查日志确认:
错误信息:Cannot find module '.../plugin-sdk/root-alias.cjs/channel-runtime'
原因:OpenClaw 版本过低
解决:
npm install -g openclaw@latest
openclaw gateway restart| 原因 | 解决方案 |
|---|---|
| 应用未发布 | 发布应用 |
| 凭证错误 | 检查 AppKey/AppSecret |
| 非 Stream 模式 | 确认机器人配置为 Stream 模式 |
| IP 白名单限制 | 检查应用是否设置了 IP 白名单 |
openclaw gateway stop
openclaw gateway start{
"channels": {
"dingtalk-connector": {
"enabled": true,
"clientId": "AppKey",
"clientSecret": "AppSecret",
"asyncMode": true,
"ackText": "收到,处理中..."
}
}
}{
"channels": {
"dingtalk-connector": {
"enabled": true,
"clientId": "AppKey",
"clientSecret": "AppSecret",
"separateSessionByConversation": true,
"groupSessionScope": "group"
}
}
}已收录 1 个 Skill