What problem does it solve? Writing browser UIs in C# requires a component model, layout system, and API knowledge that plain HTML/JS does not provide; this Skill supplies the Tesserae toolkit's component factories, fluent configuration patterns, and per-component API references so generated code compiles correctly under the Transpose C#-to-JavaScript compiler. ## Core Features & Use Cases - Component factories and fluent configuration: Create buttons, inputs, dialogs, charts, and lists via UI. factory methods and chain fluent modifiers like .Primary(), .OnClick(...), and .Disabled(). - Layout with Stack and Grid: Compose pages using flexbox Stack/HStack/VStack and CSS-Grid Grid containers, plus sizing, spacing, and alignment extensions (.W(), .Grow(), .Margin()) that work on any IComponent. - Per-component reference library: Over a hundred references/<slug>.md files document each component's factory signature, key methods, and examples, covering inputs, navigation, charts, overlays, chat, and theming. - Use Case: When asked to build a settings page in a Tesserae app, the Skill produces a VStack containing Toggle, Dropdown, and Button components with correct fluent calls, and consults references/dropdown.md for exact API details. ## Quick Start Use the tesserae skill to build a C# settings panel with a toggle, a dropdown, and a primary save button laid out in a vertical stack.