claw-subagent-service 0.0.31 → 0.0.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claw-subagent-service",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "description": "虾说静态服务",
5
5
  "main": "cli.js",
6
6
  "bin": {
@@ -41,11 +41,6 @@ class MessageHandler {
41
41
  return false;
42
42
  }
43
43
 
44
- // claw 控制消息不需要 @mention 过滤
45
- if (msg.messageType === 'claw') {
46
- return true;
47
- }
48
-
49
44
  // 优先从融云 mentionedInfo 提取被@用户列表(用户界面 @昵称,但融云底层存的是 userId)
50
45
  let mentions = [];
51
46
  if (msg.mentionedInfo && Array.isArray(msg.mentionedInfo.userIdList)) {