{% extends "base.html" %} {% block title %}Maverick · overview{% endblock %} {% block content %} {% if counts.total == 0 %}

Start your first goal

Maverick will plan a sub-agent swarm, run it under a budget cap, and stream results back here.

Or open the chat, see available tools, or browse skills.

{% else %}
{{ counts.total }}
total goals
{{ counts.active }}
active
{{ counts.done }}
done
{{ counts.blocked }}
blocked

recent goals

{% for g in goals %} {% endfor %}
idstatustitleupdated
#{{ g.id }} {{ g.status }} {{ g.title }} {{ g.updated_at | datetime }}

facts

{% if facts %} {% for k, v in facts.items() %}

{{ k }}: {{ v }}

{% endfor %} {% else %}

No facts yet. Set one with maverick fact <key> <value>.

{% endif %}

top skills

{% if skills %} {% for s in skills %}

{{ s.name }} · {{ s.triggers|length }} trigger(s)

{% endfor %} {% else %}

No distilled skills yet. They appear after the agent finishes its first multi-step goal.

{% endif %}

View spend

{% endif %} {% endblock %}