Loading...
Loading...
Found 1,931 Skills
Build generative UI apps with OpenUI and OpenUI Lang — the token-efficient open standard for LLM-generated interfaces. Use when mentioning OpenUI, @openuidev, generative UI, streaming UI from LLMs, component libraries for AI, or replacing json-render/A2UI. Covers scaffolding, defineComponent, system prompts, the Renderer, and debugging OpenUI Lang output.
Senior UI/UX Engineer. Architect digital interfaces overriding default LLM biases. Enforces metric-based rules, strict component architecture, CSS hardware acceleration, and balanced design engineering.
Delay loading JavaScript for less important parts of the page to improve Time to Interactive.
Pass JSX elements to components through props for flexible, reusable component composition.
Stream server-rendered HTML to the client in chunks for faster Time to First Byte and First Contentful Paint.
Render your application's UI entirely on the client using JavaScript.
Enforce separation of concerns by separating the view from the application logic.
Create multiple components that work together to perform a single task by sharing implicit state.
Pass reusable logic down as props to components using Higher Order Components.
Add functionality to objects or classes without inheritance using mixins.
Share a single global instance throughout your application to manage global state.
[Pragmatic DDD Architecture] Guide for Server and Client components in Next.js App Router. Use when creating any .tsx file under presentation/components/, pages, or layouts — also when deciding whether to add "use client" to an existing component, passing data from a Server Component to a Client Component, composing Server content inside a Client slot, handling the VO serialization boundary, creating Compound Components, separating logic for Mobile/Desktop screens, or styling with `cva` and `cn`. Covers: Server vs Client decision, async Server Component patterns, creating getSession callbacks for Use Cases, Client Component restrictions, toBranded() boundary pattern, children slot composition, and props interface rules. Depends on 'use-cases' and 'server-actions'.