@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 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,