Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add xonovex/platform --skill zod-guidegit clone --depth 1 https://github.com/xonovex/platformWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/xonovex/platform/zod-guide)<a href="https://agentmods.dev/skills/xonovex/platform/zod-guide"><img src="https://agentmods.dev/badge/skills/xonovex/platform/zod-guide/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/xonovex/platform/zod-guide"><img src="https://agentmods.dev/badge/skills/xonovex/platform/zod-guide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00087 | $0.00438 |
| Opus 5 | $0.00044 | $0.00219 |
| Sonnet 5 | $0.00017 | $0.00088 |
| Haiku 4.5 | $0.00009 | $0.00044 |
Grade A, and why
zod-guide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Zod Coding Guidelines
Requirements
- Zod ≥ 4.0
Essentials
- Use v4 validators -
z.uuid(),z.email(),z.iso.datetime()(notz.string().uuid()), see references/migration-v4.md - Name schemas PascalCase - e.g.
UserSchema, see references/schema-organization.md - Module-level schemas - Define for reuse, keep close to usage, see references/schema-organization.md
- Multi-step validation - Chain
.transform()into.pipe()before.default(), see references/validation-patterns.md
Gotchas
optional()makes a field acceptundefined;nullable()acceptsnull. They're orthogonal, combine with.nullish()for both- Refinements (
.refine) don't narrow the output type: TypeScript still sees the broader input type unless you pair with.transform
Progressive Disclosure
Guidelines
- Read references/schema-organization.md - Load when naming or placing schemas across modules or files
- Read references/validation-patterns.md - Load when composing multi-step validation with
.transform()and.pipe()
Migration from Zod v3
- Read references/migration-v4.md - Load when migrating from Zod v3, replacing z.string().uuid() patterns, or using deprecated validators
What ships with it
6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 34 lines · 87 tokens per session scan A b32487570609
zod-guide is a skill published in the GitHub repository xonovex/platform (5 stars, last pushed 5d ago), licensed MIT. It adds 87 tokens to every session and 438 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-08.
Other skills, from other repositories
codegen
Use for .NET code generation work with Roslyn, Microsoft.OpenApi, Razor templates, DTO/manager/controller generation, REST API generation, C# HttpClient generation, Angular/Axios TypeScript request clients, generated formatting, and deterministic output.
NestJS Framework
Node.js/TypeScript backend framework with dependency injection and modular architecture.
react-component-design
Designs or reviews React component APIs. Handles prop drilling decisions, composition patterns, controlled/uncontrolled contracts, and minimal public API surfaces for React 18+ TypeScript components. Invoked when creating new components, refactoring existing ones, or reviewing component contracts.
building-nango-functions-locally
Builds Nango Functions in a checked-out Zero YAML TypeScript Nango project using local files, index.ts registration, nango dryrun, generated tests, and optional nango deploy via CLI. Use when creating, updating, validating, testing, or deploying Nango actions or syncs locally in a repo. This content overlaps with…
wraps-workflows
Build email and SMS automation workflows using the @wraps.dev/client TypeScript DSL. Covers triggers, steps, branching, cascades, and the full defineWorkflow API.
knowject-api-to-types
A Knowject skill that generates TypeScript types from an OpenAPI document, which describes an API's available requests and data shapes, and connects them to a typed client.