Testing version only

This is not a production version. Do not use with real or sensitive data.

Authorize CLI access

A coding agent or CLI is requesting an access token tied to your account

{% if error %}
{{ error }}
{% endif %} {% if approved %}

Authorized.

You can return to your terminal — the CLI should pick up the token automatically.

{% if record and record.scopes_granted %}

Granted scopes: {{ record.scopes_granted | join(', ') }}

{% endif %}
{% elif denied %}

Denied.

The request was rejected. The CLI will receive an error.

{% elif record %}

Logged in as

{{ user.username }} ({{ user.role }} · tenant {{ user.tenant }})

{% if record.label %}

Label

{{ record.label }}

{% endif %}

Requested scopes

    {% for s in record.scopes_requested %}
  • {{ s }}
  • {% endfor %}
{% if user.role != 'admin' %}

Non-admin users cannot grant admin scopes; those will be silently dropped.

{% endif %}
{% endif %}

You can revoke this token later from your dashboard.