What problem does it solve? Web applications ship with common vulnerabilities like missing security headers, weak CORS policies, unvalidated inputs, and insecure session handling. This Skill provides concrete, copy-ready patterns for hardening an application against XSS, CSRF, clickjacking, brute-force attacks, and secret leakage. ## Core Features & Use Cases - Security Headers & CSP: Prebuilt Content Security Policy and full header checklist (HSTS, X-Frame-Options, COOP/COEP/CORP) with middleware implementation for Bun/Elysia. - Rate Limiting & Input Validation: Redis sliding-window rate limiter with per-route limits, plus Zod schemas for sanitizing strings, emails, passwords, and file uploads. - Auth Hardening & Secrets: Argon2id password hashing, short-lived JWTs with rotation, Redis-backed sessions, encryption at rest, and dependency auditing with bun audit. - Use Case: Before deploying a new API, apply the per-deploy security checklist to configure CSP in report-only mode, restrict CORS to known origins, add rate limits on auth endpoints, and verify bun audit passes. ## Quick Start Review my app's security posture and add security headers, rate limiting, and Zod input validation to all endpoints.