cursor-kit-cli 1.2.0-beta → 1.2.0-beta.2

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 (91) hide show
  1. package/dist/cli.cjs +333 -56
  2. package/dist/cli.cjs.map +1 -1
  3. package/dist/cli.js +334 -57
  4. package/dist/cli.js.map +1 -1
  5. package/dist/index.cjs +39 -1
  6. package/dist/index.cjs.map +1 -1
  7. package/dist/index.d.cts +9 -1
  8. package/dist/index.d.ts +9 -1
  9. package/dist/index.js +33 -2
  10. package/dist/index.js.map +1 -1
  11. package/package.json +1 -1
  12. package/templates/commands/docs.md +5 -3
  13. package/templates/commands/explain.md +5 -3
  14. package/templates/commands/fix.md +5 -3
  15. package/templates/commands/implement.md +5 -3
  16. package/templates/commands/refactor.md +5 -3
  17. package/templates/commands/review.md +5 -3
  18. package/templates/commands/test.md +5 -3
  19. package/templates/manifest.json +11 -8
  20. package/templates/rules/git.mdc +0 -2
  21. package/templates/rules/toc.mdc +17 -9
  22. package/templates/skills/aesthetic/SKILL.md +121 -0
  23. package/templates/skills/aesthetic/assets/design-guideline-template.md +163 -0
  24. package/templates/skills/aesthetic/assets/design-story-template.md +135 -0
  25. package/templates/skills/aesthetic/references/design-principles.md +62 -0
  26. package/templates/skills/aesthetic/references/design-resources.md +75 -0
  27. package/templates/skills/aesthetic/references/micro-interactions.md +53 -0
  28. package/templates/skills/aesthetic/references/storytelling-design.md +50 -0
  29. package/templates/skills/backend-development/SKILL.mdc +95 -0
  30. package/templates/skills/backend-development/references/backend-api-design.md +495 -0
  31. package/templates/skills/backend-development/references/backend-architecture.md +454 -0
  32. package/templates/skills/backend-development/references/backend-authentication.md +338 -0
  33. package/templates/skills/backend-development/references/backend-code-quality.md +659 -0
  34. package/templates/skills/backend-development/references/backend-debugging.md +904 -0
  35. package/templates/skills/backend-development/references/backend-devops.md +494 -0
  36. package/templates/skills/backend-development/references/backend-mindset.md +387 -0
  37. package/templates/skills/backend-development/references/backend-performance.md +397 -0
  38. package/templates/skills/backend-development/references/backend-security.md +290 -0
  39. package/templates/skills/backend-development/references/backend-technologies.md +256 -0
  40. package/templates/skills/backend-development/references/backend-testing.md +429 -0
  41. package/templates/skills/frontend-design/SKILL.mdc +41 -0
  42. package/templates/skills/frontend-design/references/animejs.md +396 -0
  43. package/templates/skills/frontend-development/SKILL.mdc +399 -0
  44. package/templates/skills/frontend-development/resources/common-patterns.md +331 -0
  45. package/templates/skills/frontend-development/resources/complete-examples.md +872 -0
  46. package/templates/skills/frontend-development/resources/component-patterns.md +502 -0
  47. package/templates/skills/frontend-development/resources/data-fetching.md +767 -0
  48. package/templates/skills/frontend-development/resources/file-organization.md +502 -0
  49. package/templates/skills/frontend-development/resources/loading-and-error-states.md +501 -0
  50. package/templates/skills/frontend-development/resources/performance.md +406 -0
  51. package/templates/skills/frontend-development/resources/routing-guide.md +364 -0
  52. package/templates/skills/frontend-development/resources/styling-guide.md +428 -0
  53. package/templates/skills/frontend-development/resources/typescript-standards.md +418 -0
  54. package/templates/skills/problem-solving/SKILL.mdc +96 -0
  55. package/templates/skills/problem-solving/references/attribution.md +69 -0
  56. package/templates/skills/problem-solving/references/collision-zone-thinking.md +79 -0
  57. package/templates/skills/problem-solving/references/inversion-exercise.md +91 -0
  58. package/templates/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
  59. package/templates/skills/problem-solving/references/scale-game.md +95 -0
  60. package/templates/skills/problem-solving/references/simplification-cascades.md +80 -0
  61. package/templates/skills/problem-solving/references/when-stuck.md +72 -0
  62. package/templates/skills/research/SKILL.mdc +168 -0
  63. package/templates/skills/sequential-thinking/.env.example +8 -0
  64. package/templates/skills/sequential-thinking/README.md +183 -0
  65. package/templates/skills/sequential-thinking/SKILL.mdc +94 -0
  66. package/templates/skills/sequential-thinking/package.json +31 -0
  67. package/templates/skills/sequential-thinking/references/advanced-strategies.md +79 -0
  68. package/templates/skills/sequential-thinking/references/advanced-techniques.md +76 -0
  69. package/templates/skills/sequential-thinking/references/core-patterns.md +95 -0
  70. package/templates/skills/sequential-thinking/references/examples-api.md +88 -0
  71. package/templates/skills/sequential-thinking/references/examples-architecture.md +94 -0
  72. package/templates/skills/sequential-thinking/references/examples-debug.md +90 -0
  73. package/templates/skills/sequential-thinking/scripts/format-thought.js +159 -0
  74. package/templates/skills/sequential-thinking/scripts/process-thought.js +236 -0
  75. package/templates/skills/sequential-thinking/tests/format-thought.test.js +133 -0
  76. package/templates/skills/sequential-thinking/tests/process-thought.test.js +215 -0
  77. package/templates/skills/ui-styling/LICENSE.txt +202 -0
  78. package/templates/skills/ui-styling/SKILL.mdc +321 -0
  79. package/templates/skills/ui-styling/references/canvas-design-system.md +320 -0
  80. package/templates/skills/ui-styling/references/shadcn-accessibility.md +471 -0
  81. package/templates/skills/ui-styling/references/shadcn-components.md +424 -0
  82. package/templates/skills/ui-styling/references/shadcn-theming.md +373 -0
  83. package/templates/skills/ui-styling/references/tailwind-customization.md +483 -0
  84. package/templates/skills/ui-styling/references/tailwind-responsive.md +382 -0
  85. package/templates/skills/ui-styling/references/tailwind-utilities.md +455 -0
  86. package/templates/rules/frontend-design.mdc +0 -48
  87. package/templates/rules/performance.mdc +0 -54
  88. package/templates/rules/react.mdc +0 -58
  89. package/templates/rules/security.mdc +0 -50
  90. package/templates/rules/testing.mdc +0 -54
  91. package/templates/rules/typescript.mdc +0 -36
@@ -0,0 +1,321 @@
1
+ ---
2
+ name: ui-styling
3
+ description: Create beautiful, accessible user interfaces with shadcn/ui components (built on Radix UI + Tailwind), Tailwind CSS utility-first styling, and canvas-based visual designs. Use when building user interfaces, implementing design systems, creating responsive layouts, adding accessible components (dialogs, dropdowns, forms, tables), customizing themes and colors, implementing dark mode, generating visual designs and posters, or establishing consistent styling patterns across applications.
4
+ license: MIT
5
+ version: 1.0.0
6
+ ---
7
+
8
+ # UI Styling Skill
9
+
10
+ Comprehensive skill for creating beautiful, accessible user interfaces combining shadcn/ui components, Tailwind CSS utility styling, and canvas-based visual design systems.
11
+
12
+ ## Reference
13
+
14
+ - shadcn/ui: https://ui.shadcn.com/llms.txt
15
+ - Tailwind CSS: https://tailwindcss.com/docs
16
+
17
+ ## When to Use This Skill
18
+
19
+ Use when:
20
+ - Building UI with React-based frameworks (Next.js, Vite, Remix, Astro)
21
+ - Implementing accessible components (dialogs, forms, tables, navigation)
22
+ - Styling with utility-first CSS approach
23
+ - Creating responsive, mobile-first layouts
24
+ - Implementing dark mode and theme customization
25
+ - Building design systems with consistent tokens
26
+ - Generating visual designs, posters, or brand materials
27
+ - Rapid prototyping with immediate visual feedback
28
+ - Adding complex UI patterns (data tables, charts, command palettes)
29
+
30
+ ## Core Stack
31
+
32
+ ### Component Layer: shadcn/ui
33
+ - Pre-built accessible components via Radix UI primitives
34
+ - Copy-paste distribution model (components live in your codebase)
35
+ - TypeScript-first with full type safety
36
+ - Composable primitives for complex UIs
37
+ - CLI-based installation and management
38
+
39
+ ### Styling Layer: Tailwind CSS
40
+ - Utility-first CSS framework
41
+ - Build-time processing with zero runtime overhead
42
+ - Mobile-first responsive design
43
+ - Consistent design tokens (colors, spacing, typography)
44
+ - Automatic dead code elimination
45
+
46
+ ### Visual Design Layer: Canvas
47
+ - Museum-quality visual compositions
48
+ - Philosophy-driven design approach
49
+ - Sophisticated visual communication
50
+ - Minimal text, maximum visual impact
51
+ - Systematic patterns and refined aesthetics
52
+
53
+ ## Quick Start
54
+
55
+ ### Component + Styling Setup
56
+
57
+ **Install shadcn/ui with Tailwind:**
58
+ ```bash
59
+ npx shadcn@latest init
60
+ ```
61
+
62
+ CLI prompts for framework, TypeScript, paths, and theme preferences. This configures both shadcn/ui and Tailwind CSS.
63
+
64
+ **Add components:**
65
+ ```bash
66
+ npx shadcn@latest add button card dialog form
67
+ ```
68
+
69
+ **Use components with utility styling:**
70
+ ```tsx
71
+ import { Button } from "@/components/ui/button"
72
+ import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card"
73
+
74
+ export function Dashboard() {
75
+ return (
76
+ <div className="container mx-auto p-6 grid gap-6 md:grid-cols-2 lg:grid-cols-3">
77
+ <Card className="hover:shadow-lg transition-shadow">
78
+ <CardHeader>
79
+ <CardTitle className="text-2xl font-bold">Analytics</CardTitle>
80
+ </CardHeader>
81
+ <CardContent className="space-y-4">
82
+ <p className="text-muted-foreground">View your metrics</p>
83
+ <Button variant="default" className="w-full">
84
+ View Details
85
+ </Button>
86
+ </CardContent>
87
+ </Card>
88
+ </div>
89
+ )
90
+ }
91
+ ```
92
+
93
+ ### Alternative: Tailwind-Only Setup
94
+
95
+ **Vite projects:**
96
+ ```bash
97
+ npm install -D tailwindcss @tailwindcss/vite
98
+ ```
99
+
100
+ ```javascript
101
+ // vite.config.ts
102
+ import tailwindcss from '@tailwindcss/vite'
103
+ export default { plugins: [tailwindcss()] }
104
+ ```
105
+
106
+ ```css
107
+ /* src/index.css */
108
+ @import "tailwindcss";
109
+ ```
110
+
111
+ ## Component Library Guide
112
+
113
+ **Comprehensive component catalog with usage patterns, installation, and composition examples.**
114
+
115
+ See: `references/shadcn-components.md`
116
+
117
+ Covers:
118
+ - Form & input components (Button, Input, Select, Checkbox, Date Picker, Form validation)
119
+ - Layout & navigation (Card, Tabs, Accordion, Navigation Menu)
120
+ - Overlays & dialogs (Dialog, Drawer, Popover, Toast, Command)
121
+ - Feedback & status (Alert, Progress, Skeleton)
122
+ - Display components (Table, Data Table, Avatar, Badge)
123
+
124
+ ## Theme & Customization
125
+
126
+ **Theme configuration, CSS variables, dark mode implementation, and component customization.**
127
+
128
+ See: `references/shadcn-theming.md`
129
+
130
+ Covers:
131
+ - Dark mode setup with next-themes
132
+ - CSS variable system
133
+ - Color customization and palettes
134
+ - Component variant customization
135
+ - Theme toggle implementation
136
+
137
+ ## Accessibility Patterns
138
+
139
+ **ARIA patterns, keyboard navigation, screen reader support, and accessible component usage.**
140
+
141
+ See: `references/shadcn-accessibility.md`
142
+
143
+ Covers:
144
+ - Radix UI accessibility features
145
+ - Keyboard navigation patterns
146
+ - Focus management
147
+ - Screen reader announcements
148
+ - Form validation accessibility
149
+
150
+ ## Tailwind Utilities
151
+
152
+ **Core utility classes for layout, spacing, typography, colors, borders, and shadows.**
153
+
154
+ See: `references/tailwind-utilities.md`
155
+
156
+ Covers:
157
+ - Layout utilities (Flexbox, Grid, positioning)
158
+ - Spacing system (padding, margin, gap)
159
+ - Typography (font sizes, weights, alignment, line height)
160
+ - Colors and backgrounds
161
+ - Borders and shadows
162
+ - Arbitrary values for custom styling
163
+
164
+ ## Responsive Design
165
+
166
+ **Mobile-first breakpoints, responsive utilities, and adaptive layouts.**
167
+
168
+ See: `references/tailwind-responsive.md`
169
+
170
+ Covers:
171
+ - Mobile-first approach
172
+ - Breakpoint system (sm, md, lg, xl, 2xl)
173
+ - Responsive utility patterns
174
+ - Container queries
175
+ - Max-width queries
176
+ - Custom breakpoints
177
+
178
+ ## Tailwind Customization
179
+
180
+ **Config file structure, custom utilities, plugins, and theme extensions.**
181
+
182
+ See: `references/tailwind-customization.md`
183
+
184
+ Covers:
185
+ - @theme directive for custom tokens
186
+ - Custom colors and fonts
187
+ - Spacing and breakpoint extensions
188
+ - Custom utility creation
189
+ - Custom variants
190
+ - Layer organization (@layer base, components, utilities)
191
+ - Apply directive for component extraction
192
+
193
+ ## Visual Design System
194
+
195
+ **Canvas-based design philosophy, visual communication principles, and sophisticated compositions.**
196
+
197
+ See: `references/canvas-design-system.md`
198
+
199
+ Covers:
200
+ - Design philosophy approach
201
+ - Visual communication over text
202
+ - Systematic patterns and composition
203
+ - Color, form, and spatial design
204
+ - Minimal text integration
205
+ - Museum-quality execution
206
+ - Multi-page design systems
207
+
208
+ ## Utility Scripts
209
+
210
+ **Python automation for component installation and configuration generation.**
211
+
212
+ ### shadcn_add.py
213
+ Add shadcn/ui components with dependency handling:
214
+ ```bash
215
+ python scripts/shadcn_add.py button card dialog
216
+ ```
217
+
218
+ ### tailwind_config_gen.py
219
+ Generate tailwind.config.js with custom theme:
220
+ ```bash
221
+ python scripts/tailwind_config_gen.py --colors brand:blue --fonts display:Inter
222
+ ```
223
+
224
+ ## Best Practices
225
+
226
+ 1. **Component Composition**: Build complex UIs from simple, composable primitives
227
+ 2. **Utility-First Styling**: Use Tailwind classes directly; extract components only for true repetition
228
+ 3. **Mobile-First Responsive**: Start with mobile styles, layer responsive variants
229
+ 4. **Accessibility-First**: Leverage Radix UI primitives, add focus states, use semantic HTML
230
+ 5. **Design Tokens**: Use consistent spacing scale, color palettes, typography system
231
+ 6. **Dark Mode Consistency**: Apply dark variants to all themed elements
232
+ 7. **Performance**: Leverage automatic CSS purging, avoid dynamic class names
233
+ 8. **TypeScript**: Use full type safety for better DX
234
+ 9. **Visual Hierarchy**: Let composition guide attention, use spacing and color intentionally
235
+ 10. **Expert Craftsmanship**: Every detail matters - treat UI as a craft
236
+
237
+ ## Reference Navigation
238
+
239
+ **Component Library**
240
+ - `references/shadcn-components.md` - Complete component catalog
241
+ - `references/shadcn-theming.md` - Theming and customization
242
+ - `references/shadcn-accessibility.md` - Accessibility patterns
243
+
244
+ **Styling System**
245
+ - `references/tailwind-utilities.md` - Core utility classes
246
+ - `references/tailwind-responsive.md` - Responsive design
247
+ - `references/tailwind-customization.md` - Configuration and extensions
248
+
249
+ **Visual Design**
250
+ - `references/canvas-design-system.md` - Design philosophy and canvas workflows
251
+
252
+ **Automation**
253
+ - `scripts/shadcn_add.py` - Component installation
254
+ - `scripts/tailwind_config_gen.py` - Config generation
255
+
256
+ ## Common Patterns
257
+
258
+ **Form with validation:**
259
+ ```tsx
260
+ import { useForm } from "react-hook-form"
261
+ import { zodResolver } from "@hookform/resolvers/zod"
262
+ import * as z from "zod"
263
+ import { Form, FormField, FormItem, FormLabel, FormControl, FormMessage } from "@/components/ui/form"
264
+ import { Input } from "@/components/ui/input"
265
+ import { Button } from "@/components/ui/button"
266
+
267
+ const schema = z.object({
268
+ email: z.string().email(),
269
+ password: z.string().min(8)
270
+ })
271
+
272
+ export function LoginForm() {
273
+ const form = useForm({
274
+ resolver: zodResolver(schema),
275
+ defaultValues: { email: "", password: "" }
276
+ })
277
+
278
+ return (
279
+ <Form {...form}>
280
+ <form onSubmit={form.handleSubmit(console.log)} className="space-y-6">
281
+ <FormField control={form.control} name="email" render={({ field }) => (
282
+ <FormItem>
283
+ <FormLabel>Email</FormLabel>
284
+ <FormControl>
285
+ <Input type="email" {...field} />
286
+ </FormControl>
287
+ <FormMessage />
288
+ </FormItem>
289
+ )} />
290
+ <Button type="submit" className="w-full">Sign In</Button>
291
+ </form>
292
+ </Form>
293
+ )
294
+ }
295
+ ```
296
+
297
+ **Responsive layout with dark mode:**
298
+ ```tsx
299
+ <div className="min-h-screen bg-white dark:bg-gray-900">
300
+ <div className="container mx-auto px-4 py-8">
301
+ <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
302
+ <Card className="bg-white dark:bg-gray-800 border-gray-200 dark:border-gray-700">
303
+ <CardContent className="p-6">
304
+ <h3 className="text-xl font-semibold text-gray-900 dark:text-white">
305
+ Content
306
+ </h3>
307
+ </CardContent>
308
+ </Card>
309
+ </div>
310
+ </div>
311
+ </div>
312
+ ```
313
+
314
+ ## Resources
315
+
316
+ - shadcn/ui Docs: https://ui.shadcn.com
317
+ - Tailwind CSS Docs: https://tailwindcss.com
318
+ - Radix UI: https://radix-ui.com
319
+ - Tailwind UI: https://tailwindui.com
320
+ - Headless UI: https://headlessui.com
321
+ - v0 (AI UI Generator): https://v0.dev
@@ -0,0 +1,320 @@
1
+ # Canvas Design System
2
+
3
+ Visual design philosophy, systematic composition, and sophisticated visual communication.
4
+
5
+ ## Design Philosophy Approach
6
+
7
+ Canvas design operates through two-phase process:
8
+
9
+ ### Phase 1: Design Philosophy Creation
10
+
11
+ Create visual philosophy - aesthetic movement expressed through form, space, color, composition. Not layouts or templates, but pure visual philosophy.
12
+
13
+ **What is created:** Design manifesto emphasizing:
14
+ - Visual expression over text
15
+ - Spatial communication
16
+ - Artistic interpretation
17
+ - Minimal words as visual accent
18
+
19
+ **Philosophy structure (4-6 paragraphs):**
20
+ - Space and form principles
21
+ - Color and material approach
22
+ - Scale and rhythm guidance
23
+ - Composition and balance rules
24
+ - Visual hierarchy system
25
+
26
+ ### Phase 2: Visual Expression
27
+
28
+ Express philosophy through canvas artifacts:
29
+ - 90% visual design
30
+ - 10% essential text
31
+ - Museum-quality execution
32
+ - Systematic patterns
33
+ - Sophisticated composition
34
+
35
+ ## Core Principles
36
+
37
+ ### 1. Visual Communication First
38
+
39
+ Information lives in design, not paragraphs. Express ideas through:
40
+ - Color zones and fields
41
+ - Geometric precision
42
+ - Spatial relationships
43
+ - Visual weight and tension
44
+ - Form and structure
45
+
46
+ ### 2. Minimal Text Integration
47
+
48
+ Text as rare, powerful gesture:
49
+ - Never paragraphs
50
+ - Only essential words
51
+ - Integrated into visual architecture
52
+ - Small labels, huge impact
53
+ - Typography as visual element
54
+
55
+ ### 3. Expert Craftsmanship
56
+
57
+ Work must appear:
58
+ - Meticulously crafted
59
+ - Labored over with care
60
+ - Product of countless hours
61
+ - From absolute top of field
62
+ - Master-level execution
63
+
64
+ ### 4. Systematic Patterns
65
+
66
+ Use scientific visual language:
67
+ - Repeating patterns
68
+ - Perfect shapes
69
+ - Dense accumulation of marks
70
+ - Layered elements
71
+ - Patient repetition rewards sustained viewing
72
+
73
+ ## Design Movement Examples
74
+
75
+ ### Concrete Poetry
76
+ **Philosophy:** Communication through monumental form and bold geometry.
77
+
78
+ **Expression:**
79
+ - Massive color blocks
80
+ - Sculptural typography (huge words, tiny labels)
81
+ - Brutalist spatial divisions
82
+ - Polish poster energy meets Le Corbusier
83
+ - Ideas through visual weight and spatial tension
84
+ - Text as rare, powerful gesture
85
+
86
+ ### Chromatic Language
87
+ **Philosophy:** Color as primary information system.
88
+
89
+ **Expression:**
90
+ - Geometric precision
91
+ - Color zones create meaning
92
+ - Typography minimal - small sans-serif labels
93
+ - Josef Albers' interaction meets data visualization
94
+ - Information encoded spatially and chromatically
95
+ - Words only anchor what color shows
96
+
97
+ ### Analog Meditation
98
+ **Philosophy:** Quiet visual contemplation through texture and breathing room.
99
+
100
+ **Expression:**
101
+ - Paper grain, ink bleeds
102
+ - Vast negative space
103
+ - Photography and illustration dominate
104
+ - Typography whispered (small, restrained)
105
+ - Japanese photobook aesthetic
106
+ - Images breathe across pages
107
+ - Text appears sparingly - short phrases only
108
+
109
+ ### Organic Systems
110
+ **Philosophy:** Natural clustering and modular growth patterns.
111
+
112
+ **Expression:**
113
+ - Rounded forms
114
+ - Organic arrangements
115
+ - Color from nature through architecture
116
+ - Information through visual diagrams
117
+ - Spatial relationships and iconography
118
+ - Text only for key labels floating in space
119
+ - Composition tells story through spatial orchestration
120
+
121
+ ### Geometric Silence
122
+ **Philosophy:** Pure order and restraint.
123
+
124
+ **Expression:**
125
+ - Grid-based precision
126
+ - Bold photography or stark graphics
127
+ - Dramatic negative space
128
+ - Typography precise but minimal
129
+ - Small essential text, large quiet zones
130
+ - Swiss formalism meets Brutalist material honesty
131
+ - Structure communicates, not words
132
+ - Every alignment from countless refinements
133
+
134
+ ## Implementation Guidelines
135
+
136
+ ### Subtle Reference Integration
137
+
138
+ Embed conceptual DNA without announcing:
139
+ - Niche reference woven invisibly
140
+ - Those who know feel it intuitively
141
+ - Others experience masterful abstract composition
142
+ - Like jazz musician quoting another song
143
+ - Sophisticated, never literal
144
+ - Reference enhances depth quietly
145
+
146
+ ### Color Approach
147
+
148
+ **Intentional palette:**
149
+ - Limited colors (2-5)
150
+ - Cohesive system
151
+ - Purposeful relationships
152
+ - oklch color space for precision
153
+ - Each shade carries meaning
154
+
155
+ **Example palette:**
156
+ ```
157
+ --color-primary: oklch(0.55 0.22 264)
158
+ --color-accent: oklch(0.75 0.18 45)
159
+ --color-neutral: oklch(0.90 0.02 264)
160
+ --color-dark: oklch(0.25 0.15 264)
161
+ ```
162
+
163
+ ### Typography System
164
+
165
+ **Thin fonts preferred:**
166
+ - Light weights (200-300)
167
+ - Clean sans-serifs
168
+ - Geometric precision
169
+ - Small sizes for labels
170
+ - Large sizes for impact moments
171
+
172
+ **Font integration:**
173
+ - Search `./canvas-fonts` directory
174
+ - Download needed fonts
175
+ - Bring typography onto canvas
176
+ - Part of art, not typeset digitally
177
+
178
+ ### Composition Rules
179
+
180
+ **Systematic approach:**
181
+ - Repeating patterns establish rhythm
182
+ - Perfect geometric shapes
183
+ - Clinical typography
184
+ - Reference markers suggest imaginary discipline
185
+ - Dense accumulation builds meaning
186
+ - Layered patterns reward attention
187
+
188
+ **Spacing discipline:**
189
+ - Nothing falls off page
190
+ - Nothing overlaps
191
+ - Every element within canvas boundaries
192
+ - Proper margins non-negotiable
193
+ - Breathing room and clear separation
194
+ - Professional execution mandatory
195
+
196
+ ### Canvas Boundaries
197
+
198
+ **Technical specs:**
199
+ - Single page default (multi-page when requested)
200
+ - PDF or PNG output
201
+ - High resolution
202
+ - Clean margins
203
+ - Contained composition
204
+ - Flawless formatting
205
+
206
+ ## Multi-Page Design Systems
207
+
208
+ When creating multiple pages:
209
+
210
+ ### Approach
211
+ - Treat first page as single page in coffee table book
212
+ - Create more pages along same philosophy
213
+ - Distinctly different but cohesive
214
+ - Pages tell story tastefully
215
+ - Full creative freedom
216
+
217
+ ### Consistency Elements
218
+ - Shared color palette
219
+ - Consistent typography system
220
+ - Related compositional approach
221
+ - Visual language continuity
222
+ - Philosophical thread throughout
223
+
224
+ ### Variation Strategy
225
+ - Unique twist per page
226
+ - Different focal points
227
+ - Varied spatial arrangements
228
+ - Complementary patterns
229
+ - Progressive visual narrative
230
+
231
+ ## Execution Checklist
232
+
233
+ Before finalizing:
234
+
235
+ - [ ] Philosophy guides every decision
236
+ - [ ] 90% visual, 10% text maximum
237
+ - [ ] Text minimal and integrated
238
+ - [ ] Nothing overlaps or falls off page
239
+ - [ ] Margins and spacing pristine
240
+ - [ ] Composition cohesive with art
241
+ - [ ] Appears meticulously crafted
242
+ - [ ] Master-level execution evident
243
+ - [ ] Sophisticated, never amateur
244
+ - [ ] Could be displayed in museum
245
+ - [ ] Proves undeniable expertise
246
+ - [ ] Formatting flawless
247
+ - [ ] Every detail perfect
248
+
249
+ ## Quality Standards
250
+
251
+ ### What to Avoid
252
+ - Cartoony aesthetics
253
+ - Amateur execution
254
+ - Text-heavy composition
255
+ - Random placement
256
+ - Overlapping elements
257
+ - Inconsistent spacing
258
+ - Obvious AI generation
259
+ - Lack of refinement
260
+
261
+ ### What to Achieve
262
+ - Museum quality
263
+ - Magazine worthy
264
+ - Art object status
265
+ - Countless hours appearance
266
+ - Top-of-field craftsmanship
267
+ - Philosophical coherence
268
+ - Visual sophistication
269
+ - Systematic precision
270
+
271
+ ## Refinement Process
272
+
273
+ ### Initial Pass
274
+ Create based on philosophy and principles.
275
+
276
+ ### Second Pass (Critical)
277
+ - Don't add more graphics
278
+ - Refine what exists
279
+ - Make extremely crisp
280
+ - Respect minimalism philosophy
281
+ - Increase cohesion with art
282
+ - Make existing elements more artistic
283
+ - Polish rather than expand
284
+
285
+ ### Final Verification
286
+ User already said: "It isn't perfect enough. Must be pristine, masterpiece of craftsmanship, as if about to be displayed in museum."
287
+
288
+ Apply this standard before delivery.
289
+
290
+ ## Output Format
291
+
292
+ **Required files:**
293
+ 1. Design philosophy (.md file)
294
+ 2. Visual expression (.pdf or .png)
295
+
296
+ **Philosophy file contains:**
297
+ - Movement name
298
+ - 4-6 paragraph philosophy
299
+ - Visual principles
300
+ - Execution guidance
301
+
302
+ **Canvas file contains:**
303
+ - Visual interpretation
304
+ - Minimal text
305
+ - Systematic composition
306
+ - Expert-level execution
307
+
308
+ ## Use Cases
309
+
310
+ Apply canvas design for:
311
+ - Brand identity systems
312
+ - Poster designs
313
+ - Visual manifestos
314
+ - Design system documentation
315
+ - Art pieces and compositions
316
+ - Conceptual visual frameworks
317
+ - Editorial design
318
+ - Exhibition materials
319
+ - Coffee table books
320
+ - Design philosophy demonstrations