microsoft/building-ui-ux
Use when implementing user interfaces or user experiences - guides through exploration of design variations, frontend setup, iteration, and proper integration
npx skills add https://github.com/microsoft/FluidFramework --skill building-ui-ux
<required>
*CRITICAL* Add the following steps to your Todo list using TodoWrite:
</required>
This skill guides you through implementing user interfaces and experiences with an emphasis on exploration, feedback, and proper integration.
Core principle: Explore variations, iterate with feedback, ensure proper integration.
Announce at start: "I'm using the Nori Building UI/UX skill to implement your interface."
Ask the user:
"Would you like to:
If multiple variations:
For web projects:
Check if the dev server is running:
npm run dev, npm start)http://localhost:3000 or similar)For other UI types:
When implementing multiple variations:
Stack variations in a way that makes comparison easy. For web UIs, this typically means:
Example for React:
export default function UIExploration() {
return (
<div className="ui-exploration">
<section className="variation">
<h2>Variation 1: Minimalist</h2>
<MinimalistLogin />
</section>
<section className="variation">
<h2>Variation 2: Modern Gradient</h2>
<ModernLogin />
</section>
<section className="variation">
<h2>Variation 3: Classic Corporate</h2>
<ClassicLogin />
</section>
</div>
);
}
When implementing a single design:
Present to user:
Iterate based on feedback:
Ensure proper integration:
Common integration points to check:
Take microsoft/building-ui-ux from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.