skills.volces.com1 installs
validation-utils
Provides data validation and type checking utilities for validating inputs and data structures. Use when you need to validate data types, check constraints, or verify data integrity.
How do I install this agent skill?
npx skills add https://skills.volces.com --skill jpeng-validation-utilsIs this agent skill safe to install?
No partner audit is available yet. Read the source before installing.
What does this agent skill do?
Validation Utils
Provides data validation and type checking utilities.
Usage
const v = require('./skills/validation-utils');
// Type checking
if (v.isString(value)) { ... }
if (v.isArray(value)) { ... }
// Validation
const result = v.validate(user, {
name: v.required(v.isString),
age: v.optional(v.isNumber),
email: v.required(v.isEmail)
});
// Assert
v.assert(v.isPositive(5), 'Must be positive');
Features
- Type checking utilities
- Required/optional validators
- Email, URL, UUID validation
- Number range validation
- String pattern validation
- Object schema validation
- Assertion helpers
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/skills.volces.com/jpeng-validation-utils">View validation-utils on skillZs</a>