/account
The Account page manages your profile, teams, API and agent keys, and email alerts.
Profile
Your avatar, name, and email come from your sign-in; your title (e.g. “Staff ML Engineer”) is editable and saved as you type.Teams
Projects belong to a team; owners and admins manage members and invitations. Expand a team to manage member roles (admin, member, read-only), invite by email, and see pending invites. A team’s only admin must promote someone else before stepping down, and a team’s projects must be deleted or re-assigned before the team can be deleted.API keys
Named keys authenticate the CLI, the MCP server, and GitHub Actions — passed as a Bearer token. Keys are shown once at creation (Remyx stores only a hash and cannot recover the plaintext) and can be scoped, revoked, or deleted at any time. Create one key per machine or workload so you can revoke them independently.Key types
Creating a key
- Click + Create API key and name it (e.g.
laptop-cli,ci-experiments). - Pick an expiry: Never expires, 30 days, 90 days, or 1 year.
- Choose access: Full access, or Limited — pick per feature with per-category read/write grants (GitHub-style; “write” includes the matching read). One-click presets — Read-only, Outrider setup, Experiment CI, Digest bot — fill the grid for common workloads. See API Scopes for the catalog.
- Copy the key from the show-once modal and use it as
Authorization: Bearer <key>.
Managing keys
Each row shows the key’s access summary, created / last-used / expiry dates, and its display id (rmxu_…last4). Revoke disables a key immediately across the REST API, CLI, and MCP server — it stays listed for audit until you Delete it. To rotate, create a new key and revoke the old one; keys are immutable once created.
Agent keys
Agent keys (rmxa_) are created and rotated by the agent’s Action for each repo when you provision an agent — you don’t mint them by hand. Their scopes are managed by provisioning and can’t be edited (rename only).
Alerts
Your Inbox is the source of truth; alerts arrive by email, and each teammate sets their own:Danger zone
Delete this account — this deletes everything, immediately:- Every API and agent key is revoked — agents stop mid-loop.
- All connected integrations are disconnected.
- Your interests, projects, and history are removed.
DELETE to confirm. It cannot be undone.
Security best practices
- One narrowly-scoped key per use. Grant only the scopes a tool needs; don’t reuse one broad key everywhere.
- Rotate by replacement — create a new key, revoke the old.
- Never commit tokens. Use environment variables,
.envfiles (with a loader), or CI secret stores. - Keys authenticate as you: any action taken with a key is attributed to your account, gated by that key’s scopes.
Related
API Scopes
Scope catalog, presets, and key prefixes
Agents
What provisions and uses agent keys
Connectors
Model-provider keys live there, not here
CLI Authentication
Set up the CLI with a personal key