Skip to content

Commit 5acf8a6

Browse files
author
王允
committed
通过 openclaw的message发送消息到微信的 channel 中
1 parent 6e0e5f1 commit 5acf8a6

6 files changed

Lines changed: 169 additions & 167 deletions

File tree

openclaw.plugin.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "openclaw-github-trending",
33
"name": "GitHub Trending",
4-
"version": "1.4.1",
4+
"version": "1.4.2",
55
"description": "Fetch GitHub trending repositories and push to Feishu or Email with AI summaries",
66
"author": "王允",
77
"license": "MIT",
@@ -24,7 +24,10 @@
2424
"properties": {
2525
"provider": {
2626
"type": "string",
27-
"enum": ["openai", "anthropic"],
27+
"enum": [
28+
"openai",
29+
"anthropic"
30+
],
2831
"default": "openai",
2932
"description": "AI provider (OpenAI-compatible or Anthropic)"
3033
},
@@ -105,7 +108,10 @@
105108
"description": "SMTP connection timeout in seconds"
106109
}
107110
},
108-
"required": ["sender", "password"]
111+
"required": [
112+
"sender",
113+
"password"
114+
]
109115
},
110116
"wechat": {
111117
"type": "object",
@@ -123,6 +129,10 @@
123129
"bot_account_id": {
124130
"type": "string",
125131
"description": "WeChat bot account ID"
132+
},
133+
"channel_name": {
134+
"type": "string",
135+
"description": "WeChat channel name for messages"
126136
}
127137
},
128138
"additionalProperties": false

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openclaw-github-trending",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "OpenClaw plugin for fetching GitHub trending repositories and pushing to Feishu or Email with AI summaries",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -76,4 +76,4 @@
7676
"./dist/index.js"
7777
]
7878
}
79-
}
79+
}

0 commit comments

Comments
 (0)