send_to_wechat
Send GitLab commit updates and daily work reports to WeChat Work groups using text or markdown formatting for team communication and progress tracking.
Instructions
发送消息到企业微信
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | 要发送的消息内容 | |
messageType | No | 消息类型 | text |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "要发送的消息内容",
"type": "string"
},
"messageType": {
"default": "text",
"description": "消息类型",
"enum": [
"text",
"markdown"
],
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}