@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 +36 -0
- package/README.md +1 -3
- package/dist/index.js +4 -1
- package/dist/schema/call/base.d.ts +127 -511
- package/dist/schema/common/index.d.ts +3 -3
- package/dist/schema/common/index.js +1 -1
- package/dist/schema/local/index.d.ts +395 -1435
- package/dist/schema/local/index.js +4 -4
- package/dist/schema/local/wip.d.ts +16 -16
- package/dist/schema/local/wip.js +2 -2
- package/dist/schema/query/index.d.ts +1020 -1020
- package/dist/schema/query/index.js +4 -4
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/onchain_events.schema.json +4 -1
- package/package.json +3 -2
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
|
-
|
|
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
|
|
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,
|