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

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 (92) hide show
  1. package/bin/cursor-reinstall-instance.sh +102 -0
  2. package/dist/cli.cjs +366 -69
  3. package/dist/cli.cjs.map +1 -1
  4. package/dist/cli.js +367 -70
  5. package/dist/cli.js.map +1 -1
  6. package/dist/index.cjs +39 -1
  7. package/dist/index.cjs.map +1 -1
  8. package/dist/index.d.cts +9 -1
  9. package/dist/index.d.ts +9 -1
  10. package/dist/index.js +33 -2
  11. package/dist/index.js.map +1 -1
  12. package/package.json +1 -1
  13. package/templates/commands/docs.md +5 -3
  14. package/templates/commands/explain.md +5 -3
  15. package/templates/commands/fix.md +5 -3
  16. package/templates/commands/implement.md +5 -3
  17. package/templates/commands/refactor.md +5 -3
  18. package/templates/commands/review.md +5 -3
  19. package/templates/commands/test.md +5 -3
  20. package/templates/manifest.json +11 -8
  21. package/templates/rules/git.mdc +0 -2
  22. package/templates/rules/toc.mdc +17 -9
  23. package/templates/skills/aesthetic/SKILL.md +121 -0
  24. package/templates/skills/aesthetic/assets/design-guideline-template.md +163 -0
  25. package/templates/skills/aesthetic/assets/design-story-template.md +135 -0
  26. package/templates/skills/aesthetic/references/design-principles.md +62 -0
  27. package/templates/skills/aesthetic/references/design-resources.md +75 -0
  28. package/templates/skills/aesthetic/references/micro-interactions.md +53 -0
  29. package/templates/skills/aesthetic/references/storytelling-design.md +50 -0
  30. package/templates/skills/backend-development/SKILL.mdc +95 -0
  31. package/templates/skills/backend-development/references/backend-api-design.md +495 -0
  32. package/templates/skills/backend-development/references/backend-architecture.md +454 -0
  33. package/templates/skills/backend-development/references/backend-authentication.md +338 -0
  34. package/templates/skills/backend-development/references/backend-code-quality.md +659 -0
  35. package/templates/skills/backend-development/references/backend-debugging.md +904 -0
  36. package/templates/skills/backend-development/references/backend-devops.md +494 -0
  37. package/templates/skills/backend-development/references/backend-mindset.md +387 -0
  38. package/templates/skills/backend-development/references/backend-performance.md +397 -0
  39. package/templates/skills/backend-development/references/backend-security.md +290 -0
  40. package/templates/skills/backend-development/references/backend-technologies.md +256 -0
  41. package/templates/skills/backend-development/references/backend-testing.md +429 -0
  42. package/templates/skills/frontend-design/SKILL.mdc +41 -0
  43. package/templates/skills/frontend-design/references/animejs.md +396 -0
  44. package/templates/skills/frontend-development/SKILL.mdc +399 -0
  45. package/templates/skills/frontend-development/resources/common-patterns.md +331 -0
  46. package/templates/skills/frontend-development/resources/complete-examples.md +872 -0
  47. package/templates/skills/frontend-development/resources/component-patterns.md +502 -0
  48. package/templates/skills/frontend-development/resources/data-fetching.md +767 -0
  49. package/templates/skills/frontend-development/resources/file-organization.md +502 -0
  50. package/templates/skills/frontend-development/resources/loading-and-error-states.md +501 -0
  51. package/templates/skills/frontend-development/resources/performance.md +406 -0
  52. package/templates/skills/frontend-development/resources/routing-guide.md +364 -0
  53. package/templates/skills/frontend-development/resources/styling-guide.md +428 -0
  54. package/templates/skills/frontend-development/resources/typescript-standards.md +418 -0
  55. package/templates/skills/problem-solving/SKILL.mdc +96 -0
  56. package/templates/skills/problem-solving/references/attribution.md +69 -0
  57. package/templates/skills/problem-solving/references/collision-zone-thinking.md +79 -0
  58. package/templates/skills/problem-solving/references/inversion-exercise.md +91 -0
  59. package/templates/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
  60. package/templates/skills/problem-solving/references/scale-game.md +95 -0
  61. package/templates/skills/problem-solving/references/simplification-cascades.md +80 -0
  62. package/templates/skills/problem-solving/references/when-stuck.md +72 -0
  63. package/templates/skills/research/SKILL.mdc +168 -0
  64. package/templates/skills/sequential-thinking/.env.example +8 -0
  65. package/templates/skills/sequential-thinking/README.md +183 -0
  66. package/templates/skills/sequential-thinking/SKILL.mdc +94 -0
  67. package/templates/skills/sequential-thinking/package.json +31 -0
  68. package/templates/skills/sequential-thinking/references/advanced-strategies.md +79 -0
  69. package/templates/skills/sequential-thinking/references/advanced-techniques.md +76 -0
  70. package/templates/skills/sequential-thinking/references/core-patterns.md +95 -0
  71. package/templates/skills/sequential-thinking/references/examples-api.md +88 -0
  72. package/templates/skills/sequential-thinking/references/examples-architecture.md +94 -0
  73. package/templates/skills/sequential-thinking/references/examples-debug.md +90 -0
  74. package/templates/skills/sequential-thinking/scripts/format-thought.js +159 -0
  75. package/templates/skills/sequential-thinking/scripts/process-thought.js +236 -0
  76. package/templates/skills/sequential-thinking/tests/format-thought.test.js +133 -0
  77. package/templates/skills/sequential-thinking/tests/process-thought.test.js +215 -0
  78. package/templates/skills/ui-styling/LICENSE.txt +202 -0
  79. package/templates/skills/ui-styling/SKILL.mdc +321 -0
  80. package/templates/skills/ui-styling/references/canvas-design-system.md +320 -0
  81. package/templates/skills/ui-styling/references/shadcn-accessibility.md +471 -0
  82. package/templates/skills/ui-styling/references/shadcn-components.md +424 -0
  83. package/templates/skills/ui-styling/references/shadcn-theming.md +373 -0
  84. package/templates/skills/ui-styling/references/tailwind-customization.md +483 -0
  85. package/templates/skills/ui-styling/references/tailwind-responsive.md +382 -0
  86. package/templates/skills/ui-styling/references/tailwind-utilities.md +455 -0
  87. package/templates/rules/frontend-design.mdc +0 -48
  88. package/templates/rules/performance.mdc +0 -54
  89. package/templates/rules/react.mdc +0 -58
  90. package/templates/rules/security.mdc +0 -50
  91. package/templates/rules/testing.mdc +0 -54
  92. package/templates/rules/typescript.mdc +0 -36
@@ -0,0 +1,373 @@
1
+ # shadcn/ui Theming & Customization
2
+
3
+ Theme configuration, CSS variables, dark mode, and component customization.
4
+
5
+ ## Dark Mode Setup
6
+
7
+ ### Next.js App Router
8
+
9
+ **1. Install next-themes:**
10
+ ```bash
11
+ npm install next-themes
12
+ ```
13
+
14
+ **2. Create theme provider:**
15
+ ```tsx
16
+ // components/theme-provider.tsx
17
+ "use client"
18
+
19
+ import * as React from "react"
20
+ import { ThemeProvider as NextThemesProvider } from "next-themes"
21
+
22
+ export function ThemeProvider({
23
+ children,
24
+ ...props
25
+ }: React.ComponentProps<typeof NextThemesProvider>) {
26
+ return <NextThemesProvider {...props}>{children}</NextThemesProvider>
27
+ }
28
+ ```
29
+
30
+ **3. Wrap app:**
31
+ ```tsx
32
+ // app/layout.tsx
33
+ import { ThemeProvider } from "@/components/theme-provider"
34
+
35
+ export default function RootLayout({ children }) {
36
+ return (
37
+ <html lang="en" suppressHydrationWarning>
38
+ <body>
39
+ <ThemeProvider
40
+ attribute="class"
41
+ defaultTheme="system"
42
+ enableSystem
43
+ disableTransitionOnChange
44
+ >
45
+ {children}
46
+ </ThemeProvider>
47
+ </body>
48
+ </html>
49
+ )
50
+ }
51
+ ```
52
+
53
+ **4. Theme toggle component:**
54
+ ```tsx
55
+ import { Moon, Sun } from "lucide-react"
56
+ import { useTheme } from "next-themes"
57
+ import { Button } from "@/components/ui/button"
58
+
59
+ export function ThemeToggle() {
60
+ const { setTheme, theme } = useTheme()
61
+
62
+ return (
63
+ <Button
64
+ variant="ghost"
65
+ size="icon"
66
+ onClick={() => setTheme(theme === "light" ? "dark" : "light")}
67
+ >
68
+ <Sun className="h-[1.2rem] w-[1.2rem] rotate-0 scale-100 transition-all dark:-rotate-90 dark:scale-0" />
69
+ <Moon className="absolute h-[1.2rem] w-[1.2rem] rotate-90 scale-0 transition-all dark:rotate-0 dark:scale-100" />
70
+ <span className="sr-only">Toggle theme</span>
71
+ </Button>
72
+ )
73
+ }
74
+ ```
75
+
76
+ ### Vite / Other Frameworks
77
+
78
+ Use similar approach with next-themes or implement custom solution:
79
+
80
+ ```javascript
81
+ // Store preference
82
+ function toggleDarkMode() {
83
+ const isDark = document.documentElement.classList.toggle('dark')
84
+ localStorage.setItem('theme', isDark ? 'dark' : 'light')
85
+ }
86
+
87
+ // Initialize on load
88
+ if (localStorage.theme === 'dark' ||
89
+ (!('theme' in localStorage) &&
90
+ window.matchMedia('(prefers-color-scheme: dark)').matches)) {
91
+ document.documentElement.classList.add('dark')
92
+ }
93
+ ```
94
+
95
+ ## CSS Variable System
96
+
97
+ shadcn/ui uses CSS variables for theming. Variables defined in `globals.css`:
98
+
99
+ ```css
100
+ @layer base {
101
+ :root {
102
+ --background: 0 0% 100%;
103
+ --foreground: 222.2 84% 4.9%;
104
+ --primary: 222.2 47.4% 11.2%;
105
+ --primary-foreground: 210 40% 98%;
106
+ --secondary: 210 40% 96.1%;
107
+ --secondary-foreground: 222.2 47.4% 11.2%;
108
+ --muted: 210 40% 96.1%;
109
+ --muted-foreground: 215.4 16.3% 46.9%;
110
+ --accent: 210 40% 96.1%;
111
+ --accent-foreground: 222.2 47.4% 11.2%;
112
+ --destructive: 0 84.2% 60.2%;
113
+ --destructive-foreground: 210 40% 98%;
114
+ --border: 214.3 31.8% 91.4%;
115
+ --input: 214.3 31.8% 91.4%;
116
+ --ring: 222.2 84% 4.9%;
117
+ --radius: 0.5rem;
118
+ }
119
+
120
+ .dark {
121
+ --background: 222.2 84% 4.9%;
122
+ --foreground: 210 40% 98%;
123
+ --primary: 210 40% 98%;
124
+ --primary-foreground: 222.2 47.4% 11.2%;
125
+ --secondary: 217.2 32.6% 17.5%;
126
+ --secondary-foreground: 210 40% 98%;
127
+ --muted: 217.2 32.6% 17.5%;
128
+ --muted-foreground: 215 20.2% 65.1%;
129
+ --accent: 217.2 32.6% 17.5%;
130
+ --accent-foreground: 210 40% 98%;
131
+ --destructive: 0 62.8% 30.6%;
132
+ --destructive-foreground: 210 40% 98%;
133
+ --border: 217.2 32.6% 17.5%;
134
+ --input: 217.2 32.6% 17.5%;
135
+ --ring: 212.7 26.8% 83.9%;
136
+ }
137
+ }
138
+ ```
139
+
140
+ ### Color Format
141
+
142
+ Values use HSL format without `hsl()` wrapper for better opacity control:
143
+ ```css
144
+ --primary: 222.2 47.4% 11.2%; /* H S L */
145
+ ```
146
+
147
+ Usage in Tailwind:
148
+ ```css
149
+ background: hsl(var(--primary));
150
+ background: hsl(var(--primary) / 0.5); /* 50% opacity */
151
+ ```
152
+
153
+ ## Tailwind Configuration
154
+
155
+ Map CSS variables to Tailwind utilities:
156
+
157
+ ```ts
158
+ // tailwind.config.ts
159
+ export default {
160
+ darkMode: ["class"],
161
+ theme: {
162
+ extend: {
163
+ colors: {
164
+ border: "hsl(var(--border))",
165
+ input: "hsl(var(--input))",
166
+ ring: "hsl(var(--ring))",
167
+ background: "hsl(var(--background))",
168
+ foreground: "hsl(var(--foreground))",
169
+ primary: {
170
+ DEFAULT: "hsl(var(--primary))",
171
+ foreground: "hsl(var(--primary-foreground))",
172
+ },
173
+ secondary: {
174
+ DEFAULT: "hsl(var(--secondary))",
175
+ foreground: "hsl(var(--secondary-foreground))",
176
+ },
177
+ destructive: {
178
+ DEFAULT: "hsl(var(--destructive))",
179
+ foreground: "hsl(var(--destructive-foreground))",
180
+ },
181
+ muted: {
182
+ DEFAULT: "hsl(var(--muted))",
183
+ foreground: "hsl(var(--muted-foreground))",
184
+ },
185
+ accent: {
186
+ DEFAULT: "hsl(var(--accent))",
187
+ foreground: "hsl(var(--accent-foreground))",
188
+ },
189
+ },
190
+ borderRadius: {
191
+ lg: "var(--radius)",
192
+ md: "calc(var(--radius) - 2px)",
193
+ sm: "calc(var(--radius) - 4px)",
194
+ },
195
+ },
196
+ },
197
+ }
198
+ ```
199
+
200
+ ## Color Customization
201
+
202
+ ### Method 1: Update CSS Variables
203
+
204
+ Change colors by modifying CSS variables in `globals.css`:
205
+
206
+ ```css
207
+ :root {
208
+ --primary: 262.1 83.3% 57.8%; /* Purple */
209
+ --primary-foreground: 210 20% 98%;
210
+ }
211
+
212
+ .dark {
213
+ --primary: 263.4 70% 50.4%; /* Darker purple */
214
+ --primary-foreground: 210 20% 98%;
215
+ }
216
+ ```
217
+
218
+ ### Method 2: Theme Generator
219
+
220
+ Use shadcn/ui theme generator: https://ui.shadcn.com/themes
221
+
222
+ Select base color, generate theme, copy CSS variables.
223
+
224
+ ### Method 3: Multiple Themes
225
+
226
+ Create theme variants with data attributes:
227
+
228
+ ```css
229
+ [data-theme="violet"] {
230
+ --primary: 262.1 83.3% 57.8%;
231
+ --primary-foreground: 210 20% 98%;
232
+ }
233
+
234
+ [data-theme="rose"] {
235
+ --primary: 346.8 77.2% 49.8%;
236
+ --primary-foreground: 355.7 100% 97.3%;
237
+ }
238
+ ```
239
+
240
+ Apply theme:
241
+ ```tsx
242
+ <div data-theme="violet">
243
+ <Button>Violet theme</Button>
244
+ </div>
245
+ ```
246
+
247
+ ## Component Customization
248
+
249
+ Components live in your codebase - modify directly.
250
+
251
+ ### Customize Variants
252
+
253
+ ```tsx
254
+ // components/ui/button.tsx
255
+ const buttonVariants = cva(
256
+ "inline-flex items-center justify-center rounded-md text-sm font-medium",
257
+ {
258
+ variants: {
259
+ variant: {
260
+ default: "bg-primary text-primary-foreground",
261
+ destructive: "bg-destructive text-destructive-foreground",
262
+ outline: "border border-input bg-background",
263
+ // Add custom variant
264
+ gradient: "bg-gradient-to-r from-purple-500 to-pink-500 text-white",
265
+ },
266
+ size: {
267
+ default: "h-10 px-4 py-2",
268
+ sm: "h-9 rounded-md px-3",
269
+ lg: "h-11 rounded-md px-8",
270
+ // Add custom size
271
+ xl: "h-14 rounded-md px-10 text-lg",
272
+ },
273
+ },
274
+ defaultVariants: {
275
+ variant: "default",
276
+ size: "default",
277
+ },
278
+ }
279
+ )
280
+ ```
281
+
282
+ Usage:
283
+ ```tsx
284
+ <Button variant="gradient" size="xl">Custom Button</Button>
285
+ ```
286
+
287
+ ### Customize Styles
288
+
289
+ Modify base styles in component:
290
+
291
+ ```tsx
292
+ // components/ui/card.tsx
293
+ const Card = React.forwardRef<
294
+ HTMLDivElement,
295
+ React.HTMLAttributes<HTMLDivElement>
296
+ >(({ className, ...props }, ref) => (
297
+ <div
298
+ ref={ref}
299
+ className={cn(
300
+ "rounded-xl border bg-card text-card-foreground shadow-lg", // Modified
301
+ className
302
+ )}
303
+ {...props}
304
+ />
305
+ ))
306
+ ```
307
+
308
+ ### Override with className
309
+
310
+ Pass additional classes to override:
311
+
312
+ ```tsx
313
+ <Card className="border-2 border-purple-500 shadow-2xl hover:scale-105 transition-transform">
314
+ Custom styled card
315
+ </Card>
316
+ ```
317
+
318
+ ## Base Color Presets
319
+
320
+ shadcn/ui provides base color presets during `init`:
321
+
322
+ - **Slate**: Cool gray tones
323
+ - **Gray**: Neutral gray
324
+ - **Zinc**: Warm gray
325
+ - **Neutral**: Balanced gray
326
+ - **Stone**: Earthy gray
327
+
328
+ Select during setup or change later by updating CSS variables.
329
+
330
+ ## Style Variants
331
+
332
+ Two component styles available:
333
+
334
+ - **Default**: Softer, more rounded
335
+ - **New York**: Sharp, more contrast
336
+
337
+ Select during `init` or in `components.json`:
338
+
339
+ ```json
340
+ {
341
+ "style": "new-york",
342
+ "tailwind": {
343
+ "cssVariables": true
344
+ }
345
+ }
346
+ ```
347
+
348
+ ## Radius Customization
349
+
350
+ Control border radius globally:
351
+
352
+ ```css
353
+ :root {
354
+ --radius: 0.5rem; /* Default */
355
+ --radius: 0rem; /* Sharp corners */
356
+ --radius: 1rem; /* Rounded */
357
+ }
358
+ ```
359
+
360
+ Components use radius variable:
361
+ ```tsx
362
+ className="rounded-lg" /* Uses var(--radius) */
363
+ ```
364
+
365
+ ## Best Practices
366
+
367
+ 1. **Use CSS Variables**: Enables runtime theme switching
368
+ 2. **Consistent Foreground Colors**: Pair each color with appropriate foreground
369
+ 3. **Test Both Themes**: Verify components in light and dark modes
370
+ 4. **Semantic Naming**: Use `destructive` not `red`, `muted` not `gray`
371
+ 5. **Accessibility**: Maintain sufficient color contrast (WCAG AA minimum)
372
+ 6. **Component Overrides**: Use `className` prop for one-off customization
373
+ 7. **Extract Patterns**: Create custom variants for repeated customizations