What problem does it solve? Building a Kanban board view in a Glyvio plugin requires wiring together many framework-specific pieces: column state from a status entity, drag-and-drop persistence, search and sidebar filters, route registration, and menu entries. This Skill produces the complete, convention-compliant page implementation from a small set of entity parameters, eliminating manual boilerplate and framework rule violations. ## Core Features & Use Cases - Full Kanban Page Blueprint: Generates a SimpleKanbanPage subclass with column state, per-column counts, card cell design, and column header styling driven by the status entity. - Drag-and-Drop Persistence: Implements onColumnChange to queue entity updates when cards move between status columns. - Routing & Menu Registration: Produces the route class, registers it via routerService.loadRoutes, and adds a FullMenuPage sidebar item with icon and theme. - Use Case: You need a task board for a Task entity grouped by TaskStatus. Provide the entity name, plugin namespace, route path, and status field, and receive a ready-to-compile page file plus registration snippets. ## Quick Start Ask the agent to create a Kanban page for the Task entity in the my_plugin namespace at route /tasks-kanban grouped by the status field with an Administration menu entry.