Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.

0 stars
0 forks
TypeScript
2 views

SKILL.md


name: frontend-design description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics. license: Complete terms in LICENSE.txt

This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.

The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.

Design Thinking

Before coding, understand the context and commit to a BOLD aesthetic direction:

  • Purpose: What problem does this interface solve? Who uses it?
  • Tone: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction.
  • Constraints: Technical requirements (framework, performance, accessibility).
  • Differentiation: What makes this UNFORGETTABLE? What's the one thing someone will remember?

CRITICAL: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.

Then implement working code (HTML/CSS/JS, React, Vue, etc.) that is:

  • Production-grade and functional
  • Visually striking and memorable
  • Cohesive with a clear aesthetic point-of-view
  • Meticulously refined in every detail

Frontend Aesthetics Guidelines

Focus on:

  • Typography: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font.
  • Color & Theme: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes.
  • Motion: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions. Use scroll-triggering and hover states that surprise.
  • Spatial Composition: Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density.
  • Backgrounds & Visual Details: Create atmosphere and depth rather than defaulting to solid colors. Add contextual effects and textures that match the overall aesthetic. Apply creative forms like gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, and grain overlays.

NEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, Arial, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character.

Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations.

IMPORTANT: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well.

Remember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision.

README

Todo Task

A modern, clean To-Do List web app with an orange + white theme. Built as a frontend-only project with local data storage - NO backend, NO login, NO server database.

Todo Task

Features

Core Features

  • CRUD Tasks: Add, edit, and delete tasks
  • Complete/Incomplete Toggle: Mark tasks as done with visual feedback
  • Task Fields: Title, notes, project, tags, priority (Low/Med/High), due date
  • Subtasks: Create checklists inside tasks
  • Attachments: Add URL links to tasks
  • Recurring Tasks: Daily, weekly, or monthly recurrence

Organization

  • 📁 Projects: Organize tasks by project with color coding
  • 🏷️ Tags: Add multiple tags to tasks for flexible categorization
  • 🔴 Priority Levels: Low, Medium, High with visual indicators
  • 📅 Due Dates: Set deadlines with overdue highlighting

Filtering & Sorting

  • 🔍 Search: Find tasks by title or notes
  • 📊 Filters: By status, project, tag, priority, due date
  • 📋 Quick Filters: Today, This Week, Overdue, Completed
  • ↕️ Sort Options: Due date, priority, newest, manual order
  • 🖱️ Drag & Drop: Reorder tasks manually

Data Management

  • 💾 Local Storage: Data persists in IndexedDB (survives browser refresh)
  • 📤 Export: Download all data as JSON backup
  • 📥 Import: Restore from JSON backup
  • 🗑️ Clear Data: Option to delete all data

Tech Stack

  • Vite + React + TypeScript - Fast, modern development
  • Tailwind CSS - Clean orange/white UI
  • IndexedDB (Dexie.js) - Reliable local storage
  • Zustand - Lightweight state management
  • date-fns - Date handling & overdue logic
  • dnd-kit - Drag & drop reordering
  • react-hot-toast - Toast notifications

Getting Started

Prerequisites

  • Node.js 18+
  • npm or yarn

Installation

# Install dependencies
npm install

# Start development server
npm run dev

The app will be available at http://localhost:5173

Build for Production

npm run build
npm run preview

Project Structure

src/
├── components/          # React components
│   ├── Header.tsx       # Top navigation bar
│   ├── Sidebar.tsx      # Left sidebar with projects/tags
│   ├── TaskCard.tsx     # Individual task display
│   ├── TaskList.tsx     # Task list with drag & drop
│   ├── TaskModal.tsx    # Add/Edit task form
│   ├── FilterBar.tsx    # Filter controls
│   └── SettingsModal.tsx # Export/Import settings
├── store/               # Zustand state stores
│   ├── taskStore.ts     # Task state management
│   ├── projectStore.ts  # Project state management
│   ├── tagStore.ts      # Tag state management
│   ├── filterStore.ts   # Filter state management
│   └── uiStore.ts       # UI state (modals, sidebar)
├── db/                  # Database layer
│   └── index.ts         # Dexie.js IndexedDB setup
├── hooks/               # Custom React hooks
│   └── useFilteredTasks.ts # Filtered & sorted tasks
├── types/               # TypeScript types
│   └── index.ts         # Task, Project, Tag types
├── App.tsx              # Main app component
├── main.tsx             # Entry point
└── index.css            # Global styles & Tailwind

How Local Storage Works

This app uses IndexedDB via Dexie.js for persistent storage:

  1. IndexedDB is a low-level browser database that stores structured data
  2. Dexie.js provides a friendly wrapper with promises and reactive queries
  3. Data is stored in three tables: tasks, projects, tags
  4. All data stays in your browser - nothing is sent to any server
  5. Data persists across browser sessions and page refreshes

Backup Your Data

To prevent data loss:

  1. Go to Settings (gear icon)
  2. Click "Export Data" to download a JSON backup
  3. Store the backup file safely
  4. Use "Import Data" to restore from a backup

Theme Colors

  • Primary Orange: #FF7A00
  • Background: White (#FFFFFF) / Light Gray (#F9FAFB)
  • Borders: Light Gray (#E5E7EB)
  • Text: Dark Gray (#111827) / Medium Gray (#6B7280)

License

MIT License - feel free to use this for personal or commercial projects.