@wowok/agent-mcp 2.2.21 → 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/README.md +1 -3
- package/dist/index.js +4 -1
- package/dist/schema/call/base.d.ts +829 -829
- package/dist/schema/common/index.d.ts +43 -43
- package/dist/schema/common/index.js +3 -3
- package/dist/schema/local/index.d.ts +1895 -1895
- package/dist/schema/local/index.js +12 -12
- package/dist/schema/local/wip.d.ts +16 -16
- package/dist/schema/local/wip.js +2 -2
- package/dist/schema/query/index.d.ts +6860 -6860
- 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 +1 -1
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,
|