What problem does it solve?
Provides a single authoritative workflow and conventions for creating, extending, and publishing Agent Zero plugins so developers avoid inconsistent plugin layouts, broken imports, race conditions in UI components, and failed index submissions.
Core Features & Use Cases
- Manifest enforcement: Requires a valid plugin.yaml at runtime and guides repo-root manifests for community plugins to ensure discoverability.
- Frontend & Store patterns: Prescribes store-gating templates and separate store modules to prevent race conditions and maintain consistent notification handling.
- Backend & lifecycle hooks: Documents hooks.py, execute.py, import rules, and environment targeting for safe install/update/uninstall operations.
- Use Case: Build a local plugin that adds a settings modal, a backend API handler, and an install hook that installs runtime dependencies while preserving safe execution boundaries.
Quick Start
Create a local plugin named my_plugin under /a0/usr/plugins with a plugin.yaml, webui/config.html for settings, and a hooks.py install hook.