Generate Zod/JSON Schema configuration validators with defaults and error messages.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill config-schema-validator --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Config Schema Validator?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-config-schema-validator-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: config-schema-validator
description: Generate Zod/JSON Schema configuration validators with defaults and error messages.
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
graph:
domains: [domain:software-engineering]
specializations: [specialization:cli-mcp-development]
skillAreas: [skill-area:cli-design, skill-area:configuration-management]
roles: [role:backend-engineer, role:platform-engineer]
workflows: [workflow:feature-development]
topics: [topic:developer-experience]
---
# Config Schema Validator
Generate configuration schema validators.
## Generated Patterns
```typescript
import { z } from 'zod';
export const configSchema = z.object({
server: z.object({
host: z.string().default('localhost'),
port: z.number().int().min(1).max(65535).default(3000),
cors: z.object({
origins: z.array(z.string().url()).default(['*']),
credentials: z.boolean().default(false),
}).default({}),
}).default({}),
logging: z.object({
level: z.enum(['debug', 'info', 'warn', 'error']).default('info'),
format: z.enum(['json', 'pretty']).default('pretty'),
}).default({}),
}).strict();
export type Config = z.infer<typeof configSchema>;
export function validateConfig(input: unknown): Config {
return configSchema.parse(input);
}
export function getConfigWithDefaults(partial: Partial<Config> = {}): Config {
return configSchema.parse(partial);
}
```
## Target Processes
- configuration-management-system
- mcp-tool-implementation
- cli-application-bootstrap
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!