{% extends "base.html" %} {% block title %}plugins ยท Maverick{% endblock %} {% block content %}
{{ error }}
{% 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 %}
| name | module | status |
|---|---|---|
{{ p.name }} |
{{ p.module }} | {{ 'enabled' if p.enabled else 'disabled' }} |
No {{ label }} plugins installed.
{% endif %}
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.