security-hardening

Installation
SKILL.md

Security Hardening

Input Validation

Validate all input at the boundary. Never trust client-side validation alone.

import { z } from 'zod';

const CreateUserSchema = z.object({
  email: z.string().email().max(255),
  name: z.string().min(1).max(100).regex(/^[a-zA-Z\s'-]+$/),
  age: z.number().int().min(13).max(150),
});
Installs
130
GitHub Stars
2.2K
First Seen
Feb 11, 2026
security-hardening — rohitg00/awesome-claude-code-toolkit