What problem does it solve? It prevents common security vulnerabilities—hardcoded secrets, SQL injection, XSS, CSRF, weak authentication, and cloud misconfigurations—from reaching production by providing a structured review checklist and secure code patterns. ## Core Features & Use Cases - Application Security Checklist: Covers secrets management, input validation with Zod, parameterized queries, JWT handling, XSS sanitization, CSRF tokens, and rate limiting. - Cloud & Infrastructure Security: Extends review to IAM least privilege, secrets rotation, VPC/firewall rules, CI/CD pipeline hardening, Cloudflare WAF, and backup strategies. - Use Case: Before deploying a new payment API endpoint, run a security review to verify inputs are schema-validated, queries are parameterized, tokens use httpOnly cookies, rate limits are enforced, and no secrets appear in code or logs. ## Quick Start Review my new authentication and payment endpoint code for security vulnerabilities before deployment.