security

Installation
SKILL.md

Security is not optional - it's a fundamental requirement. This skill helps you build secure applications from the start, not bolt on security as an afterthought.

<quick_start> Security essentials for any new project:

  1. Secrets: Never commit to git, validate at startup

    // .env (gitignored) + envSchema.parse(process.env)
    
  2. Auth: Short-lived JWTs + httpOnly cookies

    jwt.sign(payload, secret, { expiresIn: '15m' })
    
Related skills

More from scientiacapital/skills

Installs
55
GitHub Stars
14
First Seen
Jan 23, 2026