What problem does it solve? Web applications that accept user input, manage sessions, or integrate external services are exposed to injection, XSS, credential leaks, and misconfiguration risks. This Skill provides a structured security review framework so vulnerabilities are caught during development instead of after deployment. ## Core Features & Use Cases - Three-Tier Boundary System: Clear rules for what must always be done (input validation, parameterized queries, security headers), what requires human approval (new auth flows, CORS changes, file uploads), and what must never be done (committing secrets, using eval with user data). - DaaS/Supabase Proxy Patterns: Concrete guidance on routing browser requests through Next.js API routes, correct environment variable scoping, and safe CORS configuration with credentials. - Zod-Based Input Validation: Ready-to-adapt schema validation patterns for API route handlers with typed, validated output. - Use Case: Before shipping a new file upload endpoint, run the security review checklist to confirm authentication checks, rate limiting, input validation, and header configuration are all in place. ## Quick Start Review my new API route for security issues using the security and hardening checklist.