Authentication and authorization patterns. Use when implementing login, permissions, or access control.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add skeletorflet/opencode-supreme-setup --skill auth --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Auth?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/skeletorflet-auth)More formats (shields.io, HTML) on the badges page.
---
name: auth
description: Authentication and authorization patterns. Use when implementing login, permissions, or access control.
---
## auth
Implement secure authentication.
### Methods
- JWT: stateless tokens
- Session: server-side storage
- OAuth2: delegated auth (Google, GitHub)
- API keys: service-to-service
- WebAuthn: passwordless
### Security
- Hash passwords (bcrypt, argon2)
- HTTPS only
- Rate limit login
- CSRF protection
- CORS whitelist
- Token rotation
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.