Name: sb-access-token (and sb-refresh-token).
Purpose: keep you signed in. Without it, you'd have to log in on every page load. The cookies are HTTPOnly and Secure (the browser cannot read them via JavaScript, they only travel over HTTPS).
Lifespan: the access token expires hourly; the refresh token expires after prolonged inactivity. Both are cleared when you sign out.