GPT-5 finding
Example imports use a nonstandard zod path (`zod/v4`) likely to break consumers
lowdocs-gapmedium
- opensea/opensea-tool-sdk/SKILL.md
The canonical import is `import { z } from 'zod'`. Using `zod/v4` ties docs to an internal versioned path that most package managers don’t expose, causing build errors for users who follow the snippet verbatim.
Recommendation
Change example to `import { z } from 'zod'` and, if v4-only features are required, add a note to install the matching zod version.