Zod v4
Installation
SKILL.md
Zod v4 - Schema Validation Skill
Zod v4 is a TypeScript-first schema declaration and validation library that provides static type inference, runtime validation, and exceptional performance. Version 4 delivers 14x faster parsing and 66% smaller bundles while maintaining full type safety.
Quick Start
npm install zod@^4.0.0
import * as z from "zod";
// Basic schema creation and validation
const UserSchema = z.object({
id: z.number().int().positive(),
email: z.email(),
username: z.string().min(3).max(20),
age: z.number().int().min(18).optional(),
Related skills
More from slanycukr/riot-api-project
axios
Promise-based HTTP client for making requests from browser and Node.js
140radix-ui
Build accessible, unstyled React UI components with Radix Primitives
56structlog
Structured logging for Python applications with context support and powerful processors
46uvicorn
ASGI server for Python web applications - Fast, production-ready server for async frameworks
41httpx
A next-generation HTTP client for Python with both sync and async support, perfect for modern Python applications
36apscheduler
Advanced Python Scheduler - Task scheduling and job queue system
20