@vrs-soft/wecom-aibot-mcp 1.0.1 → 1.0.2

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 CHANGED
@@ -58,6 +58,12 @@ PermissionRequest Hook 拦截
58
58
  执行或拒绝操作
59
59
  ```
60
60
 
61
+ ### 审批卡片示例
62
+
63
+ ![审批卡片](docs/approval-card.png)
64
+
65
+ 用户在企业微信中收到审批卡片,点击按钮即可远程决策:
66
+
61
67
  ## 安装
62
68
 
63
69
  ### 前置要求
package/dist/client.js CHANGED
@@ -175,8 +175,8 @@ class WecomClient {
175
175
  main_title: { title },
176
176
  sub_title_text: description,
177
177
  button_list: [
178
- { text: '允许一次', key: 'allow-once', style: 1 },
179
- { text: '永久允许', key: 'allow-always', style: 1 },
178
+ { text: '允许', key: 'allow-once', style: 1 },
179
+ { text: '默认', key: 'allow-always', style: 1 },
180
180
  { text: '拒绝', key: 'deny', style: 2 },
181
181
  ],
182
182
  task_id: taskId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrs-soft/wecom-aibot-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "企业微信智能机器人 MCP 服务 - Claude Code 审批通道",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",