Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Auth Law

ASecurity

The Atelier Auth Law — production-hardened session architecture (rotating refresh tokens, families, grace window, silent refresh, sliding window) plus the anti-patterns that corrupt auth. Load before designing or touching ANY authentication code.

2 stars
0 votes
0 copies
0 views
Added 9/22/2026
ai-agentsgosecurity

Works with

cli

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add INERATE/atelier --skill auth-law --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Auth Law?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Auth Law
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/inerate-auth-law/badge)](https://www.skillsdirectory.com/skills/inerate-auth-law)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: auth-law
description: The Atelier Auth Law — production-hardened session architecture (rotating refresh tokens, families, grace window, silent refresh, sliding window) plus the anti-patterns that corrupt auth. Load before designing or touching ANY authentication code.
---

# Auth Law

Distilled from a production system that was broken repeatedly by well-meaning
"improvements" and then hardened. If you are about to "improve" auth, your
improvement is probably in the anti-pattern list. A genuinely logged-in user
must NEVER be bounced to login by normal use.

This law covers session/token architecture only. Injection, XSS, CSRF,
tenant isolation, rate limiting, and everything else a request path needs is
[[security-law]] — load both for any auth-adjacent endpoint.

## The six guarantees

1. No unexpected bounce to login — ever, on any click or cross-app navigation.
2. Token expiry is invisible: new access tokens issue **silently**.
3. **No polling.** One-shot self-rescheduling timer + on-demand refresh only.
4. Auth-layer-first: silent refresh → session check → only then redirect.
5. Long sessions survive: multi-hour live streams / videos never drop.
6. Sliding window: any visit within 30 days extends 30 days; only true
   inactivity forces re-login.

## Token model

| Thing | Lifetime | Storage |
|-------|----------|---------|
| Access JWT | 15 min | JS-readable cookie; `Authorization: Bearer` |
| Refresh token | 30 days, **single-use, rotates** | HttpOnly cookie + SHA-256 hash in DB |
| Session | 30 days | DB row (truth) + cache |
| expires_at / user cookies | 30 days | JS-readable (schedule timer / routing); not credentials |

Cookie domain `.yourdomain.com` when multiple subdomains share one session
(central "accounts.\*" auth, Google-style) — chosen at intake vs per-app auth.

## Rotation, families, grace

Every refresh consumes the token and issues a new one. All tokens from one
login share a `token_family_id`. A rotated-away token presented **outside** the
**60-second grace window** = assumed theft → revoke the family. Inside the
window → return the already-issued successor (absorbs tab races). The grace
window is load-bearing; the single-flight mutex is the real fix.

**Golden rule: ONE refresh in flight per app.** Every trigger (one-shot timer
~2min before expiry, 401 recovery, tab focus, layout mount) funnels through a
single module-level in-flight promise/mutex.

## Login flows (all end in the SAME token issuance)

Password (+ optional TOTP 2FA before tokens) · OAuth via state-cookie + JSON
callback into `user_identities` · Passkeys/WebAuthn in `user_passkeys` ·
Turnstile/captcha on public forms. Never a parallel session mechanism.
Every login/refresh writes an activity log (device, IP) — Google-style
auditable sessions; owner console can list + revoke sessions per user.

## Anti-patterns (each one has actually corrupted production auth)

1. ❌ Interval-based refresh polling.
2. ❌ A second refresh caller outside the mutex.
3. ❌ Two AuthProviders mounted on one route (nested layouts = passthroughs).
4. ❌ Zustand/Redux/etc. for auth state — cookies + one AuthContext per app.
5. ❌ Redirect to /login on missing access token before silent refresh + session check.
6. ❌ Skipping refresh because JS cookies are gone (HttpOnly may still be valid).
7. ❌ Family revocation broadened to "revoke all".
8. ❌ Shrinking the grace window to "harden" security.
9. ❌ Casually changing token lifetimes.

## Shipping checklist

- [ ] No polling; no unmutexed refresh; one provider per app
- [ ] Redirect is the LAST branch; typecheck all affected apps
- [ ] OAuth/passkey/2FA terminate in the same issuance
- [ ] All four sliding-window scenarios verified
- [ ] Sessions auditable + revocable from the console

Attribution

INERATEINERATE
View sourceMore from INERATE →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →