Use when implementing user interfaces or user experiences - guides through exploration of design variations, frontend setup, iteration, and proper integration
53
58%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./.agency/plugins/nori/skills/building-ui-ux/SKILL.mdThis 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:
f9f2007
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.