What problem does it solve?
This guide helps developers implement and extend the Pagoda/AirOne frontend via plugins. It covers the plugin system, where to place code, and how to integrate plugin-defined routes, entity page overrides, and validation.
Core Features & Use Cases
- Frontend plugin system overview: location of plugin code under frontend/src/plugins and frontend/plugins, and how plugins are discovered by the host.
- Host integration & routing: how AppBase.tsx extracts routes, builds plugin maps, and wires custom routes into AppRouter.
- Supported extension points: entity page overrides (e.g., entry.list), plugin type definitions, and Zod-based validation patterns.
- Development workflow: steps from creating a plugin to static analysis, tests, and build verification.
- These details provide practical examples for standard plugin development tasks.
Quick Start
Create a minimal plugin under frontend/plugins/ that exports a Plugin object and is wired into the host.