redesign-existing-projects

Audits existing frontend code for generic UI patterns and applies targeted visual upgrades without rewrites.

3|Updated Jul 17, 2026
One-click install
npx skills add https://github.com/Javeria-Javaid/Alkhidmat_foundation_lahore --skill redesign-existing-projects-javeria-javaid
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: redesign-existing-projects
Source: https://github.com/Javeria-Javaid/Alkhidmat_foundation_lahore/tree/main/Users/Javeria/Desktop/Alkhidmat_foundation_lahore/.agents/skills/redesign-existing-projects
Command: npx skills add https://github.com/Javeria-Javaid/Alkhidmat_foundation_lahore --skill redesign-existing-projects-javeria-javaid

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Existing websites and apps often look generic, AI-generated, or visually flat, with weak typography, cliche layouts, and missing interactive states. This Skill audits the current frontend code and applies targeted design fixes while preserving the existing architecture, routing, and behavior. ## Core Features & Use Cases - Design Audit: Systematically checks typography, color, layout, interactivity, content, components, iconography, and code quality for generic patterns. - Targeted Upgrades: Applies prioritized fixes such as font swaps, palette cleanup, hover states, spacing corrections, and loading/empty/error states without framework migrations. - Use Case: A landing page built with Tailwind uses Inter everywhere, three equal feature cards, and a purple gradient. The Skill diagnoses these patterns and replaces them with a distinctive font pairing, an asymmetric grid, and a single desaturated accent color. ## Quick Start Audit my existing website's UI and apply premium design improvements without changing the framework or breaking functionality.

Frequently Asked Questions about redesign-existing-projects

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I redesign an existing website without rewriting it?▼

Scan the codebase to identify the framework and styling method, run a structured design audit covering typography, color, layout, and states, then apply targeted fixes in priority order. Start with a font swap and palette cleanup for the highest impact at the lowest risk.

How to make a website look less AI-generated?▼

Replace default fonts like Inter with distinctive options such as Geist or Outfit, remove purple-blue gradients, avoid three equal card columns, and add hover, loading, empty, and error states. Use one desaturated accent color and consistent gray tints.

Does this redesign approach work with Tailwind CSS projects?▼

Yes, it works with Tailwind, vanilla CSS, styled-components, and other styling methods. Check the Tailwind version (v3 vs v4) before modifying config, and keep all changes within the project's existing styling system.

What are the limitations of UI redesign without rewrites?▼

This approach does not cover framework migrations, information-architecture changes, or product-scope expansion. It preserves existing behavior, routing, and data flows, so structural UX problems requiring new architecture need a different effort.

Why does my layout break on mobile Safari with 100vh?▼

Using height: 100vh causes layout jumping on iOS Safari because the viewport height changes with the browser chrome. Replace it with min-height: 100dvh, which accounts for dynamic viewport sizing on mobile browsers.