website-redesign

Restyle a live website to a target brand while preserving all pages, fields, and interactions.

Updated Aug 21, 2026
One-click install
npx skills add https://github.com/TylerSimons1127/vibe --skill website-redesign-tylersimons1127
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: website-redesign
Source: https://github.com/TylerSimons1127/vibe/tree/main/skills/website-redesign
Command: npx skills add https://github.com/TylerSimons1127/vibe --skill website-redesign-tylersimons1127

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Redesigning an existing live site often fails because the agent rebuilds only the landing page in the new style and silently drops every other page, field, and interaction. This Skill makes full-fidelity carry-over of all content and features the mandatory first step before any CSS is written. ## Core Features & Use Cases - Full Source Extraction: Walks every route, modal, drawer, and detail page with a real browser, parsing embedded Next.js/React data payloads instead of guessing values. - Brand Token Matching: Loads exact colors, typography, and components from target brand templates (Apple, Stripe, Linear) and applies them without recomposing the app's surface type. - Verification & Slop Audit: Verifies the result with headless browser DOM probes, computed filter counts, responsive tier checks, and a 10-tell anti-slop audit. - Use Case: A user asks to redesign a live leads dashboard in the style of Apple's design language. The Skill extracts all 15 leads and their 13-field detail views, restyles the Monitor surface with Apple's palette, and verifies filters, drill-in, and responsive layouts in a real browser. ## Quick Start Redesign the live site at this URL in the style of Stripe while keeping every page, field, and interaction intact.

Frequently Asked Questions about website-redesign

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

FAQPage Schema
How do I redesign a live website without losing features?▼

Extract the full source first: dump the landing page with a real browser, walk every route and detail page, and parse embedded Next.js data payloads. Build a field and feature checklist, then restyle against it and report carry-over explicitly.

How to restyle a dashboard to match Apple or Stripe design?▼

Load the target brand's template with exact colors, typography, and components, then apply those tokens to the app's existing composition. Keep the Monitor surface type, use monochrome plus one accent, and avoid marketing heroes on dashboards.

Can I redesign a React or Next.js app instead of a static site?▼

Yes, the output framework must match the source. If the input is a TSX/JSX or Next.js codebase, scaffold the same stack (Vite, React, Tailwind, shadcn) and restyle the existing surfaces rather than collapsing everything into one HTML file.

What if the browser is blocked during website extraction?▼

Read the source HTML and scripts statically to enumerate every element, route, and handler. Verify logic by executing the inline script under a mock DOM in Node, asserting row counts, filter results, and sort order without a visual render.

Why do AI website redesigns drop pages and data?▼

Agents typically rebuild only the visible landing screen and skip detail pages, modals, and tabs invisible on first paint. The fix is clicking through every route and parsing embedded data blobs before writing any CSS.

How do I verify a redesigned page without screenshots?▼

Drive a headless browser and probe the DOM: check row counts against parsed data, test filter clicks and drill-in behavior, and use CDP device metrics overrides for responsive tiers. Null-guard every getComputedStyle call to avoid aborted evaluations.