Skip to main content
Accounts are the human side of access control. An accounts provider owns user records and the login flows that sign a person in — password forms, invites, first-run owner creation, and browser sign-in — and mints the session tokens those flows return. It is an opt-in plugin kind: a server with no accounts provider still authenticates API keys, it just has no human login.

Accounts and identity are two kinds, one seam

The platform keeps two auth-related plugin kinds with one purpose each:
  • An identity provider answers a single question — who is this token? — for whatever credential arrives: an API key, an issuer-minted JWT, or a session token. It validates and returns an identity; it mints nothing on a human’s behalf.
  • An accounts provider owns human accounts and the login flows that create sessions for them. Crucially, an accounts provider is an identity provider: the session tokens it mints are validated back through the same validate_token seam every other credential passes through. Installing an accounts provider never adds a second enforcement pathway — the request gate stays the one gate.
Splitting the kinds this way keeps each provider single-purpose: a pure identity provider (an API-key store, an issuer verifier) never grows login UI, and an accounts provider never becomes a parallel authorization path.

The session model

A login flow returns an opaque session token — a random string the server mints, with no parseable contents. The recommended prefix is tai-sess-, so a session token is distinguishable at a glance from an sk- API key, but the gate never parses either; it hands the whole token to a provider to resolve. Sessions are provider-owned and follow the same one-way-hashing discipline as API keys: only a hash of the token is stored, the plaintext is returned to the browser once, and a session carries a TTL so it expires without an explicit logout. Logout revokes the session server-side; a revoked or expired token resolves to no identity and the request is denied like any other bad credential.

Keys are owned credentials

With accounts in play, an API key is no longer a free-standing secret — it is a credential owned by an account. The mint path records the owning account on the key, and the request gate enforces that ownership on every call:
  • A key can never out-scope its owner. A key minted by a non-admin is attenuated to a subset of the owner’s own authority; a mint that asks for more than the owner holds is rejected at mint time.
  • The owner’s authority is enforced through the key on every request, not just captured once at mint. This is what makes attenuation hold over time: when an admin changes an owner’s role, or disables the owner, the owner’s live policy changes and every key that owner holds is re-evaluated against the new policy on its next request. A key does not carry a frozen snapshot of what its owner could once do.
Only an admin can mint an ownerless key — the headless, machine-to-machine credential that belongs to no human account. That keeps the automation path alive while making the common case (a key tied to a person) the default. See API keys for provisioning and the ownership cap.

Roles are policy templates

An account’s authority comes from a role — a named template of policy that an admin applies to the account. Applying a role copies its policy body into the account’s enforced policy; changing an account’s role swaps that body. Roles are the human-facing shorthand over the jq policy model: an editor role and a viewer role differ by the jq condition their template carries — for example, a viewer’s condition admits reads but denies a tool run — not by the breadth of scopes. Because the role sets the owner’s live policy, moving an owner from editor to viewer immediately attenuates every key that owner holds, without touching the keys themselves.

First run and invites

A fresh deployment has no accounts. The login surface reports a bootstrap state, and the first sign-in creates the owner account — the initial admin — through a one-time owner-creation flow that closes the moment the owner exists. Concurrent first-run attempts are resolved so exactly one owner is ever created. After that, an admin grows the user set by invite: the admin creates an account and issues an invite, and the invited person follows an invite link to set their own password and activate the account. Invites are single-use and time-bounded — an expired or already-accepted invite is refused.

What the users-admin page governs

The Studio’s users-admin page manages only human accounts — the usr-* principals an accounts provider owns: create a user, invite them, apply a role, disable an account. It deliberately does not list non-human principals, because they are not accounts:
  • sk-* — machine API keys — are governed on the API keys surface.
  • oidc:* — subjects that signed in through a browser OIDC flow — and idp:* — subjects behind issuer-minted machine JWTs — are governed by the raw access-control policy routes.
So an operation that looks like “disable this admin” is a different action depending on the principal type: disabling a human owner is a users-page action, while disabling an OIDC-provisioned admin is a policy-route action against that oidc:* principal. One principal type, one governing surface.

See also