cursor-kit-cli 1.3.0-beta.1 → 1.3.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.
@@ -4,8 +4,8 @@ alwaysApply: true
4
4
 
5
5
  - Type safety first: Prefer TypeScript with explicit types on public functions, props, and return values. Avoid any and implicit any.
6
6
  - Guard clauses over nesting: Use early returns and guard clauses instead of deeply nested if/else blocks; keep branches short and readable.
7
- - Use descriptive variable and function/const names. Also, event functions should be named with a handle prefix, like handleClick for onClick and handleKeyDown for onKeyDown.
7
+ - Use descriptive variable and function/const names. Also, event functions should be named with a "handle" prefix, like "handleClick" for onClick and "handleKeyDown" for onKeyDown.
8
8
  - Clear naming & structure: Use descriptive, consistent names (camelCase for variables/functions, PascalCase for components) and keep related logic grouped in hooks/, utils/, components/.
9
9
  - Avoid adding unnecessary comments to the code of your generated code.
10
10
  - Small, pure units: Write small, single-purpose functions/components. Keep them pure when possible and move side effects (API calls, logging) to the edges.
11
- - Refactor: Use the refactor command to improve the code quality without breaking existing functionality. Do not use it for simple code improvements.
11
+ - Refactor: Use the refactor command to improve the code quality without breaking existing functionality. Do not use it for simple code improvements.
@@ -0,0 +1,28 @@
1
+ ---
2
+ alwaysApply: true
3
+ ---
4
+
5
+ You have multiple specialized rules organized into **Skills** (comprehensive guides with references) and **Rules** (concise best practices).
6
+
7
+ ## Skills
8
+
9
+ - [Aesthetic](../skills/aesthetic/SKILL.md) - Visual design principles, storytelling, and micro-interactions for distinctive interfaces
10
+ - [Backend Development](../skills/backend-development/SKILL.md) - API design, architecture, authentication, security, and DevOps patterns
11
+ - [Frontend Design](../skills/frontend-design/SKILL.md) - Create distinctive, production-grade interfaces with bold aesthetics (avoid generic AI slop)
12
+ - [Frontend Development](../skills/frontend-development/SKILL.md) - React/TypeScript patterns: Suspense, lazy loading, TanStack Query/Router, MUI v7, file organization
13
+ - [UI Styling](../skills/ui-styling/SKILL.md) - shadcn/ui components, Tailwind CSS utilities, theming, accessibility, and canvas-based visual design
14
+ - [Sequential Thinking](../skills/sequential-thinking/SKILL.md) - Structured problem-solving with revision, branching, and hypothesis verification
15
+ - [Problem Solving](../skills/problem-solving/SKILL.md) - Techniques for complexity spirals, innovation blocks, meta-patterns, and scale testing
16
+ - [Research](../skills/research/SKILL.md) - Systematic research methodology for technical solutions with report generation
17
+
18
+ ## Rules
19
+
20
+ - [Git](./git.md) - Git commit and branching conventions
21
+ - [Coding Style](./coding-style.md) - Coding style and best practices
22
+
23
+ ## Routing Guidelines
24
+
25
+ 1. For each user request, first infer which domains are relevant.
26
+ 2. Select 0–3 rules/skills that best match the request, prefer the SINGLE most specific one when possible.
27
+ 3. If both security and performance apply, prioritize `security.mdc` first, then `performance.mdc`.
28
+ 4. If no rule clearly matches, ignore all rules and answer normally.
@@ -38,4 +38,4 @@ Interpret creatively and make unexpected choices that feel genuinely designed fo
38
38
 
39
39
  **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.
40
40
 
41
- 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.
41
+ 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.
@@ -396,4 +396,4 @@ For complete examples, see [resources/complete-examples.md](resources/complete-e
396
396
 
397
397
  ---
398
398
 
399
- **Skill Status**: Modular structure with progressive loading for optimal context management
399
+ **Skill Status**: Modular structure with progressive loading for optimal context management
@@ -165,4 +165,4 @@ Your final report must:
165
165
  **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
166
166
  **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
167
167
 
168
- **Remember:** You are not just collecting information, but providing strategic technical intelligence that enables informed decision-making. Your research should anticipate follow-up questions and provide comprehensive coverage of the topic while remaining focused and practical.
168
+ **Remember:** You are not just collecting information, but providing strategic technical intelligence that enables informed decision-making. Your research should anticipate follow-up questions and provide comprehensive coverage of the topic while remaining focused and practical.
@@ -1,28 +0,0 @@
1
- ---
2
- alwaysApply: true
3
- ---
4
-
5
- You have multiple specialized rules organized into **Skills** (comprehensive guides with references) and **Rules** (concise best practices).
6
-
7
- ## Skills
8
-
9
- - [Aesthetic](../skills/aesthetic/SKILL.mdc) - Visual design principles, storytelling, and micro-interactions for distinctive interfaces
10
- - [Backend Development](../skills/backend-development/SKILL.mdc) - API design, architecture, authentication, security, and DevOps patterns
11
- - [Frontend Design](../skills/frontend-design/SKILL.mdc) - Create distinctive, production-grade interfaces with bold aesthetics (avoid generic AI slop)
12
- - [Frontend Development](../skills/frontend-development/SKILL.mdc) - React/TypeScript patterns: Suspense, lazy loading, TanStack Query/Router, MUI v7, file organization
13
- - [UI Styling](../skills/ui-styling/SKILL.mdc) - shadcn/ui components, Tailwind CSS utilities, theming, accessibility, and canvas-based visual design
14
- - [Sequential Thinking](../skills/sequential-thinking/SKILL.mdc) - Structured problem-solving with revision, branching, and hypothesis verification
15
- - [Problem Solving](../skills/problem-solving/SKILL.mdc) - Techniques for complexity spirals, innovation blocks, meta-patterns, and scale testing
16
- - [Research](../skills/research/SKILL.mdc) - Systematic research methodology for technical solutions with report generation
17
-
18
- ## Rules
19
-
20
- - [Git](./git.mdc) - Git commit and branching conventions
21
- - [Coding Style](./coding-style.mdc) - Coding style and best practices
22
-
23
- ## Routing Guidelines
24
-
25
- 1. For each user request, first infer which domains are relevant.
26
- 2. Select 0–3 rules/skills that best match the request, prefer the SINGLE most specific one when possible.
27
- 3. If both security and performance apply, prioritize `security.mdc` first, then `performance.mdc`.
28
- 4. If no rule clearly matches, ignore all rules and answer normally.
File without changes