cursor-kit-cli 1.2.0 → 1.2.1
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.
- package/README.md +59 -27
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,6 +42,7 @@ ck init
|
|
|
42
42
|
|
|
43
43
|
- **📜 Commands** - Reusable prompt templates for common tasks
|
|
44
44
|
- **📋 Rules** - Project-specific AI behavior guidelines
|
|
45
|
+
- **🎓 Skills** - Comprehensive guides with references for specialized domains
|
|
45
46
|
- **🔄 Sync** - Keep configurations updated from the community
|
|
46
47
|
- **🖥️ Multi-Instance** - Run multiple Cursor accounts simultaneously (macOS)
|
|
47
48
|
- **🎨 Beautiful CLI** - Delightful terminal experience
|
|
@@ -50,24 +51,26 @@ ck init
|
|
|
50
51
|
|
|
51
52
|
### `init`
|
|
52
53
|
|
|
53
|
-
Initialize `.cursor/commands
|
|
54
|
+
Initialize `.cursor/commands`, `.cursor/rules`, and `.cursor/skills` in your project with curated templates.
|
|
54
55
|
|
|
55
56
|
```bash
|
|
56
|
-
cursor-kit init # Initialize
|
|
57
|
+
cursor-kit init # Initialize commands, rules, and skills
|
|
57
58
|
cursor-kit init -c # Only initialize commands
|
|
58
59
|
cursor-kit init -r # Only initialize rules
|
|
60
|
+
cursor-kit init -s # Only initialize skills
|
|
59
61
|
cursor-kit init -f # Force overwrite existing files
|
|
60
62
|
cursor-kit init -a # Install all templates without selection prompts
|
|
61
63
|
```
|
|
62
64
|
|
|
63
65
|
### `add`
|
|
64
66
|
|
|
65
|
-
Interactively create a new command or
|
|
67
|
+
Interactively create a new command, rule, or skill with a starter template.
|
|
66
68
|
|
|
67
69
|
```bash
|
|
68
70
|
cursor-kit add # Interactive mode
|
|
69
71
|
cursor-kit add -t command # Add a command
|
|
70
72
|
cursor-kit add -t rule # Add a rule
|
|
73
|
+
cursor-kit add -t skill # Add a skill
|
|
71
74
|
cursor-kit add -t command -n my-command # Quick create
|
|
72
75
|
```
|
|
73
76
|
|
|
@@ -76,26 +79,28 @@ cursor-kit add -t command -n my-command # Quick create
|
|
|
76
79
|
Fetch the latest updates from the cursor-kit repository.
|
|
77
80
|
|
|
78
81
|
```bash
|
|
79
|
-
cursor-kit pull # Pull
|
|
82
|
+
cursor-kit pull # Pull commands, rules, and skills
|
|
80
83
|
cursor-kit pull -c # Only pull commands
|
|
81
84
|
cursor-kit pull -r # Only pull rules
|
|
85
|
+
cursor-kit pull -s # Only pull skills
|
|
82
86
|
cursor-kit pull -f # Force overwrite without confirmation
|
|
83
87
|
```
|
|
84
88
|
|
|
85
89
|
### `list`
|
|
86
90
|
|
|
87
|
-
Display all available commands and
|
|
91
|
+
Display all available commands, rules, and skills in your project.
|
|
88
92
|
|
|
89
93
|
```bash
|
|
90
94
|
cursor-kit list # List everything
|
|
91
95
|
cursor-kit list -c # Only list commands
|
|
92
96
|
cursor-kit list -r # Only list rules
|
|
97
|
+
cursor-kit list -s # Only list skills
|
|
93
98
|
cursor-kit list -v # Verbose mode with file paths
|
|
94
99
|
```
|
|
95
100
|
|
|
96
101
|
### `remove`
|
|
97
102
|
|
|
98
|
-
Remove a command or
|
|
103
|
+
Remove a command, rule, or skill from your project.
|
|
99
104
|
|
|
100
105
|
```bash
|
|
101
106
|
cursor-kit remove # Interactive mode
|
|
@@ -160,16 +165,36 @@ your-project/
|
|
|
160
165
|
│ ├── refactor.md
|
|
161
166
|
│ ├── review.md
|
|
162
167
|
│ └── test.md
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
├──
|
|
169
|
-
├──
|
|
170
|
-
├──
|
|
171
|
-
|
|
172
|
-
|
|
168
|
+
├── rules/ # AI behavior rules (.mdc)
|
|
169
|
+
│ ├── coding-style.mdc
|
|
170
|
+
│ ├── git.mdc
|
|
171
|
+
│ └── toc.mdc
|
|
172
|
+
└── skills/ # Comprehensive guides with references
|
|
173
|
+
├── aesthetic/
|
|
174
|
+
│ ├── SKILL.mdc
|
|
175
|
+
│ ├── assets/
|
|
176
|
+
│ └── references/
|
|
177
|
+
├── backend-development/
|
|
178
|
+
│ ├── SKILL.mdc
|
|
179
|
+
│ └── references/
|
|
180
|
+
├── frontend-design/
|
|
181
|
+
│ ├── SKILL.mdc
|
|
182
|
+
│ └── references/
|
|
183
|
+
├── frontend-development/
|
|
184
|
+
│ ├── SKILL.mdc
|
|
185
|
+
│ └── resources/
|
|
186
|
+
├── problem-solving/
|
|
187
|
+
│ ├── SKILL.mdc
|
|
188
|
+
│ └── references/
|
|
189
|
+
├── research/
|
|
190
|
+
│ └── SKILL.mdc
|
|
191
|
+
├── sequential-thinking/
|
|
192
|
+
│ ├── SKILL.mdc
|
|
193
|
+
│ ├── references/
|
|
194
|
+
│ └── scripts/
|
|
195
|
+
└── ui-styling/
|
|
196
|
+
├── SKILL.mdc
|
|
197
|
+
└── references/
|
|
173
198
|
```
|
|
174
199
|
|
|
175
200
|
## 🎯 Included Templates
|
|
@@ -188,17 +213,24 @@ your-project/
|
|
|
188
213
|
|
|
189
214
|
### Rules
|
|
190
215
|
|
|
191
|
-
| Rule
|
|
192
|
-
|
|
|
193
|
-
| `coding-style`
|
|
194
|
-
| `
|
|
195
|
-
| `
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
|
200
|
-
|
|
|
201
|
-
| `
|
|
216
|
+
| Rule | Description |
|
|
217
|
+
| -------------- | ------------------------------------------ |
|
|
218
|
+
| `coding-style` | Core coding conventions and best practices |
|
|
219
|
+
| `git` | Commit and branching conventions |
|
|
220
|
+
| `toc` | Table of contents for rule selection |
|
|
221
|
+
|
|
222
|
+
### Skills
|
|
223
|
+
|
|
224
|
+
| Skill | Description |
|
|
225
|
+
| ---------------------- | ---------------------------------------------------------------------------------- |
|
|
226
|
+
| `aesthetic` | Visual design principles, storytelling, and micro-interactions for distinctive interfaces |
|
|
227
|
+
| `backend-development` | API design, architecture, authentication, security, and DevOps patterns |
|
|
228
|
+
| `frontend-design` | Create distinctive, production-grade interfaces with bold aesthetics (avoid generic AI slop) |
|
|
229
|
+
| `frontend-development` | React/TypeScript patterns: Suspense, lazy loading, TanStack Query/Router, MUI v7, file organization |
|
|
230
|
+
| `problem-solving` | Techniques for complexity spirals, innovation blocks, meta-patterns, and scale testing |
|
|
231
|
+
| `research` | Systematic research methodology for technical solutions with report generation |
|
|
232
|
+
| `sequential-thinking` | Structured problem-solving with revision, branching, and hypothesis verification |
|
|
233
|
+
| `ui-styling` | shadcn/ui components, Tailwind CSS utilities, theming, accessibility, and canvas-based visual design |
|
|
202
234
|
|
|
203
235
|
## 🛠️ Development
|
|
204
236
|
|