Skip to main content

customizing-errors

Facilitates Zod validation error handling with custom messages and formatting for improved user experience in applications.

Install this skill

or
45/100

Security score

The customizing-errors skill was audited on Feb 9, 2026 and we found 11 security issues across 1 threat category. Review the findings below before installing.

Categories Tested

Security Issues

medium line 49

Template literal with variable interpolation in command context

SourceSKILL.md
49return { message: `Expected ${issue.expected}, got ${issue.received}` };
medium line 209

Template literal with variable interpolation in command context

SourceSKILL.md
209{ error: `Value must be between ${min} and ${max}` }
medium line 229

Template literal with variable interpolation in command context

SourceSKILL.md
229return { message: `Minimum ${issue.minimum} characters required` };
medium line 261

Template literal with variable interpolation in command context

SourceSKILL.md
261return { message: `Expected ${issue.expected}, got ${issue.received}` };
medium line 267

Template literal with variable interpolation in command context

SourceSKILL.md
267return { message: `Minimum ${issue.minimum} required` };
medium line 270

Template literal with variable interpolation in command context

SourceSKILL.md
270return { message: `Maximum ${issue.maximum} allowed` };
medium line 273

Template literal with variable interpolation in command context

SourceSKILL.md
273return { message: `Must be one of: ${issue.options.join(', ')}` };
medium line 323

Template literal with variable interpolation in command context

SourceSKILL.md
323console.log(`Field: ${issue.path.join('.')}`);
medium line 324

Template literal with variable interpolation in command context

SourceSKILL.md
324console.log(`Error: ${issue.message}`);
medium line 325

Template literal with variable interpolation in command context

SourceSKILL.md
325console.log(`Code: ${issue.code}`);
medium line 447

Template literal with variable interpolation in command context

SourceSKILL.md
447console.log(`Index ${issue.path[0]}: ${issue.message}`);
Scanned on Feb 9, 2026
View Security Dashboard
Installation guide →