@flitzrrr/frontend-design-skills 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/.aider/conventions.md +47 -0
  2. package/.cursorrules +38 -0
  3. package/.github/copilot-instructions.md +47 -0
  4. package/.lovable +31 -0
  5. package/.windsurfrules +38 -0
  6. package/AGENTS.md +18 -0
  7. package/CLAUDE.md +18 -0
  8. package/LICENSE +21 -0
  9. package/README.md +265 -0
  10. package/bin/cli.js +317 -0
  11. package/bin/test-cli.js +119 -0
  12. package/package.json +55 -0
  13. package/skills-src/_template/SKILL.md +36 -0
  14. package/skills-src/_template/references/.gitkeep +0 -0
  15. package/skills-src/accessibility/SKILL.md +186 -0
  16. package/skills-src/accessibility/references/patterns.md +192 -0
  17. package/skills-src/agent-ui-design/SKILL.md +134 -0
  18. package/skills-src/agent-ui-design/references/implementation.md +140 -0
  19. package/skills-src/agent-ui-design/references/patterns.md +79 -0
  20. package/skills-src/ai-design-workflow/SKILL.md +145 -0
  21. package/skills-src/branding-identity/SKILL.md +156 -0
  22. package/skills-src/color-theory/SKILL.md +138 -0
  23. package/skills-src/color-theory/references/patterns.md +123 -0
  24. package/skills-src/component-patterns/SKILL.md +127 -0
  25. package/skills-src/component-patterns/references/implementation.md +130 -0
  26. package/skills-src/component-patterns/references/patterns.md +60 -0
  27. package/skills-src/customer-journey/SKILL.md +141 -0
  28. package/skills-src/design-process/SKILL.md +148 -0
  29. package/skills-src/design-trends/SKILL.md +126 -0
  30. package/skills-src/design-trends/references/patterns.md +96 -0
  31. package/skills-src/images-media/SKILL.md +161 -0
  32. package/skills-src/landing-pages/SKILL.md +153 -0
  33. package/skills-src/navigation-design/SKILL.md +173 -0
  34. package/skills-src/responsive-design/SKILL.md +162 -0
  35. package/skills-src/ui-design/SKILL.md +126 -0
  36. package/skills-src/ui-design/references/patterns.md +90 -0
  37. package/skills-src/ui-patterns/SKILL.md +135 -0
  38. package/skills-src/ui-patterns/references/extended-rules.md +31 -0
  39. package/skills-src/ui-patterns/references/patterns.md +52 -0
  40. package/skills-src/usability/SKILL.md +153 -0
  41. package/skills-src/ux-design/SKILL.md +140 -0
  42. package/skills-src/ux-design/references/patterns.md +98 -0
  43. package/skills-src/visual-direction/SKILL.md +138 -0
  44. package/skills-src/visual-direction/references/archetypen.md +93 -0
  45. package/skills-src/web-typography/SKILL.md +133 -0
  46. package/skills-src/web-typography/references/patterns.md +109 -0
  47. package/skills-src/webdesign-review/SKILL.md +130 -0
  48. package/skills-src/webdesign-review/references/review-workflow.md +143 -0
  49. package/skills-src/website-audit/SKILL.md +171 -0
  50. package/spec/content-map.json +54 -0
  51. package/spec/design-spec.md +121 -0
  52. package/spec/domains/01-ui-design.md +136 -0
  53. package/spec/domains/02-ux-design.md +143 -0
  54. package/spec/domains/03-typography.md +150 -0
  55. package/spec/domains/04-color-theory.md +145 -0
  56. package/spec/domains/05-accessibility.md +213 -0
  57. package/spec/domains/06-usability.md +181 -0
  58. package/spec/domains/07-responsive-design.md +201 -0
  59. package/spec/domains/08-navigation.md +201 -0
  60. package/spec/domains/09-images-media.md +198 -0
  61. package/spec/domains/10-branding.md +195 -0
  62. package/spec/domains/11-customer-journey.md +164 -0
  63. package/spec/domains/12-design-process.md +154 -0
  64. package/spec/domains/13-ai-design-workflow.md +155 -0
  65. package/spec/domains/14-landing-pages.md +169 -0
  66. package/spec/domains/15-website-audit-relaunch.md +216 -0
  67. package/spec/domains/16-design-trends.md +150 -0
  68. package/spec/domains/17-ui-patterns.md +169 -0
  69. package/spec/domains/18-visual-direction.md +166 -0
  70. package/spec/domains/19-component-architecture.md +183 -0
@@ -0,0 +1,47 @@
1
+ # Frontend Design Skills — Aider Conventions
2
+
3
+ This repository contains 21 opinionated web design skills from 12 curated sources.
4
+ Each skill is a self-contained folder under `skills-src/` containing a `SKILL.md` file.
5
+
6
+ ## How to Use
7
+
8
+ When a task involves web design, read the corresponding `SKILL.md`:
9
+
10
+ ```
11
+ skills-src/<skill-name>/SKILL.md
12
+ ```
13
+
14
+ ## Skill Categories
15
+
16
+ ### Core Design
17
+ - `skills-src/ui-design/SKILL.md` — Layout, grids, visual hierarchy, components
18
+ - `skills-src/ux-design/SKILL.md` — User research, IA, interaction patterns
19
+
20
+ ### Typography, Color & Accessibility
21
+ - `skills-src/web-typography/SKILL.md` — Font selection, pairing, fluid typography
22
+ - `skills-src/color-theory/SKILL.md` — Color schemes, contrast, dark mode
23
+ - `skills-src/accessibility/SKILL.md` — WCAG, BFSG, semantic HTML, ARIA
24
+
25
+ ### Implementation
26
+ - `skills-src/usability/SKILL.md` — Heuristic evaluation, forms, conversion
27
+ - `skills-src/responsive-design/SKILL.md` — Mobile-first, breakpoints, fluid grids
28
+ - `skills-src/navigation-design/SKILL.md` — Menu patterns, breadcrumbs, IA
29
+ - `skills-src/images-media/SKILL.md` — Image optimization, SVG, lazy loading
30
+ - `skills-src/branding-identity/SKILL.md` — Brand strategy, corporate design
31
+
32
+ ### Strategy & Process
33
+ - `skills-src/customer-journey/SKILL.md` — Personas, touchpoints, onboarding
34
+ - `skills-src/design-process/SKILL.md` — Briefing, wireframing, prototyping
35
+ - `skills-src/ai-design-workflow/SKILL.md` — AI/KI integration in design
36
+ - `skills-src/landing-pages/SKILL.md` — Conversion structure, CTAs
37
+ - `skills-src/website-audit/SKILL.md` — Site analysis, relaunch planning
38
+
39
+ ### Trends & Modern Patterns
40
+ - `skills-src/design-trends/SKILL.md` — Award-winning patterns, motion, trends
41
+ - `skills-src/ui-patterns/SKILL.md` — Hero, cards, navigation, pricing
42
+ - `skills-src/visual-direction/SKILL.md` — Color/typography/layout trends
43
+ - `skills-src/component-patterns/SKILL.md` — Compound components, tokens, theming
44
+ - `skills-src/agent-ui-design/SKILL.md` — Chat interfaces, streaming UI, agent UX
45
+
46
+ ### Design Review
47
+ - `skills-src/webdesign-review/SKILL.md` — Comprehensive review (orchestrates all 20 domain skills)
package/.cursorrules ADDED
@@ -0,0 +1,38 @@
1
+ # Frontend Design Skills — Cursor Rules
2
+ # This file makes skills discoverable in Cursor IDE.
3
+ # For detailed skill usage, see individual SKILL.md files.
4
+
5
+ ## Available Skills (21 total from 12 sources)
6
+
7
+ ### Core Design
8
+ - Use `skills-src/ui-design/SKILL.md` for layout, grids, visual hierarchy, components, whitespace
9
+ - Use `skills-src/ux-design/SKILL.md` for user research, information architecture, interaction patterns
10
+
11
+ ### Typography, Color & Accessibility
12
+ - Use `skills-src/web-typography/SKILL.md` for font selection, pairing, fluid typography, scales
13
+ - Use `skills-src/color-theory/SKILL.md` for color schemes, 60-30-10, contrast, dark mode
14
+ - Use `skills-src/accessibility/SKILL.md` for WCAG, BFSG, semantic HTML, ARIA, keyboard nav
15
+
16
+ ### Implementation
17
+ - Use `skills-src/usability/SKILL.md` for heuristic evaluation, form design, conversion
18
+ - Use `skills-src/responsive-design/SKILL.md` for mobile-first, breakpoints, fluid grids
19
+ - Use `skills-src/navigation-design/SKILL.md` for menu patterns, breadcrumbs, IA
20
+ - Use `skills-src/images-media/SKILL.md` for image optimization, WebP/AVIF, SVG, lazy loading
21
+ - Use `skills-src/branding-identity/SKILL.md` for brand strategy, corporate design, tone of voice
22
+
23
+ ### Strategy & Process
24
+ - Use `skills-src/customer-journey/SKILL.md` for personas, touchpoints, onboarding
25
+ - Use `skills-src/design-process/SKILL.md` for briefing, wireframing, prototyping, handoff
26
+ - Use `skills-src/ai-design-workflow/SKILL.md` for AI/KI integration in design workflow
27
+ - Use `skills-src/landing-pages/SKILL.md` for conversion structure, CTAs, A/B testing
28
+ - Use `skills-src/website-audit/SKILL.md` for site analysis, relaunch planning, SEO migration
29
+
30
+ ### Trends & Modern Patterns
31
+ - Use `skills-src/design-trends/SKILL.md` for current award-winning patterns, motion, trends
32
+ - Use `skills-src/ui-patterns/SKILL.md` for hero, cards, navigation, pricing, testimonials
33
+ - Use `skills-src/visual-direction/SKILL.md` for color/typography/layout trend intelligence
34
+ - Use `skills-src/component-patterns/SKILL.md` for compound components, design tokens, theming
35
+ - Use `skills-src/agent-ui-design/SKILL.md` for chat interfaces, streaming UI, agent UX
36
+
37
+ ### Design Review
38
+ - Use `skills-src/webdesign-review/SKILL.md` for comprehensive design review (orchestrates all skills)
@@ -0,0 +1,47 @@
1
+ # Frontend Design Skills — VS Code / GitHub Copilot
2
+
3
+ This repository contains 21 opinionated web design skills from 12 sources.
4
+ Each skill is a self-contained folder under `skills-src/` with a `SKILL.md` file.
5
+
6
+ ## How to Use Skills
7
+
8
+ When a task involves web design, read the corresponding `SKILL.md`:
9
+
10
+ ```
11
+ skills-src/<skill-name>/SKILL.md
12
+ ```
13
+
14
+ ## Key Skill Categories
15
+
16
+ ### Core Design
17
+ - `skills-src/ui-design/` — Layout, grids, visual hierarchy, components
18
+ - `skills-src/ux-design/` — User research, IA, interaction patterns
19
+
20
+ ### Typography, Color & Accessibility
21
+ - `skills-src/web-typography/` — Font selection, pairing, fluid typography
22
+ - `skills-src/color-theory/` — Color schemes, contrast, dark mode
23
+ - `skills-src/accessibility/` — WCAG, BFSG, semantic HTML, ARIA
24
+
25
+ ### Implementation
26
+ - `skills-src/usability/` — Heuristic evaluation, forms, conversion
27
+ - `skills-src/responsive-design/` — Mobile-first, breakpoints, fluid grids
28
+ - `skills-src/navigation-design/` — Menu patterns, breadcrumbs, IA
29
+ - `skills-src/images-media/` — Image optimization, SVG, lazy loading
30
+ - `skills-src/branding-identity/` — Brand strategy, corporate design
31
+
32
+ ### Strategy & Process
33
+ - `skills-src/customer-journey/` — Personas, touchpoints, onboarding
34
+ - `skills-src/design-process/` — Briefing, wireframing, prototyping
35
+ - `skills-src/ai-design-workflow/` — AI/KI integration in design
36
+ - `skills-src/landing-pages/` — Conversion structure, CTAs
37
+ - `skills-src/website-audit/` — Site analysis, relaunch planning
38
+
39
+ ### Trends & Modern Patterns
40
+ - `skills-src/design-trends/` — Award-winning patterns, motion, trends
41
+ - `skills-src/ui-patterns/` — Hero, cards, navigation, pricing
42
+ - `skills-src/visual-direction/` — Color/typography/layout trends
43
+ - `skills-src/component-patterns/` — Compound components, tokens, theming
44
+ - `skills-src/agent-ui-design/` — Chat interfaces, streaming UI, agent UX
45
+
46
+ ### Design Review
47
+ - `skills-src/webdesign-review/` — Comprehensive review (orchestrates all 20 domain skills)
package/.lovable ADDED
@@ -0,0 +1,31 @@
1
+ # Frontend Design Skills — Lovable Project Instructions
2
+ # This file makes skills available in Lovable AI.
3
+
4
+ This repository contains 21 opinionated web design skills from 12 curated sources,
5
+ covering UI/UX, typography, color, accessibility, branding, and modern design trends.
6
+
7
+ ## How to Use
8
+
9
+ Each skill is a self-contained folder under `skills-src/` containing a `SKILL.md` file
10
+ with detailed instructions and a `references/` directory. When a task matches a skill's
11
+ domain, read and follow the corresponding `SKILL.md`.
12
+
13
+ ## Key Skills for Lovable Projects
14
+
15
+ ### Web Development
16
+ - `skills-src/ui-design/SKILL.md` — Layout, Raster, visuelle Hierarchie, Komponenten
17
+ - `skills-src/ux-design/SKILL.md` — Nutzerforschung, Informationsarchitektur
18
+ - `skills-src/responsive-design/SKILL.md` — Mobile-First, Breakpoints, Fluid Grids
19
+ - `skills-src/component-patterns/SKILL.md` — Compound Components, Design Tokens, Theming
20
+ - `skills-src/agent-ui-design/SKILL.md` — Chat-Interfaces, Streaming UI, Agent UX
21
+
22
+ ### Visual Design
23
+ - `skills-src/web-typography/SKILL.md` — Schriftwahl, Paarung, Fluid Typography
24
+ - `skills-src/color-theory/SKILL.md` — Farbschemata, 60-30-10, Dark Mode
25
+ - `skills-src/visual-direction/SKILL.md` — Farbpaletten-Archetypen, Trends
26
+
27
+ ### Quality & Conversion
28
+ - `skills-src/accessibility/SKILL.md` — WCAG, BFSG, semantisches HTML, ARIA
29
+ - `skills-src/usability/SKILL.md` — Nielsen-Heuristiken, Formulardesign, Conversion
30
+ - `skills-src/landing-pages/SKILL.md` — Conversion-Struktur, CTA, A/B-Testing
31
+ - `skills-src/webdesign-review/SKILL.md` — Comprehensive design review (all 20 domains)
package/.windsurfrules ADDED
@@ -0,0 +1,38 @@
1
+ # Frontend Design Skills — Windsurf Rules
2
+ # This file makes skills discoverable in Windsurf.
3
+ # For detailed skill usage, see individual SKILL.md files.
4
+
5
+ ## Available Skills (21 total from 12 sources)
6
+
7
+ ### Core Design
8
+ - Use `skills-src/ui-design/SKILL.md` for layout, grids, visual hierarchy, components, whitespace
9
+ - Use `skills-src/ux-design/SKILL.md` for user research, information architecture, interaction patterns
10
+
11
+ ### Typography, Color & Accessibility
12
+ - Use `skills-src/web-typography/SKILL.md` for font selection, pairing, fluid typography, scales
13
+ - Use `skills-src/color-theory/SKILL.md` for color schemes, 60-30-10, contrast, dark mode
14
+ - Use `skills-src/accessibility/SKILL.md` for WCAG, BFSG, semantic HTML, ARIA, keyboard nav
15
+
16
+ ### Implementation
17
+ - Use `skills-src/usability/SKILL.md` for heuristic evaluation, form design, conversion
18
+ - Use `skills-src/responsive-design/SKILL.md` for mobile-first, breakpoints, fluid grids
19
+ - Use `skills-src/navigation-design/SKILL.md` for menu patterns, breadcrumbs, IA
20
+ - Use `skills-src/images-media/SKILL.md` for image optimization, WebP/AVIF, SVG, lazy loading
21
+ - Use `skills-src/branding-identity/SKILL.md` for brand strategy, corporate design, tone of voice
22
+
23
+ ### Strategy & Process
24
+ - Use `skills-src/customer-journey/SKILL.md` for personas, touchpoints, onboarding
25
+ - Use `skills-src/design-process/SKILL.md` for briefing, wireframing, prototyping, handoff
26
+ - Use `skills-src/ai-design-workflow/SKILL.md` for AI/KI integration in design workflow
27
+ - Use `skills-src/landing-pages/SKILL.md` for conversion structure, CTAs, A/B testing
28
+ - Use `skills-src/website-audit/SKILL.md` for site analysis, relaunch planning, SEO migration
29
+
30
+ ### Trends & Modern Patterns
31
+ - Use `skills-src/design-trends/SKILL.md` for current award-winning patterns, motion, trends
32
+ - Use `skills-src/ui-patterns/SKILL.md` for hero, cards, navigation, pricing, testimonials
33
+ - Use `skills-src/visual-direction/SKILL.md` for color/typography/layout trend intelligence
34
+ - Use `skills-src/component-patterns/SKILL.md` for compound components, design tokens, theming
35
+ - Use `skills-src/agent-ui-design/SKILL.md` for chat interfaces, streaming UI, agent UX
36
+
37
+ ### Design Review
38
+ - Use `skills-src/webdesign-review/SKILL.md` for comprehensive design review (orchestrates all skills)
package/AGENTS.md ADDED
@@ -0,0 +1,18 @@
1
+ # Frontend Design Skills
2
+
3
+ This repository contains 21 opinionated web design skills from 12 sources.
4
+ Skills are located in the `skills-src/` directory — each contains a `SKILL.md` with instructions.
5
+
6
+ ## Available Skill Categories
7
+
8
+ - **Meta**: `webdesign-review` — comprehensive design review orchestrating all domains
9
+ - **Core Design**: `ui-design`, `ux-design` — layout, grids, hierarchy, IA, interaction
10
+ - **Detail**: `web-typography`, `color-theory`, `accessibility` — fonts, color, WCAG/BFSG
11
+ - **Implementation**: `usability`, `responsive-design`, `navigation-design`, `images-media`, `branding-identity`
12
+ - **Strategy**: `customer-journey`, `design-process`, `ai-design-workflow`, `landing-pages`, `website-audit`
13
+ - **Trends & Patterns**: `design-trends`, `ui-patterns`, `visual-direction`, `component-patterns`, `agent-ui-design`
14
+
15
+ ## Usage
16
+
17
+ To use a skill, read the `SKILL.md` file in the corresponding `skills-src/<name>/` directory.
18
+ For a comprehensive design review, start with `webdesign-review` which orchestrates all domain skills.
package/CLAUDE.md ADDED
@@ -0,0 +1,18 @@
1
+ # Frontend Design Skills
2
+
3
+ This repository contains 21 opinionated web design skills from 12 sources.
4
+ Skills are located in the `skills-src/` directory — each contains a `SKILL.md` with instructions.
5
+
6
+ ## Available Skill Categories
7
+
8
+ - **Meta**: `webdesign-review` — comprehensive design review orchestrating all domains
9
+ - **Core Design**: `ui-design`, `ux-design` — layout, grids, hierarchy, IA, interaction
10
+ - **Detail**: `web-typography`, `color-theory`, `accessibility` — fonts, color, WCAG/BFSG
11
+ - **Implementation**: `usability`, `responsive-design`, `navigation-design`, `images-media`, `branding-identity`
12
+ - **Strategy**: `customer-journey`, `design-process`, `ai-design-workflow`, `landing-pages`, `website-audit`
13
+ - **Trends & Patterns**: `design-trends`, `ui-patterns`, `visual-direction`, `component-patterns`, `agent-ui-design`
14
+
15
+ ## Usage
16
+
17
+ To use a skill, read the `SKILL.md` file in the corresponding `skills-src/<name>/` directory.
18
+ For a comprehensive design review, start with `webdesign-review` which orchestrates all domain skills.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 flitzrrr
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,265 @@
1
+ # Frontend Design Skills
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@flitzrrr/frontend-design-skills?style=flat-square&color=cb3837)](https://www.npmjs.com/package/@flitzrrr/frontend-design-skills)
4
+ [![Skills](https://img.shields.io/badge/skills-21-blue?style=flat-square)](skills-src/)
5
+ [![Domains](https://img.shields.io/badge/domains-19-green?style=flat-square)](spec/domains/)
6
+ [![Platforms](https://img.shields.io/badge/platforms-9-orange?style=flat-square)](bin/cli.js)
7
+ [![Sources](https://img.shields.io/badge/sources-12-purple?style=flat-square)](scripts/config.yaml)
8
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](LICENSE)
9
+
10
+ **21 opinionated web design skills** distilled from **12 curated sources** (809 pages, 8.1 MB). One build, every major AI coding tool.
11
+
12
+ ---
13
+
14
+ ## Quick Start
15
+
16
+ ```bash
17
+ npx @flitzrrr/frontend-design-skills install
18
+ ```
19
+
20
+ Detects installed platforms and provisions skills for each. Target a single platform with:
21
+
22
+ ```bash
23
+ npx @flitzrrr/frontend-design-skills install <platform>
24
+ ```
25
+
26
+ Where `<platform>` is one of: `claude-code`, `cursor`, `windsurf`, `lovable`, `codex`, `copilot`, `antigravity`, `opencode`, `aider`.
27
+
28
+ <details>
29
+ <summary>Manual setup (git clone)</summary>
30
+
31
+ ```bash
32
+ git clone git@github.com:flitzrrr/frontend-design-skills.git
33
+ cd frontend-design-skills
34
+
35
+ # Symlink into target platform(s):
36
+ ln -sf $(pwd)/skills-src/* ~/.copilot/skills/ # VS Code / GitHub Copilot
37
+ ln -sf $(pwd)/skills-src/* ~/.codex/skills/ # Codex
38
+ ln -sf $(pwd)/skills-src/* ~/.gemini/antigravity/skills/ # Antigravity
39
+ ln -sf $(pwd)/skills-src/* ~/.config/opencode/skills/ # OpenCode
40
+ ```
41
+
42
+ </details>
43
+
44
+ <details>
45
+ <summary>All CLI commands</summary>
46
+
47
+ | Command | Description |
48
+ | --- | --- |
49
+ | `npx @flitzrrr/frontend-design-skills install` | Install for all detected platforms |
50
+ | `npx @flitzrrr/frontend-design-skills install <platform>` | Install for a single platform |
51
+ | `npx @flitzrrr/frontend-design-skills update` | Pull latest skills |
52
+ | `npx @flitzrrr/frontend-design-skills list` | List all available skills |
53
+
54
+ </details>
55
+
56
+ ---
57
+
58
+ ## Platform Support
59
+
60
+ | Platform | Discovery Mechanism | Install Method |
61
+ | --- | --- | --- |
62
+ | Claude Code | `CLAUDE.md` (project-level) | `npx @flitzrrr/frontend-design-skills install claude-code` |
63
+ | Cursor | `.cursorrules` (project-level) | `npx @flitzrrr/frontend-design-skills install cursor` |
64
+ | Windsurf | `.windsurfrules` (project-level) | `npx @flitzrrr/frontend-design-skills install windsurf` |
65
+ | Lovable | `.lovable` (project-level) | `npx @flitzrrr/frontend-design-skills install lovable` |
66
+ | VS Code (GitHub Copilot) | `.github/copilot-instructions.md` + `~/.copilot/skills/` | `npx @flitzrrr/frontend-design-skills install copilot` |
67
+ | Codex | `AGENTS.md` + `~/.codex/skills/` | `npx @flitzrrr/frontend-design-skills install codex` |
68
+ | Antigravity (Gemini) | `~/.gemini/antigravity/skills/` | `npx @flitzrrr/frontend-design-skills install antigravity` |
69
+ | OpenCode | `~/.config/opencode/skills/` | `npx @flitzrrr/frontend-design-skills install opencode` |
70
+ | Aider | `.aider/conventions.md` | `npx @flitzrrr/frontend-design-skills install aider` |
71
+ | Any agent | Read `skills-src/<name>/SKILL.md` directly | Manual |
72
+
73
+ ---
74
+
75
+ ## Skill Categories
76
+
77
+ | Category | Skills | Focus |
78
+ | --- | --- | --- |
79
+ | Meta | `webdesign-review` | Orchestrates all 20 domain skills for comprehensive design reviews |
80
+ | Core Design | `ui-design`, `ux-design` | Layout, grids, visual hierarchy, IA, interaction patterns |
81
+ | Detail | `web-typography`, `color-theory`, `accessibility` | Font pairing, 60-30-10 rule, WCAG, BFSG compliance |
82
+ | Implementation | `responsive-design`, `navigation-design`, `usability`, `images-media`, `branding-identity` | Mobile-first, menu patterns, forms, SVG, brand strategy |
83
+ | Strategy | `customer-journey`, `design-process`, `ai-design-workflow`, `landing-pages`, `website-audit` | Personas, briefing, KI-workflow, conversion, relaunch |
84
+ | Trends & Patterns | `design-trends`, `ui-patterns`, `visual-direction`, `component-patterns`, `agent-ui-design` | Award-winning patterns, Mobbin, Dribbble/Behance, 21st.dev |
85
+
86
+ All skills are written in **German** (matching source material). Frontmatter names and descriptions are in English (per [Agent Skills spec](https://agentskills.io)).
87
+
88
+ ---
89
+
90
+ ## Sources
91
+
92
+ | Tier | Source | Pages | Focus |
93
+ | --- | --- | ---: | --- |
94
+ | 1 (deep) | [webdesign-journal.de](https://www.webdesign-journal.de/) | 30 | UI/UX, typography, color, accessibility, branding, KI |
95
+ | 1 (deep) | [21st.dev](https://21st.dev/) | 39 | Component patterns, Agents SDK, chat UI |
96
+ | 2 (awards) | [Awwwards](https://www.awwwards.com/) | ~200 | Award-winning sites + their content |
97
+ | 2 (awards) | [CSS Design Awards](https://www.cssdesignawards.com/) | 80 | Website of the Day winners |
98
+ | 2 (awards) | [CSS Winner](https://www.csswinner.com/) | 60 | Award winners |
99
+ | 3 (galleries) | [Godly](https://godly.website/) | 80 | Curated design gallery |
100
+ | 3 (galleries) | [SiteInspire](https://www.siteinspire.com/) | 80 | Design inspiration |
101
+ | 3 (galleries) | [Lapa.ninja](https://www.lapa.ninja/) | 80 | Landing page gallery |
102
+ | 3 (galleries) | [Land-book](https://land-book.com/) | 30 | Design gallery |
103
+ | 4 (community) | [Dribbble](https://dribbble.com/) | 25 | Trending shots |
104
+ | 4 (community) | [Behance](https://www.behance.net/) | 20 | Trending projects |
105
+ | 4 (community) | [Mobbin](https://mobbin.com/) | 6 | Real app UI patterns (public) |
106
+
107
+ **809 pages** across 12 sources, synthesized into a **19-domain Enterprise Design Specification** (3,289 lines).
108
+
109
+ ---
110
+
111
+ ## Architecture
112
+
113
+ ```mermaid
114
+ graph TD
115
+ subgraph Sources["12 Web Design Sources"]
116
+ T1["Tier 1: webdesign-journal.de + 21st.dev"]
117
+ T2["Tier 2: Awwwards + CSSDA + CSS Winner"]
118
+ T3["Tier 3: Godly + SiteInspire + Lapa.ninja + Land-book"]
119
+ T4["Tier 4: Dribbble + Behance + Mobbin"]
120
+ end
121
+
122
+ subgraph Scraping["Scraping & Diffing"]
123
+ S[scrape.py]
124
+ D[diff-content.py]
125
+ M[manifest.json]
126
+ end
127
+
128
+ subgraph Spec["Enterprise Design Specification"]
129
+ CM[content-map.json]
130
+ DS[19 Domain Files]
131
+ end
132
+
133
+ subgraph Skills["Canonical Skills"]
134
+ SK[21 SKILL.md + references/]
135
+ end
136
+
137
+ subgraph Build["Build Pipeline"]
138
+ B[build-skills.py]
139
+ end
140
+
141
+ subgraph Output["Tool-Specific Outputs"]
142
+ CC[Claude Code]
143
+ CU[Cursor]
144
+ WS[Windsurf]
145
+ GE[Gemini]
146
+ CO[Codex]
147
+ AI[Aider]
148
+ end
149
+
150
+ Sources --> S
151
+ S --> M
152
+ M --> D
153
+ D --> CM
154
+ CM --> DS
155
+ DS -->|"AI Synthesis"| SK
156
+ SK --> B
157
+ B --> CC
158
+ B --> CU
159
+ B --> WS
160
+ B --> GE
161
+ B --> CO
162
+ B --> AI
163
+ ```
164
+
165
+ ### Evolution Pipeline
166
+
167
+ ```mermaid
168
+ sequenceDiagram
169
+ participant Cron as Weekly Cron
170
+ participant Scraper as scrape.py
171
+ participant Differ as diff-content.py
172
+ participant Map as content-map.json
173
+ participant Spec as spec/domains/*.md
174
+ participant Builder as build-skills.py
175
+ participant Output as output/
176
+
177
+ Cron->>Scraper: Trigger (Sundays 3am)
178
+
179
+ rect rgb(240, 245, 250)
180
+ Note over Scraper,Differ: Scrape & Diff Phase
181
+ Scraper->>Scraper: Crawl 12 sources (tiered)
182
+ Scraper->>Differ: Updated manifest.json
183
+ Differ->>Differ: Compare hashes, classify changes
184
+ Differ-->>Map: Change report (new/updated/removed)
185
+ end
186
+
187
+ rect rgb(250, 245, 240)
188
+ Note over Map,Spec: Domain Mapping Phase
189
+ Map->>Spec: Identify affected domains
190
+ Note right of Spec: AI synthesis required<br/>for spec updates
191
+ end
192
+
193
+ rect rgb(240, 250, 240)
194
+ Note over Builder,Output: Build Phase
195
+ Builder->>Output: Rebuild all 6 tool outputs
196
+ Note right of Output: claude-code, cursor,<br/>windsurf, gemini,<br/>codex, aider
197
+ end
198
+ ```
199
+
200
+ ---
201
+
202
+ ## Directory Structure
203
+
204
+ ```
205
+ frontend-design-skills/
206
+ skills-src/ 21 canonical skills (Agent Skills spec)
207
+ _template/ Skill authoring template
208
+ webdesign-review/ Meta-skill (orchestrates all domains)
209
+ ui-design/ ...through to...
210
+ agent-ui-design/ ...all 21 skill directories
211
+ spec/ Enterprise Design Specification
212
+ design-spec.md Master index (19 domains)
213
+ domains/ Per-domain spec files (01-19)
214
+ content-map.json URL-to-domain mapping
215
+ tools/ Cross-tool adapter system
216
+ adapters/ 6 Python adapters + common.py
217
+ FORMAT-SPECS.md Output format reference
218
+ scripts/ Build and automation
219
+ build-skills.py Canonical -> tool-specific outputs
220
+ validate-skills.py Agent Skills spec validation
221
+ scrape.py Tiered source scraper
222
+ diff-content.py Content change detection
223
+ evolve.py Evolution pipeline orchestrator
224
+ config.yaml Source configuration (12 sources, 4 tiers)
225
+ data/ Persistent scraping data
226
+ manifest.json URL/hash/date index
227
+ changelog.md Evolution log
228
+ scraped/ Raw markdown (gitignored)
229
+ versions/ Manifest snapshots for rollback
230
+ bin/ CLI (npx)
231
+ output/ Generated tool outputs (gitignored)
232
+ docs/ Project documentation
233
+ ```
234
+
235
+ ### Skill Format
236
+
237
+ Each skill follows the [Agent Skills](https://agentskills.io) specification:
238
+
239
+ ```
240
+ skills-src/<name>/
241
+ SKILL.md < 500 lines, YAML frontmatter (name, description)
242
+ references/ Detailed patterns, code examples, checklists
243
+ ```
244
+
245
+ The build pipeline transforms this canonical format into tool-specific outputs via 6 adapters (Claude Code copies directly; Cursor generates `.mdc`; Windsurf/Gemini/Codex/Aider concatenate into single files with inlined references).
246
+
247
+ ### Naming Convention
248
+
249
+ Skills are named by domain: `ui-design`, `web-typography`, `accessibility`. The meta-skill `webdesign-review` orchestrates all 20 domain skills for comprehensive design reviews.
250
+
251
+ ---
252
+
253
+ ## Validation
254
+
255
+ ```bash
256
+ python3 scripts/validate-skills.py
257
+ ```
258
+
259
+ Validates all 21 skills against the Agent Skills spec: frontmatter fields (`name`, `description`), naming conventions (lowercase-hyphen, max 64 chars), line limits (< 500), and directory-name consistency.
260
+
261
+ ---
262
+
263
+ ## License
264
+
265
+ MIT -- applies to all code, skills, and documentation in this repository.