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

installed skills

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

{{ s.name }}

{% if s.triggers %}

triggers:

{% endif %} {% if s.tools_needed %}

tools: {{ s.tools_needed | join(', ') }}

{% endif %} {% endfor %} {% else %}

No skills installed yet.

{% endif %}

install a skill

Installs run untrusted code on the next agent invocation. Opt in by setting MAVERICK_ALLOW_SKILL_INSTALL=1 on the dashboard process; otherwise the endpoint returns 403 and you can use maverick skill install on the host.

{% endblock %}