What problem does it solve? Building a new entity listing screen in a Glyvio plugin requires wiring together a route class, a SimpleGridPage view, query filters, card cell designs, and menu registration by hand. This Skill generates that entire grid page from a small set of parameters, following Glyvio's architectural rules. ## Core Features & Use Cases - Full grid page generation: Produces the route class, page state interfaces, card cell design, query builder constraints, search filter mapping, and entity tracking in one TypeScript file. - Routing and menu registration: Registers the new route via glyvio_core.routerService.loadRoutes and adds a sidebar menu item with FullMenuPage.fullMenuGroupAdd. - Card layout patterns: Guides selection among five card cell patterns (single row, two rows, status chip, avatar, KPI totals) based on the entity's fields. - Use Case: You need a /products-grid page for a Product entity with name/code search, a "Show Deleted" sidebar filter, and an entry under the Administration menu — provide the entity name, namespace, route path, and fields, and the Skill emits the complete page. ## Quick Start Ask the agent to create a grid page for the Product entity in the my_plugin namespace at route /products-grid with name as the title field and code as the subtitle.