·valibot

Schema validation with Valibot, the modular and type-safe schema library. Use when the user needs to validate data, create schemas, parse inputs, or work with Valibot in their project. Also use when migrating from Zod to Valibot.

53Installs·4Trend·@open-circle

Installation

$npx skills add https://github.com/open-circle/agent-skills --skill valibot

How to Install valibot

Quickly install valibot AI skill to your development environment via command line

  1. Open Terminal: Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.)
  2. Run Installation Command: Copy and run this command: npx skills add https://github.com/open-circle/agent-skills --skill valibot
  3. Verify Installation: Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Source: open-circle/agent-skills.

SKILL.md

View raw

This skill helps you work effectively with Valibot, the modular and type-safe schema library for validating structural data.

Valibot and Zod have different APIs. Never mix them up!

| Import | import { z } from 'zod' | import as v from 'valibot' | | Validations | Chained methods: .email().min(5) | Pipeline: v.pipe(v.string(), v.email(), v.minLength(5)) | | Parsing | schema.parse(data) | v.parse(schema, data) | | Safe parsing | schema.safeParse(data) | v.safeParse(schema, data) |

Schema validation with Valibot, the modular and type-safe schema library. Use when the user needs to validate data, create schemas, parse inputs, or work with Valibot in their project. Also use when migrating from Zod to Valibot. Source: open-circle/agent-skills.

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/open-circle/agent-skills --skill valibot
Category
{}Data Analysis
Verified
First Seen
2026-03-01
Updated
2026-03-11

Browse more skills from open-circle/agent-skills

Quick answers

What is valibot?

Schema validation with Valibot, the modular and type-safe schema library. Use when the user needs to validate data, create schemas, parse inputs, or work with Valibot in their project. Also use when migrating from Zod to Valibot. Source: open-circle/agent-skills.

How do I install valibot?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/open-circle/agent-skills --skill valibot Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Where is the source repository?

https://github.com/open-circle/agent-skills

Details

Category
{}Data Analysis
Source
skills.sh
First Seen
2026-03-01