clawdbot-dingtalk 0.2.9 → 0.2.10

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.
Files changed (2) hide show
  1. package/README.md +13 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -49,15 +49,23 @@ Edit `~/.clawdbot/clawdbot.json`:
49
49
  }
50
50
  ```
51
51
 
52
- ## DashScope Thinking Proxy (Optional)
52
+ ## DashScope Thinking Mode (Native)
53
53
 
54
- If you need to inject `enable_thinking` / `thinking_budget` for DashScope models, install the separate proxy plugin:
54
+ DashScope's `enable_thinking` is **natively supported** via the `/think` command. No proxy is needed.
55
55
 
56
- ```bash
57
- npm install -g clawdbot-dashscope-proxy --legacy-peer-deps
56
+ To enable thinking mode for a session:
57
+
58
+ ```
59
+ /think on
60
+ ```
61
+
62
+ Or use one-shot thinking for a single message:
63
+
64
+ ```
65
+ /t! on 请帮我分析这段代码
58
66
  ```
59
67
 
60
- Then enable it under `plugins.entries.clawdbot-dashscope-proxy.config`, and point your DashScope `baseUrl` to `http://127.0.0.1:18788/v1`.
68
+ Thinking levels: `off`, `minimal`, `low` (default for `on`), `medium`, `high`, `xhigh`.
61
69
 
62
70
  ## Start Gateway
63
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawdbot-dingtalk",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "DingTalk (钉钉) channel plugin for Openclaw - enables AI agent messaging via DingTalk Stream API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",