agentsclimarketplace

Auth patterns

Skill Mattakushi432/Claude-Code-Skills-Custom-DevTools-Pack/plugins/devtools-pack/skills/auth-patterns

A curated pack of custom Claude Code skills for developers — installable as a Claude Code plugin marketplace.

Install
npx -y skills add Mattakushi432/Claude-Code-Skills-Custom-DevTools-Pack --skill auth-patterns

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

When to activate: JWT, OAuth2, OIDC, authentication, refresh token, session, MFA, passkeys, authorization

SKILL.md

5.5 KB, ~1.3k tokens by cl100k_base, as published. Nobody here has run it

Authentication Patterns

JWT Implementation

from datetime import datetime, timedelta, timezone
from jose import jwt, JWTError
from passlib.hash import argon2

SECRET_KEY = os.environ["JWT_SECRET"]  # 256-bit random key
ALGORITHM = "HS256"

def create_access_token(user_id: int) -> str:
    payload = {
        "sub": str(user_id),
        "iat": datetime.now(timezone.utc),
        "exp": datetime.now(timezone.utc) + timedelta(minutes=15),
        "type": "access"
    }
    return jwt.encode(payload, SECRET_KEY, algorithm=ALGORITHM)

def create_refresh_token(user_id: int) -> str:
    payload = {
        "sub": str(user_id),
        "iat": datetime.now(timezone.utc),
        "exp": datetime.now(timezone.utc) + timedelta(days=30),
        "type": "refresh",
        "jti": str(uuid4())  # unique ID for revocation
    }
    return jwt.encode(payload, SECRET_KEY, algorithm=ALGORITHM)

def verify_token(token: str, token_type: str) -> dict:
    try:
        payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM])
        if payload.get("type") != token_type:
            raise JWTError("Wrong token type")
        if is_revoked(payload.get("jti")):
            raise JWTError("Token revoked")
        return payload
    except JWTError:
        raise HTTPException(401, "Invalid token")

OAuth2 / OIDC Flow

# Authorization Code Flow with PKCE (public clients)
import secrets, hashlib, base64

# 1. Generate PKCE challenge
code_verifier = secrets.token_urlsafe(64)
code_challenge = base64.urlsafe_b64encode(
    hashlib.sha256(code_verifier.encode()).digest()
).rstrip(b'=').decode()

# 2. Redirect to authorization server
auth_url = (
    f"https://auth.example.com/authorize"
    f"?response_type=code"
    f"&client_id={CLIENT_ID}"
    f"&redirect_uri={REDIRECT_URI}"
    f"&scope=openid profile email"
    f"&state={secrets.token_urlsafe(16)}"
    f"&code_challenge={code_challenge}"
    f"&code_challenge_method=S256"
)

# 3. Exchange code for tokens
import httpx
token_response = httpx.post("https://auth.example.com/token", data={
    "grant_type": "authorization_code",
    "code": auth_code,
    "redirect_uri": REDIRECT_URI,
    "client_id": CLIENT_ID,
    "code_verifier": code_verifier  # PKCE verification
})
tokens = token_response.json()
# tokens: access_token, refresh_token, id_token

# 4. Verify ID token (OIDC)
from jose import jwt as jose_jwt
import httpx
jwks = httpx.get("https://auth.example.com/.well-known/jwks.json").json()
claims = jose_jwt.decode(tokens["id_token"], jwks,
                         algorithms=["RS256"], audience=CLIENT_ID)

Refresh Token Rotation

# Store refresh tokens in DB with rotation
@app.post("/auth/refresh")
async def refresh(refresh_token: str):
    payload = verify_token(refresh_token, "refresh")
    jti = payload["jti"]

    # Check token family — detect theft via rotation
    stored = await db.get_refresh_token(jti)
    if not stored or stored.used:
        # Token reuse detected → revoke entire family
        await db.revoke_family(stored.family_id if stored else None)
        raise HTTPException(401, "Token reuse detected")

    # Rotate: mark old as used, issue new
    await db.mark_used(jti)
    new_access = create_access_token(payload["sub"])
    new_refresh = create_refresh_token(payload["sub"])
    await db.store_refresh_token(new_refresh, family_id=stored.family_id)

    return {"access_token": new_access, "refresh_token": new_refresh}

MFA — TOTP

import pyotp, qrcode

# Setup
def setup_mfa(user_email: str) -> tuple[str, str]:
    secret = pyotp.random_base32()
    totp = pyotp.TOTP(secret)
    uri = totp.provisioning_uri(user_email, issuer_name="MyApp")
    return secret, uri  # show QR code of uri to user

# Verify
def verify_mfa(secret: str, code: str) -> bool:
    totp = pyotp.TOTP(secret)
    return totp.verify(code, valid_window=1)  # ±30 seconds tolerance

# Store secret encrypted in DB
encrypted_secret = cipher.encrypt(secret.encode())

Passkeys (WebAuthn)

from webauthn import generate_registration_options, verify_registration_response
from webauthn.helpers.structs import ResidentKeyRequirement

# Registration challenge
options = generate_registration_options(
    rp_id="example.com",
    rp_name="My App",
    user_id=user.id.to_bytes(8, 'big'),
    user_name=user.email,
    resident_key=ResidentKeyRequirement.REQUIRED
)

# Verification (after browser creates credential)
verification = verify_registration_response(
    credential=registration_response,
    expected_challenge=stored_challenge,
    expected_rp_id="example.com",
    expected_origin="https://example.com"
)
# Store: verification.credential_id, verification.credential_public_key

Session Security

# Secure cookie attributes
SESSION_COOKIE = {
    "key": "session_id",
    "httponly": True,   # no JS access
    "secure": True,     # HTTPS only
    "samesite": "Strict",  # CSRF protection
    "max_age": 86400,   # 24h
    "path": "/",
}

# Session fixation prevention — regenerate ID on login
async def login(user: User, request: Request):
    old_session = request.session.copy()
    request.session.clear()
    request.session.update(old_session)
    request.session["user_id"] = user.id  # new session ID issued

Gives 0 of the 12 instructions most auth identity skills give in ~1.3k tokens

Counted across 409 of the 410 authors here whose files we hold, read 2026-08-06

  • hash passwords with bcrypt or argon2in 53 of 409, across 43 files
  • use parameterized queriesin 47 of 409, across 39 files
  • load SECRET_KEY from environment variablesin 23 of 409, across 14 files
  • validate all input server-sidein 19 of 409, across 11 files
  • refresh access tokens before expiryin 17 of 409, across 9 files
  • store tokens in httponly cookiesin 17 of 409, across 16 files
  • store refresh tokens securelyin 16 of 409, across 6 files
  • validate webhook signatures before processingin 15 of 409, across 5 files
  • sanitize user inputsin 15 of 409, across 9 files
  • implement rate limiting on auth endpointsin 14 of 409, across 9 files
  • encrypt sensitive data at restin 13 of 409, across 10 files
  • validate uploaded file extensions and sizesin 12 of 409, across 5 files

Said here and by no other author read

  • include expiration and type in jwt payload
  • verify oidc id tokens using jwks
  • encrypt stored totp secrets

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.