omp-designer 2.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 (44) hide show
  1. package/AGENTS.md +131 -0
  2. package/architecture.md +102 -0
  3. package/data/ui-ux-pro-max/app-interface.csv +31 -0
  4. package/data/ui-ux-pro-max/charts.csv +26 -0
  5. package/data/ui-ux-pro-max/colors.csv +162 -0
  6. package/data/ui-ux-pro-max/design.csv +1776 -0
  7. package/data/ui-ux-pro-max/draft.csv +1779 -0
  8. package/data/ui-ux-pro-max/google-fonts.csv +1924 -0
  9. package/data/ui-ux-pro-max/icons.csv +106 -0
  10. package/data/ui-ux-pro-max/landing.csv +35 -0
  11. package/data/ui-ux-pro-max/products.csv +162 -0
  12. package/data/ui-ux-pro-max/react-performance.csv +45 -0
  13. package/data/ui-ux-pro-max/stacks/angular.csv +51 -0
  14. package/data/ui-ux-pro-max/stacks/astro.csv +54 -0
  15. package/data/ui-ux-pro-max/stacks/flutter.csv +53 -0
  16. package/data/ui-ux-pro-max/stacks/html-tailwind.csv +56 -0
  17. package/data/ui-ux-pro-max/stacks/jetpack-compose.csv +53 -0
  18. package/data/ui-ux-pro-max/stacks/laravel.csv +51 -0
  19. package/data/ui-ux-pro-max/stacks/nextjs.csv +53 -0
  20. package/data/ui-ux-pro-max/stacks/nuxt-ui.csv +51 -0
  21. package/data/ui-ux-pro-max/stacks/nuxtjs.csv +59 -0
  22. package/data/ui-ux-pro-max/stacks/react-native.csv +52 -0
  23. package/data/ui-ux-pro-max/stacks/react.csv +54 -0
  24. package/data/ui-ux-pro-max/stacks/shadcn.csv +61 -0
  25. package/data/ui-ux-pro-max/stacks/svelte.csv +54 -0
  26. package/data/ui-ux-pro-max/stacks/swiftui.csv +51 -0
  27. package/data/ui-ux-pro-max/stacks/threejs.csv +54 -0
  28. package/data/ui-ux-pro-max/stacks/vue.csv +50 -0
  29. package/data/ui-ux-pro-max/styles.csv +85 -0
  30. package/data/ui-ux-pro-max/typography.csv +74 -0
  31. package/data/ui-ux-pro-max/ui-reasoning.csv +162 -0
  32. package/data/ui-ux-pro-max/ux-guidelines.csv +100 -0
  33. package/docs/config.yml.example +24 -0
  34. package/docs/extension-api.md +93 -0
  35. package/docs/mcp-setup.md +76 -0
  36. package/docs/mcp.json.example +37 -0
  37. package/docs/problems.md +97 -0
  38. package/extensions/designer.ts +186 -0
  39. package/package.json +41 -0
  40. package/skills/animate.md +219 -0
  41. package/skills/designer-master.md +179 -0
  42. package/skills/review-skill.md +50 -0
  43. package/skills/taste-skill.md +981 -0
  44. package/skills/ui-ux-pro-max.md +50 -0
@@ -0,0 +1,50 @@
1
+ # ui-ux-pro-max (Design Intelligence Database)
2
+
3
+ **File:** `~/.omp/agent/managed-skills/ui-ux-pro-max-skill/SKILL.md`
4
+ **Name:** `ui-ux-pro-max`
5
+ **Size:** 45 KB SKILL.md + 1.9 MB data
6
+ **Source:** `https://github.com/nextlevelbuilder/ui-ux-pro-max-skill`
7
+
8
+ ## Purpose
9
+
10
+ Massive design reference database. Provides color palettes, font pairings,
11
+ UI styles, UX guidelines, and chart types.
12
+
13
+ ## Key Data
14
+
15
+ ### Colors: `src/ui-ux-pro-max/data/design.csv` (and `draft.csv`, `landing.csv`, `products.csv`)
16
+ - 161 color palettes organized by product type
17
+ - Each row: product category + hex values
18
+ - Examples: "Developer Tool", "Tech Startup", "SaaS Dashboard"
19
+ - **NOTE:** There is no `colors.csv`. The color data is spread across multiple CSVs.
20
+ Use `design.csv` or `draft.csv` as the primary color source.
21
+
22
+ ### Fonts: `src/ui-ux-pro-max/data/typography.csv`
23
+ - 57 font pairings
24
+ - Heading + body combinations
25
+ - Examples: Space Grotesk + DM Sans, Inter + Roboto
26
+
27
+ ### UI Styles: `src/ui-ux-pro-max/data/styles.csv`
28
+ - 67 style definitions
29
+
30
+ ### UX Guidelines: `src/ui-ux-pro-max/data/ux-guidelines.csv`
31
+ - 99 rules with priority levels:
32
+ - Accessibility: critical
33
+ - Touch: critical
34
+ - Performance: high
35
+ - Motion: medium
36
+ - Anti-patterns: medium
37
+
38
+ ### Other Data
39
+ - Products CSV, Charts CSV, App interfaces CSV, etc.
40
+ - Per-stack files: React, Next.js, Vue, Svelte, Flutter, SwiftUI, etc.
41
+
42
+ ## KNOWN PROBLEM: CSVs Not Read
43
+
44
+ The agent reads the SKILL.md but almost NEVER reads the CSV data files
45
+ containing the actual palettes and font pairings. The PROMPT_INJECT says
46
+ "READ the csv files in its src/ui-ux-pro-max/data/ directory" — but this
47
+ is ignored ~90% of the time.
48
+
49
+ **Workaround:** The designer-master skill now inlines the correct paths
50
+ and explicitly lists which CSVs to read.