UI/UX prototyping with mock data, component states, visual debugging, and pre-delivery polish. Use when building UI, creating mockups, or prototyping interfaces
التثبيت
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
UI/UX prototyping with mock data, component states, visual debugging, and pre-delivery polish. Use when building UI, creating mockups, or prototyping interfaces
author
subinium
user-invocable
true
UI/UX Mockup & Iteration
Mock Data Generation
Realistic Test Data
Always generate realistic mock data that exposes edge cases:
// Use faker or hand-craft realistic dataconstMOCK_USERS: User[] = [
{ id: '1', name: 'Kim Minjun', email: 'minjun@example.com', avatar: null, role: 'admin' },
{ id: '2', name: 'A Very Long Username That Might Break Layout', email: 'long@example.com', avatar: '/avatar.jpg', role: 'user' },
{ id: '3', name: '', email: 'empty-name@example.com', avatar: null, role: 'user' }, // empty name edge case
];
// Include edge cases in every mock dataset:// - Empty strings / null values// - Extremely long text// - Special characters / unicode / emoji// - Zero items, one item, many items (0/1/N)// - Dates at boundaries (midnight, timezone edge, future dates)// - Large numbers / currency formatting