{% extends "base.html" %} {% block title %}permissions · Maverick{% endblock %} {% block content %}

what maverick can do

{% if perm.error %}

{{ perm.error }}

{% endif %} {% if perm.sandbox_warning %}

⚠ {{ perm.sandbox_warning }}

{% endif %}

Everything the agent is currently allowed to do. Disabling a tool here takes effect on the next goal — it writes a dashboard-owned override file, never your config.toml.

tools

{% if perm.tools %} {% for t in perm.tools %} {% endfor %}
toolstatusaction
{{ t.name }} {% if t.enabled %}enabled {% else %}disabled{% endif %} {% if t.enabled %} {% else %} {% endif %}
{% else %}

No tools registered.

{% endif %}

capabilities & limits

computer-use{% if perm.capabilities.computer_use %}on{% else %}off{% endif %}
browser{% if perm.capabilities.browser %}on{% else %}off{% endif %}
web search{% if perm.capabilities.web_search %}on{% else %}off{% endif %}
sandbox{{ perm.sandbox.backend or 'local' }}
network policy{{ perm.network }}
budget / task${{ perm.budget.max_dollars if perm.budget.max_dollars is defined else '?' }} · {{ perm.budget.max_wall_seconds if perm.budget.max_wall_seconds is defined else '?' }}s

channels

{% if perm.channels %} {% for c in perm.channels %} {{ c.name }} {% endfor %} {% else %}

No channels enabled — nothing is reachable from the network.

{% endif %}

your data

Your prompts and tool outputs are sent to: {% if perm.providers %}{{ perm.providers | join(', ') }}{% else %}(no provider configured){% endif %}. Nothing else.

{% endblock %}