@wowok/agent-mcp 2.2.20 → 2.2.22

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/LICENSE ADDED
@@ -0,0 +1,36 @@
1
+ WoWok Agent SDK
2
+
3
+ Copyright (c) 2024-2025 WoWok Team. All Rights Reserved.
4
+
5
+ ================================================================================
6
+ IMPORTANT LICENSE INFORMATION
7
+ ================================================================================
8
+
9
+ This software is part of the WoWok Blockchain Project.
10
+
11
+ WoWok uses technology from the Sui blockchain project (https://github.com/MystenLabs/sui)
12
+ developed by Mysten Labs, Inc. and licensed under the Apache License 2.0.
13
+
14
+ For complete license information, including:
15
+ - Apache License 2.0 (for Sui-derived code)
16
+ - WoWok Commercial License (for original WoWok code)
17
+ - Third-party component licenses
18
+ - Attribution notices
19
+
20
+ Please visit:
21
+ https://github.com/wowok-ai/licence
22
+
23
+ Or see the local licence repository at:
24
+ d:\wowok\licence
25
+
26
+ ================================================================================
27
+ SUMMARY
28
+ ================================================================================
29
+
30
+ - Sui-derived code: Apache License 2.0
31
+ Copyright (c) Mysten Labs, Inc.
32
+
33
+ - WoWok original code: WoWok Commercial License
34
+ Copyright (c) WoWok Team
35
+
36
+ For licensing inquiries, please contact: build@wowok.net
package/README.md CHANGED
@@ -61,6 +61,4 @@ Skills provide structured guidance for AI assistants:
61
61
  - **Use `wowok-tools`** + `wowok-safety`** + `wowok-output` (always loaded) for all roles
62
62
  - **Use `wowok-guard`** when designing complex validation rules
63
63
 
64
- #### Using Skills
65
-
66
- Once installed, Claude Code will automatically use these skills when working with WoWok tools.
64
+ > **Note:** For detailed installation instructions for different AI clients (Claude Code, OpenAI Codex, Trae IDE, Cursor, etc.), see the [WoWok Skills](https://github.com/wowok-ai/skills) repository.
package/dist/index.js CHANGED
@@ -1076,7 +1076,10 @@ async function handleOnchainEvents(args) {
1076
1076
  const validated = strictParse(OnchainEventsInputSchema, args, "onchain_events input");
1077
1077
  const queryResult = await query_events({
1078
1078
  type: validated.type,
1079
- cursor: validated.cursor ?? null,
1079
+ cursor: validated.cursor ? {
1080
+ eventSeq: String(validated.cursor.eventSeq),
1081
+ txDigest: validated.cursor.txDigest
1082
+ } : null,
1080
1083
  limit: validated.limit ?? null,
1081
1084
  order: validated.order ?? null,
1082
1085
  no_cache: validated.no_cache,