@wecom/wecom-openclaw-plugin 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/dist/index.cjs.js +1791 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.esm.js +1787 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/src/channel.d.ts +3 -0
- package/dist/src/const.d.ts +48 -0
- package/dist/src/dm-policy.d.ts +29 -0
- package/dist/src/group-policy.d.ts +29 -0
- package/dist/src/interface.d.ts +144 -0
- package/dist/src/media-handler.d.ts +36 -0
- package/dist/src/message-parser.d.ts +72 -0
- package/dist/src/message-sender.d.ts +23 -0
- package/dist/src/monitor.d.ts +27 -0
- package/dist/src/onboarding.d.ts +5 -0
- package/dist/src/reqid-store.d.ts +31 -0
- package/dist/src/runtime.d.ts +3 -0
- package/dist/src/state-manager.d.ts +76 -0
- package/dist/src/timeout.d.ts +20 -0
- package/dist/src/utils.d.ts +73 -0
- package/openclaw.plugin.json +11 -0
- package/package.json +56 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# OpenClaw + 企业微信
|
|
2
|
+
|
|
3
|
+
> 智能机器人通过长链接关联OpenClaw
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 快速开始
|
|
8
|
+
|
|
9
|
+
```shell
|
|
10
|
+
# 安装企微插件
|
|
11
|
+
openclaw plugins install @wecom/wecom-openclaw-plugin
|
|
12
|
+
|
|
13
|
+
# 更新插件
|
|
14
|
+
openclaw plugins update wecom
|
|
15
|
+
|
|
16
|
+
# 最小化配置
|
|
17
|
+
openclaw config set channels.wecom.botId <替换成你的智能机器人botid> && openclaw config set channels.wecom.secret <替换成你的智能机器人secret> && openclaw config set channels.wecom.enabled true && openclaw gateway restart
|
|
18
|
+
```
|