Skip to main content

form-react

Provides production-ready React form patterns using React Hook Form and Zod for efficient form handling in React applications.

Install this skill

or
65/100

Security score

The form-react skill was audited on Feb 12, 2026 and we found 7 security issues across 1 threat category. Review the findings below before installing.

Categories Tested

Security Issues

medium line 165

Template literal with variable interpolation in command context

SourceSKILL.md
165<div className={`form-field ${showError ? 'error' : ''} ${showValid ? 'valid' : ''}`}>
medium line 179

Template literal with variable interpolation in command context

SourceSKILL.md
179aria-describedby={error ? `${name}-error` : undefined}
medium line 185

Template literal with variable interpolation in command context

SourceSKILL.md
185<span id={`${name}-error`} role="alert" className="error-message">
medium line 281

Template literal with variable interpolation in command context

SourceSKILL.md
281const response = await fetch(`/api/check-username?u=${username}`);
medium line 345

Template literal with variable interpolation in command context

SourceSKILL.md
345<input {...register(`members.${index}.name`)} placeholder="Name" />
medium line 346

Template literal with variable interpolation in command context

SourceSKILL.md
346<input {...register(`members.${index}.email`)} placeholder="Email" />
medium line 453

Template literal with variable interpolation in command context

SourceSKILL.md
453const response = await fetch(`/api/check-username?u=${value}`);
Scanned on Feb 12, 2026
View Security Dashboard
Installation guide →