What problem does it solve? Building a new entity listing screen in a Glyvio plugin requires wiring together a page class, route definition, query builder, sidebar filters, and menu registration by hand, with several non-obvious framework rules that silently break the UI when violated. ## Core Features & Use Cases - Full Page Scaffolding: Generates a complete SimpleTablePage subclass with typed state interfaces, route class, column definitions, row cell mapping, and delete/new actions. - Routing & Menu Registration: Registers the route via routerService.loadRoutes and adds a sidebar menu item through FullMenuPage.fullMenuGroupAdd. - Framework Rule Enforcement: Encodes Glyvio constraints such as interpolation prefixes ($S, $D, $N, $T), EventReturn semantics, and the constant column-count rule for table layouts. - Use Case: Ask the agent to create a table page for a Product entity at /products with name/code columns and a status sidebar filter, and receive a ready-to-register TypeScript view file. ## Quick Start Ask the agent to create a Glyvio table page for your entity, providing the entity name, plugin namespace, route path, columns, search fields, and menu group.