auth-patterns
SKILL.md
Authentication & Authorization Patterns
Secure authentication flows, token management, and role-based access control.
Core Concepts
| Concept | Description |
|---|---|
| Authentication | Verify identity (who you are) |
| Authorization | Verify permissions (what you can do) |
| OAuth 2.0 | Delegated authorization framework |
| OIDC | Identity layer on top of OAuth 2.0 |
| JWT | Stateless token format for claims |
| RBAC | Role-Based Access Control |