@wecode-ai/weibo-openclaw-plugin 1.0.8-beta.0 → 1.0.8-beta.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.
@@ -13,7 +13,14 @@ description: |
13
13
 
14
14
  ```json
15
15
  {
16
- "category": "主榜"
16
+ "tool_calls": [
17
+ {
18
+ "name": "weibo_hot_search",
19
+ "arguments": {
20
+ "category": "主榜"
21
+ }
22
+ }
23
+ ]
17
24
  }
18
25
  ```
19
26
 
@@ -88,25 +95,63 @@ description: |
88
95
  ### 获取主榜热搜(默认50条)
89
96
 
90
97
  ```json
91
- { "category": "主榜" }
98
+ {
99
+ "tool_calls": [
100
+ {
101
+ "name": "weibo_hot_search",
102
+ "arguments": {
103
+ "category": "主榜"
104
+ }
105
+ }
106
+ ]
107
+ }
92
108
  ```
93
109
 
94
110
  ### 获取文娱榜前10条
95
111
 
96
112
  ```json
97
- { "category": "文娱榜", "count": 10 }
113
+ {
114
+ "tool_calls": [
115
+ {
116
+ "name": "weibo_hot_search",
117
+ "arguments": {
118
+ "category": "文娱榜",
119
+ "count": 10
120
+ }
121
+ }
122
+ ]
123
+ }
98
124
  ```
99
125
 
100
126
  ### 获取科技榜热搜
101
127
 
102
128
  ```json
103
- { "category": "科技榜", "count": 20 }
129
+ {
130
+ "tool_calls": [
131
+ {
132
+ "name": "weibo_hot_search",
133
+ "arguments": {
134
+ "category": "科技榜",
135
+ "count": 20
136
+ }
137
+ }
138
+ ]
139
+ }
104
140
  ```
105
141
 
106
142
  ### 获取体育榜热搜
107
143
 
108
144
  ```json
109
- { "category": "体育榜" }
145
+ {
146
+ "tool_calls": [
147
+ {
148
+ "name": "weibo_hot_search",
149
+ "arguments": {
150
+ "category": "体育榜"
151
+ }
152
+ }
153
+ ]
154
+ }
110
155
  ```
111
156
 
112
157
  ## 配置(必填)
@@ -14,7 +14,14 @@ description: |
14
14
 
15
15
  ```json
16
16
  {
17
- "query": "搜索关键词"
17
+ "tool_calls": [
18
+ {
19
+ "name": "weibo_search",
20
+ "arguments": {
21
+ "query": "搜索关键词"
22
+ }
23
+ }
24
+ ]
18
25
  }
19
26
  ```
20
27
 
@@ -68,19 +75,32 @@ description: |
68
75
  ### 搜索热门话题
69
76
 
70
77
  ```json
71
- { "query": "#人工智能#" }
78
+ {
79
+ "tool_calls": [
80
+ {
81
+ "name": "weibo_search",
82
+ "arguments": {
83
+ "query": "#人工智能#"
84
+ }
85
+ }
86
+ ]
87
+ }
72
88
  ```
73
89
 
74
- ### 搜索新闻事件
75
-
76
- ```json
77
- { "query": "伊朗" }
78
- ```
79
90
 
80
91
  ### 搜索特定关键词
81
92
 
82
93
  ```json
83
- { "query": "科技新闻" }
94
+ {
95
+ "tool_calls": [
96
+ {
97
+ "name": "weibo_search",
98
+ "arguments": {
99
+ "query": "科技新闻"
100
+ }
101
+ }
102
+ ]
103
+ }
84
104
  ```
85
105
 
86
106
  ### 配置项说明
@@ -10,6 +10,16 @@ description: |
10
10
 
11
11
  ## 基本用法
12
12
 
13
+ ```json
14
+ {
15
+ "tool_calls": [
16
+ {
17
+ "name": "weibo_status",
18
+ "arguments": {}
19
+ }
20
+ ]
21
+ }
22
+ ```
13
23
 
14
24
  ## 参数说明
15
25
 
@@ -62,13 +72,29 @@ description: |
62
72
  ### 获取最新微博(默认参数)
63
73
 
64
74
  ```json
65
- {}
75
+ {
76
+ "tool_calls": [
77
+ {
78
+ "name": "weibo_status",
79
+ "arguments": {}
80
+ }
81
+ ]
82
+ }
66
83
  ```
67
84
 
68
85
  ### 获取指定数量的微博
69
86
 
70
87
  ```json
71
- { "count": 20 }
88
+ {
89
+ "tool_calls": [
90
+ {
91
+ "name": "weibo_status",
92
+ "arguments": {
93
+ "count": 20
94
+ }
95
+ }
96
+ ]
97
+ }
72
98
  ```
73
99
 
74
100
  ### 配置项说明