Audit the codebase: list every file under src/auth/ that handles session tokens, summarise schema migrations since v3, and produce a single ordered list of the riskiest places to land a compliance fix.
Take the auth-file inventory and the migration summary; produce a single ranked list of compliance touchpoints. Each item gets a one-line rationale and an effort estimate. Stop when the list is < 12 items.
Take the auth-file inventory and the migration summary; produce a single ranked list of compliance touchpoints…
1. cookie_jar.rs — refresh-token rotation lands in the same write as session_secret; partition first. ~½ day
2. token_store.rs — v5 adds refresh_token_hash, but the read path still falls back to plaintext on cache miss. ~1 day
3. …