zod

Solid

Zod schema validation and type inference.

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 92/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
40
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Zod Skill Expert assistance for Zod schema validation. ## Capabilities - Create Zod schemas - Infer TypeScript types - Handle transformations - Validate forms - Parse API responses ## Schema Patterns ```typescript import { z } from 'zod'; const UserSchema = z.object({ id: z.string().uuid(), name: z.string().min(1), email: z.string().email(), age: z.number().int().positive().optional(), role: z.enum(['user', 'admin']).default('user'), createdAt: z.coerce.date(), }); type User = z.infer<typeof UserSchema>; // Parsing const user = UserSchema.parse(data); // Safe parsing const result = UserSchema.safeParse(data); if (result.success) { console.log(result.data); } else { console.log(result.error); } ``` ## Target Processes - form-validation - api-validation - type-inference

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills