sayaya-ui

Translate native HTML elements into sayaya-ui components for GWT-based projects.

Updated Apr 7, 2026
One-click install
npx skills add https://github.com/sayaya1090/handbook --skill sayaya-ui
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sayaya-ui
Source: https://github.com/sayaya1090/handbook/tree/main/.gemini/skills/sayaya-ui
Command: npx skills add https://github.com/sayaya1090/handbook --skill sayaya-ui

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a standardized approach for converting native HTML elements into sayaya-ui components, ensuring consistent styling and behavior across GWT-based frontends.

Core Features & Use Cases

  • Native HTML elements such as <select>, <input type="checkbox">, <input type="radio">, <input type="text">, <button>, <dialog>, and <progress> are mapped to corresponding sayaya-ui builders (SelectElementBuilder, CheckboxElementBuilder, RadioElementBuilder, TextFieldElementBuilder, ButtonElementBuilder, DialogElementBuilder, ProgressElementBuilder) to simplify UI composition.
  • Demonstrates usage patterns for common UI controls and provides guidance on styling, accessibility, and consistent API usage for front-end developers working within the sayaya-ui ecosystem.
  • Use cases include building forms, dashboards, and editors where a cohesive look-and-feel and predictable interactions are required.

Quick Start

Integrate the sayaya-ui components by replacing standard HTML elements with their sayaya-ui equivalents and ensure the GWT module inherits dev.sayaya.Ui.

Frequently Asked Questions about sayaya-ui

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I standardize native HTML elements in GWT frontend projects?

To standardize native HTML elements in GWT, translate them into sayaya-ui components using dedicated builders. This approach ensures consistent styling and predictable behavior across modules like dashboards and editors. It requires including libs.bundles.sayaya.web.

Can I use sayaya-ui to replace standard HTML form controls in a GWT module?

Yes, you can replace standard HTML form controls in a GWT module with sayaya-ui equivalents. Builders like SelectElementBuilder, CheckboxElementBuilder, and TextFieldElementBuilder map native elements to standardized widgets for cohesive UI composition.

What do I need to set up before using sayaya-ui components?

Before using sayaya-ui components, you must include libs.bundles.sayaya.web and declare the GWT module inheritance by adding <inherits name="dev.sayaya.Ui"/>. This environment setup ensures the UI builders function correctly within your project.

What is the best way to build consistent UI widgets for GWT-based dashboards?

The best way to build consistent UI widgets for GWT-based dashboards is mapping native HTML elements to sayaya-ui builders. This standardizes frontend UI, providing predictable interactions and a cohesive look-and-feel across your application.

Does sayaya-ui support mapping dialog and progress elements for web interfaces?

Yes, sayaya-ui supports mapping dialog and progress elements through DialogElementBuilder and ProgressElementBuilder. These builders convert native HTML tags into standardized sayaya-ui components for consistent web interface behavior.

Why do my sayaya-ui components not render correctly in my GWT project?

If sayaya-ui components do not render correctly, verify your GWT module declares <inherits name="dev.sayaya.Ui"/> and that libs.bundles.sayaya.web is included. Missing these prerequisites prevents the UI builders from functioning properly.