{% extends "base.html" %} {% block title %}plugins ยท Maverick{% endblock %} {% block content %}

plugins

{% if error %}

{{ error }}

{% endif %}

{% if allowlist_active %} [plugins].enabled is set in ~/.maverick/config.toml — only listed plugins load. {% else %} No [plugins].enabled allowlist; pip-installed plugins load by default. Set the allowlist in config.toml to lock down. {% endif %}

{% for label, items in groups.items() %}

{{ label }}

{% if items %} {% for p in items %} {% endfor %}
namemodulestatus
{{ p.name }} {{ p.module }} {{ 'enabled' if p.enabled else 'disabled' }}
{% else %}

No {{ label }} plugins installed.

{% endif %}
{% endfor %}

install a plugin

Plugins are regular Python packages declaring maverick.tools, maverick.channels, maverick.skills, or maverick.personas entry points. Install with:

pipx inject maverick-agent <package-name>

Then add the plugin's name to [plugins].enabled if your install uses an allowlist.

{% endblock %}