What problem does it solve? Building an entity picker in a Glyvio plugin where a single text line per result is not enough to distinguish records (e.g., products needing SKU, name, and price) requires wiring routes, query builders, table columns, row cells, chips, and textfield wrappers by hand. This Skill generates the complete TableEntityModal implementation from a small set of input parameters. ## Core Features & Use Cases - Table-rendered entity picker: Generates a modal extending TableEntityModal with configurable table columns, row cells, selection chips, and app bar, rendered as table rows instead of list cells. - Autocomplete and select textfield wrappers: Produces single, multiple, and select-style textfield design classes wired to the modal route for inline dropdown or full-screen search. - Query and filter configuration: Sets up query builders, autocomplete ILike filters, and select filters against the target entity's fields. - Use Case: You need a Product selector in an edit form where users must compare SKU, name, and price before picking. Provide the entity name, plugin namespace, route path, and column definitions, and the Skill emits the modal file, route registration, and textfield wrappers. ## Quick Start Ask the agent to create a table entity modal for the Product entity in the my_plugin namespace at route /product-entity-table with code, name, and price columns.