# Send Zod Complete Documentation to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lb-zod-skill",
    "name": "Zod Complete Documentation",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/leonaaardob/lb-zod-skill",
    "canonicalUrl": "https://clawhub.ai/leonaaardob/lb-zod-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lb-zod-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lb-zod-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/api.mdx",
      "references/basics.mdx",
      "references/blog/clerk-fellowship.mdx",
      "references/codecs.mdx"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/lb-zod-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lb-zod-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/lb-zod-skill",
    "agentUrl": "https://openagent3.xyz/skills/lb-zod-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lb-zod-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lb-zod-skill/agent.md"
  }
}
```
## Documentation

### Zod Documentation

Complete Zod validation library documentation embedded in markdown. Read from references/ to answer questions about schema validation, type inference, and error handling.

### Documentation Structure

All documentation is in references/ organized by topic:

### Core Documentation

Getting Started

index.mdx - Introduction and quick start
basics.mdx - Basic usage and schema definition

API Reference

api.mdx - Complete API documentation

Primitives (string, number, boolean, etc.)
Complex types (object, array, tuple, union, etc.)
Schema methods (parse, safeParse, parseAsync, etc.)
Refinements and transforms
Type inference
Error handling

Advanced Features

error-formatting.mdx - Error formatting and customization
error-customization.mdx - Custom error messages
codecs.mdx - Serialization and deserialization
json-schema.mdx - JSON Schema generation
metadata.mdx - Schema metadata

Integration & Ecosystem

ecosystem.mdx - Community packages and integrations
library-authors.mdx - Guide for library authors
packages/ - Related packages

Version 4

v4/ - Zod v4 features and migration guide

### Common Tasks

TaskFile to ReadGet startedindex.mdx, basics.mdxDefine schemasapi.mdx (Primitives section)Object validationapi.mdx (Objects section)Array validationapi.mdx (Arrays section)Union typesapi.mdx (Unions section)Refinementsapi.mdx (Refinements section)Transformsapi.mdx (Transforms section)Error handlingerror-formatting.mdx, error-customization.mdxType inferenceapi.mdx (Type Inference section)Async validationapi.mdx (Async section)JSON Schemajson-schema.mdxCustom errorserror-customization.mdxEcosystemecosystem.mdx

### Schema Examples

Primitives:

z.string()
z.number()
z.boolean()
z.date()
z.undefined()
z.null()
z.any()
z.unknown()

Complex Types:

z.object({ ... })
z.array(z.string())
z.tuple([z.string(), z.number()])
z.union([z.string(), z.number()])
z.record(z.string())
z.map(z.string(), z.number())
z.set(z.string())

Refinements:

z.string().email()
z.string().url()
z.string().uuid()
z.number().min(5).max(10)
z.string().regex(/pattern/)

Transforms:

z.string().transform(val => val.toUpperCase())
z.coerce.number()

### When to Use This Skill

Form validation in React/Next.js
API request/response validation
Environment variable parsing
Runtime type checking
Data transformation and parsing
Error message customization
Integration with tRPC, React Hook Form, etc.
TypeScript type inference from schemas

### How to Navigate

Start with index.mdx for introduction
For basic usage: Read basics.mdx
For API details: Check api.mdx (comprehensive reference)
For error handling: See error-formatting.mdx and error-customization.mdx
For advanced features: Browse codecs.mdx, json-schema.mdx, metadata.mdx
For integrations: Check ecosystem.mdx
For v4 features: See v4/ directory

All files are .mdx (Markdown + JSX) but readable as plain markdown.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: leonaaardob
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lb-zod-skill)
- [Send to Agent page](https://openagent3.xyz/skills/lb-zod-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/lb-zod-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lb-zod-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/lb-zod-skill)