What problem does it solve?
Developers extending the Webiny admin application struggle to discover which React components, hooks, features, and DI abstractions exist and where to import them from, forcing manual searches across a large monorepo.
Core Features & Use Cases
- Abstraction Discovery: Lists 28 core admin abstractions (AdminConfig, createFeature, createProvider, Plugin, Routes, Notifications, and more) with exact import statements from the webiny/admin entry point.
- Source Mapping: Maps every abstraction to its source file in packages like @webiny/app-admin and @webiny/feature so developers can read exact interfaces and types before use.
- Use Case: When building a custom admin extension, a developer needs to register a React context provider and a command palette command; this catalog points directly to createProviderPlugin, Command, and CommandPalettePresenter with their import paths.
Quick Start
Ask the assistant to find the right Webiny admin abstraction and import path for registering a feature or provider in your extension.