What problem does it solve? Developers often ship code with hardcoded secrets, SQL injection risks, missing authorization checks, or insecure token storage. This Skill provides a structured security review checklist so vulnerabilities are caught before deployment. ## Core Features & Use Cases - Ten-Domain Security Checklist: Covers secrets management, input validation, SQL injection prevention, authentication/authorization, XSS, CSRF, rate limiting, sensitive data exposure, Solana blockchain security, and dependency auditing. - Code Pattern Guidance: Shows concrete wrong-vs-right TypeScript examples, such as httpOnly cookies instead of localStorage for tokens and parameterized queries instead of string concatenation. - Pre-Deployment Gate: A final checklist verifies HTTPS, security headers, RLS policies, CORS, and file upload validation before any production release. - Use Case: Before merging a new API endpoint that accepts file uploads, run the review to confirm Zod schema validation, file size/type limits, rate limiting, and sanitized error responses are all in place. ## Quick Start Review my new authentication and file upload endpoints against the security checklist and flag any vulnerabilities.