Agent skill
Nexus UI Architect
Especialista en Diseño Responsivo (Mobile First / Desktop Adaptive) y UX para Platform AI Solutions. Define el estándar visual y estructural.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/nexus-ui-architect-adriangmrraa-multiagents-platform
SKILL.md
🎨 Nexus UI Architect
Misión
Garantizar que cada vista de Platform AI Solutions funcione perfectamente tanto en dispositivos móviles (iPhone SE/14 Pro) como en monitores Desktop (1080p/4k), manteniendo la estética "Premium Deep Tech" de Nexus.
🛠️ Herramientas y Stack
- Framework: React 18 + Vite.
- Styling: Tailwind CSS (Strict Utility-First).
- Iconografía:
lucide-react. - Animaciones: CSS Nativo (
animate-pulse,animate-fade-in).
📐 Estrategia de Diseño Responsivo
1. Mobile First (Base)
Diseñamos pensando en pantallas verticales estrechas.
- Container:
w-full px-4. - Tipografía: Textos legibles (min 14px), H1 grandes pero ajustados.
- Touch Targets: Botones de mínimo 44x44px.
- Navegación: Menú hamburguesa o Bottom Bar para mobile. Sidebar colapsable.
2. Puntos de Quiebre (Breakpoints)
md:(768px): Tablets. Pasar de 1 col a 2 cols.lg:(1024px): Laptops. Mostrar Sidebar fija. Main Layout 3-5 cols.xl:(1280px): Desktop. Layout espacioso.
3. Patrones Comunes de Adaptación
Grillas
// Mobile: 1 columna | Desktop: 4 columnas
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4">
Elementos Ocultos
// Solo visible en mobile
<div className="block lg:hidden">...</div>
// Solo visible en desktop
<div className="hidden lg:block">...</div>
Modales y Drawers
- Mobile: Full screen o Bottom Sheet.
- Desktop: Dialog centrado con backdrop blur.
📋 Checklist de Auditoría UI (Por Página)
- Overflow Horizontal: Verificar que nada rompa el ancho de la pantalla en mobile. (
overflow-x-hiddenen root). - Alturas Fijas: Evitar
h-screenen mobile por las barras del navegador. Usardvhomin-h. - Legibilidad: Contraste suficiente en textos sobre fondos oscuros/glass.
- Espaciado: Márgenes laterales (
px-4opx-6) para que el contenido no pegue al borde. - Interacción: Estados
:hoversolo en desktop.:activepara feedback táctil en mobile.
💾 Snippets de Oro (Nexus Design System)
Glass Card (Universal)
<div className="bg-white/5 backdrop-blur-xl border border-white/10 rounded-2xl p-6 shadow-xl">
...
</div>
Botón de Acción Principal (Responsive)
<button className="w-full lg:w-auto bg-accent hover:bg-accent-hover text-white px-6 py-3 rounded-xl font-bold transition-all active:scale-95 shadow-lg shadow-accent/20">
Acción
</button>
Contenedor de Página Estándar
<div className="min-h-screen bg-gray-900 text-white p-4 lg:p-8 overflow-x-hidden">
<div className="max-w-7xl mx-auto">
{/* Contenido */}
</div>
</div>
🚨 Protocolo de Corrección
- Analizar: Abrir la vista y simular viewport mobile (375px).
- Identificar Roturas: Textos cortados, scroll horizontal indeseado, botones inalcanzables.
- Aplicar Clases Utilitarias: Usar
classNamede Tailwind para corregir (flex-colen mobile,flex-rowen desktop). - Verificar: Probar en Desktop para asegurar que no se rompió la experiencia grande.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?