skills/enhance-frontend/SKILL.md
Enhance frontend to pixel-perfect standards with mobile responsiveness and industry-leading design quality
npx skillsauth add thoreinstein/agents enhance-frontendInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Elevate frontend quality to pixel-perfect, mobile-responsive, accessible standards.
clamp() for responsive sizingBefore:
.button {
padding: 10px 15px;
background: blue;
color: white;
}
After:
.button {
/* Spacing on 8px grid */
padding: 12px 24px;
/* Color system tokens */
background: var(--color-primary-600);
color: var(--color-white);
/* Typography */
font-size: 1rem;
font-weight: 500;
line-height: 1.5;
/* Touch target */
min-height: 44px;
/* Visual polish */
border-radius: 8px;
transition: background-color 150ms ease;
/* Focus state */
&:focus-visible {
outline: 2px solid var(--color-primary-400);
outline-offset: 2px;
}
/* Hover state */
&:hover {
background: var(--color-primary-700);
}
/* Disabled state */
&:disabled {
background: var(--color-neutral-300);
cursor: not-allowed;
}
}
Begin by auditing the current frontend state against the enhancement areas before making changes.
testing
Consult the whizz-mind knowledge base for documentation and answers. Use when the user asks questions that might be answered by stored documentation or when explicitly asked to check whizz-mind.
development
Comprehensive web quality audit covering performance, accessibility, SEO, and best practices. Use when asked to "audit my site", "review web quality", "run lighthouse audit", "check page quality", or "optimize my website".
testing
Ultra-deep multi-perspective analysis for complex architectural and strategic decisions requiring systematic reasoning across technical, business, user, and system perspectives
data-ai
Optimize for search engine visibility and ranking. Use when asked to "improve SEO", "optimize for search", "fix meta tags", "add structured data", "sitemap optimization", or "search engine optimization".