@wowok/agent-mcp 2.3.14 → 2.3.18

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 (189) hide show
  1. package/dist/config/index.d.ts +1 -0
  2. package/dist/config/index.js +1 -0
  3. package/dist/config/runtime.d.ts +26 -0
  4. package/dist/config/runtime.js +217 -0
  5. package/dist/customer/index.d.ts +9 -0
  6. package/dist/customer/index.js +9 -0
  7. package/dist/customer/industry-risks.d.ts +40 -0
  8. package/dist/customer/industry-risks.js +438 -0
  9. package/dist/customer/info-puzzle.d.ts +102 -0
  10. package/dist/customer/info-puzzle.js +312 -0
  11. package/dist/customer/order-monitor.d.ts +75 -0
  12. package/dist/customer/order-monitor.js +327 -0
  13. package/dist/customer/order-strategy.d.ts +36 -0
  14. package/dist/customer/order-strategy.js +373 -0
  15. package/dist/customer/post-purchase.d.ts +42 -0
  16. package/dist/customer/post-purchase.js +350 -0
  17. package/dist/customer/reminder-system.d.ts +42 -0
  18. package/dist/customer/reminder-system.js +295 -0
  19. package/dist/customer/risk-assessment.d.ts +8 -0
  20. package/dist/customer/risk-assessment.js +337 -0
  21. package/dist/customer/types.d.ts +193 -0
  22. package/dist/customer/types.js +13 -0
  23. package/dist/customer/user-preferences.d.ts +70 -0
  24. package/dist/customer/user-preferences.js +460 -0
  25. package/dist/experience/experience-reuse.d.ts +10 -0
  26. package/dist/experience/experience-reuse.js +103 -0
  27. package/dist/experience/index.d.ts +6 -0
  28. package/dist/experience/index.js +5 -0
  29. package/dist/experience/intent-distill.d.ts +3 -0
  30. package/dist/experience/intent-distill.js +83 -0
  31. package/dist/experience/realtime-feedback.d.ts +5 -0
  32. package/dist/experience/realtime-feedback.js +94 -0
  33. package/dist/experience/types.d.ts +50 -0
  34. package/dist/experience/types.js +1 -0
  35. package/dist/experience/user-profile.d.ts +25 -0
  36. package/dist/experience/user-profile.js +171 -0
  37. package/dist/index.js +842 -371
  38. package/dist/knowledge/acquisition-flywheel.d.ts +53 -0
  39. package/dist/knowledge/acquisition-flywheel.js +192 -0
  40. package/dist/knowledge/arbitration-trust.d.ts +24 -0
  41. package/dist/knowledge/arbitration-trust.js +117 -0
  42. package/dist/knowledge/audit-rules.d.ts +28 -0
  43. package/dist/knowledge/audit-rules.js +141 -0
  44. package/dist/knowledge/demand-matching.d.ts +29 -0
  45. package/dist/knowledge/demand-matching.js +132 -0
  46. package/dist/knowledge/dynamic-pricing.d.ts +31 -0
  47. package/dist/knowledge/dynamic-pricing.js +87 -0
  48. package/dist/knowledge/flywheel-loop.d.ts +87 -0
  49. package/dist/knowledge/flywheel-loop.js +378 -0
  50. package/dist/knowledge/glossary.d.ts +18 -0
  51. package/dist/knowledge/glossary.js +209 -0
  52. package/dist/knowledge/guard-ledger.d.ts +19 -0
  53. package/dist/knowledge/guard-ledger.js +219 -0
  54. package/dist/knowledge/guard-puzzle.d.ts +93 -0
  55. package/dist/knowledge/guard-puzzle.js +278 -0
  56. package/dist/knowledge/guard-risk.d.ts +60 -0
  57. package/dist/knowledge/guard-risk.js +474 -0
  58. package/dist/knowledge/guard-translation.d.ts +46 -0
  59. package/dist/knowledge/guard-translation.js +487 -0
  60. package/dist/knowledge/index.d.ts +77 -0
  61. package/dist/knowledge/index.js +79 -0
  62. package/dist/knowledge/industry-evolution.d.ts +82 -0
  63. package/dist/knowledge/industry-evolution.js +323 -0
  64. package/dist/knowledge/industry-generalizer.d.ts +17 -0
  65. package/dist/knowledge/industry-generalizer.js +381 -0
  66. package/dist/knowledge/industry-registry.d.ts +48 -0
  67. package/dist/knowledge/industry-registry.js +187 -0
  68. package/dist/knowledge/intent-metrics.d.ts +42 -0
  69. package/dist/knowledge/intent-metrics.js +566 -0
  70. package/dist/knowledge/process-model.d.ts +24 -0
  71. package/dist/knowledge/process-model.js +160 -0
  72. package/dist/knowledge/reputation-rules.d.ts +42 -0
  73. package/dist/knowledge/reputation-rules.js +99 -0
  74. package/dist/knowledge/reward-templates.d.ts +25 -0
  75. package/dist/knowledge/reward-templates.js +125 -0
  76. package/dist/knowledge/safety-rules.d.ts +36 -0
  77. package/dist/knowledge/safety-rules.js +232 -0
  78. package/dist/knowledge/tool-constraints.d.ts +30 -0
  79. package/dist/knowledge/tool-constraints.js +175 -0
  80. package/dist/knowledge/trust-metrics.d.ts +37 -0
  81. package/dist/knowledge/trust-metrics.js +138 -0
  82. package/dist/loop-engineering/diagnose.d.ts +3 -2
  83. package/dist/loop-engineering/diagnose.js +94 -0
  84. package/dist/loop-engineering/improve.d.ts +1 -1
  85. package/dist/loop-engineering/improve.js +52 -1
  86. package/dist/project/graph.d.ts +71 -0
  87. package/dist/project/graph.js +314 -0
  88. package/dist/project/index.d.ts +62 -0
  89. package/dist/project/index.js +167 -0
  90. package/dist/project/namespace.d.ts +62 -0
  91. package/dist/project/namespace.js +181 -0
  92. package/dist/project/query.d.ts +40 -0
  93. package/dist/project/query.js +110 -0
  94. package/dist/safety/confirm-gate.d.ts +17 -0
  95. package/dist/safety/confirm-gate.js +88 -0
  96. package/dist/safety/index.d.ts +3 -0
  97. package/dist/safety/index.js +3 -0
  98. package/dist/safety/preview.d.ts +2 -0
  99. package/dist/safety/preview.js +36 -0
  100. package/dist/schema/call/allocation.d.ts +39 -14
  101. package/dist/schema/call/arbitration.d.ts +187 -162
  102. package/dist/schema/call/base.d.ts +1971 -87
  103. package/dist/schema/call/base.js +135 -3
  104. package/dist/schema/call/bridge-handler.js +15 -2
  105. package/dist/schema/call/bridge.d.ts +1478 -53
  106. package/dist/schema/call/bridge.js +50 -2
  107. package/dist/schema/call/contact.d.ts +25 -0
  108. package/dist/schema/call/demand.d.ts +79 -54
  109. package/dist/schema/call/guard.d.ts +125 -50
  110. package/dist/schema/call/handler.d.ts +3 -0
  111. package/dist/schema/call/handler.js +60 -14
  112. package/dist/schema/call/machine.d.ts +988 -938
  113. package/dist/schema/call/order.d.ts +25 -0
  114. package/dist/schema/call/payment.d.ts +25 -0
  115. package/dist/schema/call/permission.d.ts +244 -219
  116. package/dist/schema/call/personal.d.ts +25 -0
  117. package/dist/schema/call/progress.d.ts +25 -0
  118. package/dist/schema/call/proof.d.ts +62 -12
  119. package/dist/schema/call/proof.js +3 -3
  120. package/dist/schema/call/repository.d.ts +101 -76
  121. package/dist/schema/call/reward.d.ts +55 -30
  122. package/dist/schema/call/semantic.d.ts +10 -2
  123. package/dist/schema/call/semantic.js +616 -11
  124. package/dist/schema/call/service.d.ts +442 -417
  125. package/dist/schema/call/treasury.d.ts +25 -0
  126. package/dist/schema/common/index.js +3 -3
  127. package/dist/schema/config/index.d.ts +18 -0
  128. package/dist/schema/config/index.js +17 -0
  129. package/dist/schema/index.d.ts +6 -0
  130. package/dist/schema/index.js +5 -0
  131. package/dist/schema/local/index.d.ts +237 -81
  132. package/dist/schema/local/index.js +42 -6
  133. package/dist/schema/messenger/index.d.ts +1018 -79
  134. package/dist/schema/messenger/index.js +26 -17
  135. package/dist/schema/operations.d.ts +3192 -1746
  136. package/dist/schema/operations.js +93 -98
  137. package/dist/schema/project/index.d.ts +21 -0
  138. package/dist/schema/project/index.js +32 -0
  139. package/dist/schema/query/index.d.ts +2762 -1856
  140. package/dist/schema/query/index.js +38 -35
  141. package/dist/schema/schema-query/index.d.ts +33 -0
  142. package/dist/schema/schema-query/index.js +36 -0
  143. package/dist/schema/schema-version.d.ts +25 -0
  144. package/dist/schema/schema-version.js +76 -0
  145. package/dist/schema/trust/index.d.ts +407 -0
  146. package/dist/schema/trust/index.js +113 -0
  147. package/dist/schemas/account_operation.output.json +25 -16
  148. package/dist/schemas/account_operation.schema.json +1 -1
  149. package/dist/schemas/bridge_operation.output.json +744 -0
  150. package/dist/schemas/bridge_operation.schema.json +82 -8
  151. package/dist/schemas/config_operation.output.json +18 -0
  152. package/dist/schemas/config_operation.schema.json +34 -0
  153. package/dist/schemas/guard-node-schema.json +82 -0
  154. package/dist/schemas/guard2file.schema.json +23 -0
  155. package/dist/schemas/index.json +19 -1
  156. package/dist/schemas/local_info_operation.output.json +23 -0
  157. package/dist/schemas/local_info_operation.schema.json +1 -1
  158. package/dist/schemas/local_mark_operation.output.json +24 -1
  159. package/dist/schemas/local_mark_operation.schema.json +4 -4
  160. package/dist/schemas/machineNode2file.schema.json +23 -0
  161. package/dist/schemas/messenger_operation.output.json +752 -0
  162. package/dist/schemas/onchain_events.output.json +718 -0
  163. package/dist/schemas/onchain_operations.output.json +627 -18
  164. package/dist/schemas/onchain_operations.schema.json +115 -39
  165. package/dist/schemas/onchain_operations_allocation.schema.json +23 -0
  166. package/dist/schemas/onchain_operations_arbitration.schema.json +23 -0
  167. package/dist/schemas/onchain_operations_contact.schema.json +23 -0
  168. package/dist/schemas/onchain_operations_demand.schema.json +23 -0
  169. package/dist/schemas/onchain_operations_gen_passport.schema.json +46 -0
  170. package/dist/schemas/onchain_operations_guard.schema.json +26 -16
  171. package/dist/schemas/onchain_operations_machine.schema.json +89 -23
  172. package/dist/schemas/onchain_operations_order.schema.json +23 -0
  173. package/dist/schemas/onchain_operations_payment.schema.json +23 -0
  174. package/dist/schemas/onchain_operations_permission.schema.json +23 -0
  175. package/dist/schemas/onchain_operations_personal.schema.json +23 -0
  176. package/dist/schemas/onchain_operations_progress.schema.json +23 -0
  177. package/dist/schemas/onchain_operations_repository.schema.json +23 -0
  178. package/dist/schemas/onchain_operations_reward.schema.json +23 -0
  179. package/dist/schemas/onchain_operations_service.schema.json +23 -0
  180. package/dist/schemas/onchain_operations_treasury.schema.json +23 -0
  181. package/dist/schemas/onchain_table_data.output.json +939 -69
  182. package/dist/schemas/onchain_table_data.schema.json +2 -2
  183. package/dist/schemas/project_operation.output.json +18 -0
  184. package/dist/schemas/project_operation.schema.json +42 -0
  185. package/dist/schemas/query_toolkit.schema.json +360 -368
  186. package/dist/schemas/schema_query.schema.json +6 -3
  187. package/dist/schemas/trust_score.output.json +327 -0
  188. package/dist/schemas/trust_score.schema.json +46 -0
  189. package/package.json +2 -2
@@ -16,13 +16,16 @@
16
16
  "get_output",
17
17
  "search",
18
18
  "list_operations"
19
- ]
19
+ ],
20
+ "description": "Action to perform: 'list' to see all available schemas, 'get' to retrieve a specific input schema, 'get_output' to retrieve a tool's output schema, 'search' to find schemas by keyword, 'list_operations' to list all on-chain operations"
20
21
  },
21
22
  "name": {
22
- "type": "string"
23
+ "type": "string",
24
+ "description": "Schema/tool name for 'get'/'get_output' action (e.g., 'onchain_operations', 'account_operation', 'onchain_operations_permission')"
23
25
  },
24
26
  "query": {
25
- "type": "string"
27
+ "type": "string",
28
+ "description": "Search query for 'search' action"
26
29
  }
27
30
  },
28
31
  "required": [
@@ -0,0 +1,327 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://wowok.net/schemas/trust_score.json",
4
+ "title": "Trust Score - Service Risk & Trust Assessment",
5
+ "description": "Proactively query the trust score (0-100, 5 dimensions) and risk assessment (4 dimensions, 100-point) of a Service object. Parameters: service (required), order_amount (optional), depth (optional: browse/evaluate/preorder).",
6
+ "$ref": "#/definitions/trust_score",
7
+ "definitions": {
8
+ "trust_score": {
9
+ "type": "object",
10
+ "properties": {
11
+ "result": {
12
+ "type": "object",
13
+ "properties": {
14
+ "service_id": {
15
+ "type": "string",
16
+ "description": "The Service object ID or local_mark that was evaluated."
17
+ },
18
+ "service_name": {
19
+ "type": "string",
20
+ "description": "Service display name (falls back to service_id if unnamed)."
21
+ },
22
+ "service_basics": {
23
+ "type": "object",
24
+ "properties": {
25
+ "bPublished": {
26
+ "type": "boolean",
27
+ "description": "Whether the Service is published (open for orders)."
28
+ },
29
+ "bPaused": {
30
+ "type": "boolean",
31
+ "description": "Whether the Service is temporarily paused."
32
+ },
33
+ "sales_count": {
34
+ "type": "integer",
35
+ "minimum": 0,
36
+ "description": "Number of active (non-suspended) sale entries."
37
+ },
38
+ "has_machine": {
39
+ "type": "boolean",
40
+ "description": "Whether a Machine workflow is attached."
41
+ },
42
+ "has_buy_guard": {
43
+ "type": "boolean",
44
+ "description": "Whether a buy-side Guard is configured."
45
+ },
46
+ "has_um_contact": {
47
+ "type": "boolean",
48
+ "description": "Whether a Messenger (um) contact is configured."
49
+ },
50
+ "arbitrations_count": {
51
+ "type": "integer",
52
+ "minimum": 0,
53
+ "description": "Number of arbitration entries attached to the Service."
54
+ }
55
+ },
56
+ "required": [
57
+ "bPublished",
58
+ "bPaused",
59
+ "sales_count",
60
+ "has_machine",
61
+ "has_buy_guard",
62
+ "has_um_contact",
63
+ "arbitrations_count"
64
+ ],
65
+ "additionalProperties": false,
66
+ "description": "Service snapshot — basic on-chain state."
67
+ },
68
+ "trust_score": {
69
+ "type": "object",
70
+ "properties": {
71
+ "score": {
72
+ "type": "number",
73
+ "minimum": 0,
74
+ "maximum": 100,
75
+ "description": "Overall trust score (0-100, higher = more trustworthy)."
76
+ },
77
+ "level": {
78
+ "type": "string",
79
+ "enum": [
80
+ "high_risk",
81
+ "caution",
82
+ "moderate",
83
+ "trusted"
84
+ ],
85
+ "description": "Trust level label derived from the score."
86
+ },
87
+ "summary": {
88
+ "type": "string",
89
+ "description": "One-line human-readable trust summary."
90
+ },
91
+ "warnings": {
92
+ "type": "array",
93
+ "items": {
94
+ "type": "string"
95
+ },
96
+ "description": "Trust warnings (e.g. low arbitration dimension score)."
97
+ },
98
+ "breakdown": {
99
+ "type": "array",
100
+ "items": {
101
+ "type": "object",
102
+ "properties": {
103
+ "score": {
104
+ "type": "number",
105
+ "description": "Dimension score achieved."
106
+ },
107
+ "maxScore": {
108
+ "type": "number",
109
+ "description": "Dimension max possible score."
110
+ },
111
+ "description": {
112
+ "type": "string",
113
+ "description": "Dimension name / description."
114
+ },
115
+ "humanReadable": {
116
+ "type": "string",
117
+ "description": "Human-readable dimension explanation."
118
+ }
119
+ },
120
+ "required": [
121
+ "score",
122
+ "maxScore",
123
+ "description",
124
+ "humanReadable"
125
+ ],
126
+ "additionalProperties": false
127
+ },
128
+ "description": "5-dimension breakdown: arbitration / reviews / fulfillment / fund_safety / transparency."
129
+ }
130
+ },
131
+ "required": [
132
+ "score",
133
+ "level",
134
+ "summary",
135
+ "warnings",
136
+ "breakdown"
137
+ ],
138
+ "additionalProperties": false,
139
+ "description": "ServiceTrustScore — 0-100 score across 5 trust dimensions."
140
+ },
141
+ "order_amount": {
142
+ "type": "string",
143
+ "description": "Order amount used for fund-safety assessment, in smallest token unit (bigint as string)."
144
+ },
145
+ "depth": {
146
+ "type": "string",
147
+ "enum": [
148
+ "browse",
149
+ "evaluate",
150
+ "preorder"
151
+ ],
152
+ "description": "Actual InfoPuzzle collection depth used (defaults to 'evaluate')."
153
+ },
154
+ "risk_score": {
155
+ "type": "object",
156
+ "properties": {
157
+ "total": {
158
+ "type": "number",
159
+ "minimum": 0,
160
+ "maximum": 100,
161
+ "description": "Overall risk score (0-100, higher = riskier)."
162
+ },
163
+ "level": {
164
+ "type": "string",
165
+ "enum": [
166
+ "low",
167
+ "medium_low",
168
+ "medium_high",
169
+ "high"
170
+ ],
171
+ "description": "Risk level label derived from the total score."
172
+ },
173
+ "red_flags": {
174
+ "type": "array",
175
+ "items": {
176
+ "type": "string"
177
+ },
178
+ "description": "Critical risk red flags detected."
179
+ },
180
+ "advice": {
181
+ "type": "array",
182
+ "items": {
183
+ "type": "string"
184
+ },
185
+ "description": "Risk mitigation advice."
186
+ },
187
+ "dimensions": {
188
+ "type": "array",
189
+ "items": {
190
+ "type": "object",
191
+ "properties": {
192
+ "name": {
193
+ "type": "string",
194
+ "enum": [
195
+ "workflow",
196
+ "fund",
197
+ "trust",
198
+ "behavior"
199
+ ],
200
+ "description": "Risk dimension name."
201
+ },
202
+ "score": {
203
+ "type": "number",
204
+ "description": "Dimension score achieved."
205
+ },
206
+ "max_score": {
207
+ "type": "number",
208
+ "description": "Dimension max possible score."
209
+ },
210
+ "checks": {
211
+ "type": "array",
212
+ "items": {
213
+ "type": "object",
214
+ "properties": {
215
+ "id": {
216
+ "type": "string",
217
+ "description": "Check identifier."
218
+ },
219
+ "dimension": {
220
+ "type": "string",
221
+ "enum": [
222
+ "workflow",
223
+ "fund",
224
+ "trust",
225
+ "behavior"
226
+ ],
227
+ "description": "Dimension this check belongs to."
228
+ },
229
+ "description": {
230
+ "type": "string",
231
+ "description": "Check description."
232
+ },
233
+ "weight": {
234
+ "type": "number",
235
+ "description": "Check weight within its dimension (percentage)."
236
+ },
237
+ "passed": {
238
+ "type": "boolean",
239
+ "description": "Whether the check passed."
240
+ },
241
+ "advice": {
242
+ "type": "string",
243
+ "description": "Advice when the check failed."
244
+ }
245
+ },
246
+ "required": [
247
+ "id",
248
+ "dimension",
249
+ "description",
250
+ "weight",
251
+ "passed"
252
+ ],
253
+ "additionalProperties": false
254
+ },
255
+ "description": "Individual risk checks within this dimension."
256
+ }
257
+ },
258
+ "required": [
259
+ "name",
260
+ "score",
261
+ "max_score",
262
+ "checks"
263
+ ],
264
+ "additionalProperties": false
265
+ },
266
+ "description": "4-dimension breakdown: workflow / fund / trust / behavior."
267
+ }
268
+ },
269
+ "required": [
270
+ "total",
271
+ "level",
272
+ "red_flags",
273
+ "advice",
274
+ "dimensions"
275
+ ],
276
+ "additionalProperties": false,
277
+ "description": "RiskScore — present only when depth >= 'evaluate'."
278
+ },
279
+ "info_puzzle": {
280
+ "type": "object",
281
+ "properties": {
282
+ "completeness": {
283
+ "type": "number",
284
+ "minimum": 0,
285
+ "maximum": 1,
286
+ "description": "InfoPuzzle completeness ratio (0-1)."
287
+ },
288
+ "gaps": {
289
+ "type": "array",
290
+ "items": {
291
+ "type": "string"
292
+ },
293
+ "description": "Missing key puzzle pieces."
294
+ },
295
+ "assembled_at": {
296
+ "type": "number",
297
+ "description": "Assembly timestamp (ms since epoch)."
298
+ }
299
+ },
300
+ "required": [
301
+ "completeness",
302
+ "gaps",
303
+ "assembled_at"
304
+ ],
305
+ "additionalProperties": false,
306
+ "description": "InfoPuzzle summary — present only when depth >= 'evaluate'."
307
+ }
308
+ },
309
+ "required": [
310
+ "service_id",
311
+ "service_name",
312
+ "service_basics",
313
+ "trust_score",
314
+ "order_amount",
315
+ "depth"
316
+ ],
317
+ "additionalProperties": false,
318
+ "description": "Trust score result. Contains: trust_score (ServiceTrustScore), risk_score (RiskScore, when depth >= evaluate), info_puzzle summary, and service_basics snapshot."
319
+ }
320
+ },
321
+ "required": [
322
+ "result"
323
+ ],
324
+ "additionalProperties": false
325
+ }
326
+ }
327
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://wowok.net/schemas/trust_score.json",
4
+ "title": "Trust Score - Service Risk & Trust Assessment",
5
+ "description": "Proactively query the trust score (0-100, 5 dimensions) and risk assessment (4 dimensions, 100-point) of a Service object. Parameters: service (required), order_amount (optional), depth (optional: browse/evaluate/preorder).",
6
+ "$ref": "#/definitions/trust_score",
7
+ "definitions": {
8
+ "trust_score": {
9
+ "type": "object",
10
+ "properties": {
11
+ "service": {
12
+ "type": "string",
13
+ "description": "Service object ID or local_mark name to evaluate. Must reference an existing Service object on-chain."
14
+ },
15
+ "order_amount": {
16
+ "type": [
17
+ "string",
18
+ "number"
19
+ ],
20
+ "description": "Optional order amount (in smallest token unit, e.g. 2000000000 for 2 WOW). Used for fund-safety dimension risk assessment. If omitted, the first active sale price of the service is used."
21
+ },
22
+ "depth": {
23
+ "type": "string",
24
+ "enum": [
25
+ "browse",
26
+ "evaluate",
27
+ "preorder"
28
+ ],
29
+ "description": "InfoPuzzle collection depth. browse: only Service basics + trust score; evaluate (default): + workflow/fund/trust dimensions risk assessment; preorder: + merchant behavior + market context (most thorough)."
30
+ },
31
+ "network": {
32
+ "type": "string",
33
+ "description": "Network override (e.g. 'mainnet', 'testnet'). If omitted, uses default."
34
+ },
35
+ "no_cache": {
36
+ "type": "boolean",
37
+ "description": "Skip object cache and force a fresh on-chain query."
38
+ }
39
+ },
40
+ "required": [
41
+ "service"
42
+ ],
43
+ "additionalProperties": false
44
+ }
45
+ }
46
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wowok/agent-mcp",
3
- "version": "2.3.14",
3
+ "version": "2.3.18",
4
4
  "description": "Making It Easy for AI Agents to Communicate, Collaborate, Trade, and Trust.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -36,7 +36,7 @@
36
36
  "license": "Apache-2.0",
37
37
  "dependencies": {
38
38
  "@modelcontextprotocol/sdk": "^1.29.0",
39
- "@wowok/wowok": "2.3.14",
39
+ "@wowok/wowok": "2.3.18",
40
40
  "lodash": "^4.18.1",
41
41
  "zod": "^3.25.76"
42
42
  },