ワンクリックで
building-ui-ux
// Use when implementing user interfaces or user experiences - guides through exploration of design variations, frontend setup, iteration, and proper integration
// Use when implementing user interfaces or user experiences - guides through exploration of design variations, frontend setup, iteration, and proper integration
IMMEDIATELY USE THIS SKILL when creating or develop anything and before writing code or implementation plans - refines rough ideas into fully-formed designs through structured Socratic questioning, alternative exploration, and incremental validation
Use this skill when faced with a difficult debugging task where you need to replicate some bug or behavior in order to see what is going wrong.
Use when you need to create a new custom skill for a profile - guides through gathering requirements, creating directory structure, writing SKILL.md, and optionally adding bundled scripts
Use this when you have completed some feature implementation and have written passing tests, and you are ready to create a PR.
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
ALWAYS load this skill if it is not already loaded, for ANY user query or conversation - establishes the Nori workflow, protected-branch check, operating mode, tone, and coding guidelines before any other work
| name | building-ui-ux |
| description | Use when implementing user interfaces or user experiences - guides through exploration of design variations, frontend setup, iteration, and proper integration |
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: