docs/developer/plugins.md
Most people should start with the practical guide: Create a Small Plugin.
Plugin architecture and source-linked internals live in DeepWiki for Agent Zero. This page stays intentionally small so the repository does not maintain a second plugin manual.
| Goal | Start here |
|---|---|
| Build your first plugin | Create a Small Plugin |
| Understand how plugins are loaded | DeepWiki |
| Decide what is safe to publish | Sharing and Safety |
| Contribute a plugin upstream | Contributing Guide |
A local plugin usually lives here:
/a0/usr/plugins/<plugin_name>/
├── plugin.yaml
├── README.md
└── webui/
The smallest useful plugin.yaml looks like this:
name: my_plugin
title: My Plugin
description: A short sentence that explains what it does.
version: 1.0.0
Ask Agent Zero to keep the first version small. A tiny plugin that does one visible thing is easier to test, review, and share.
Before publishing a plugin:
README.md;LICENSE;For Plugin Index submission, use the current instructions in the
agent0ai/a0-plugins repository.