@advantech-axa/advbot
v1.0.5
Published
OpenClaw ADV Bot channel plugin
Readme
方式一: Open Claw 从 npm 安装 advbot 插件
1. openclaw plugins install @advantech-axa/advbot
2. 修改 openclaw.json 文件
...
"channels": {
"advbot": {
"enabled": true,
"accounts": {
"default": {
"enabled": true,
"accountId": "default",
"channelServerUrl": "http://localhost:8081",
"gatewayToken": "***",
"gatewayUrl": "ws://localhost:18788"
}
}
}
},
"bindings": [
{
"agentId": "test",
"match": {
"channel": "advbot",
"accountId": "default"
}
}
]
...
3. 执行 openclaw gateway restart方式二: Open Claw 使用本地文件安装 advbot 插件
1. cd 到本项目的根目录
2. 执行 openclaw plugins install ./
3. cd 到 .openclaw/extensions/advbot
4. 执行 npm install
5. 与第一种方式中的步骤2-3相同