cursor-kit-cli 1.2.0-beta.3 → 1.2.0-beta.5
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 +41 -30
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,18 +1,22 @@
|
|
|
1
|
-
<h1 align="center">✦ Cursor Kit ✦</h1>
|
|
2
|
-
|
|
3
1
|
<p align="center">
|
|
4
|
-
<img src="
|
|
5
|
-
<img src="https://img.shields.io/npm/dm/cursor-kit-cli?style=flat-square&color=36E4DA" alt="npm downloads" />
|
|
6
|
-
<img src="https://img.shields.io/github/license/duongductrong/cursor-kit?style=flat-square&color=0047E1" alt="license" />
|
|
2
|
+
<img src="./thumbnail.png" alt="Cursor Kit" width="768" />
|
|
7
3
|
</p>
|
|
8
4
|
|
|
5
|
+
<h1 align="center">✦ Cursor Kit ✦</h1>
|
|
6
|
+
|
|
9
7
|
<p align="center">
|
|
10
8
|
<b>Supercharge your Cursor IDE with rules & commands</b><br/>
|
|
11
9
|
<sub>A CLI toolkit to manage, share, and sync Cursor IDE configurations</sub>
|
|
12
10
|
</p>
|
|
13
11
|
|
|
14
12
|
<p align="center">
|
|
15
|
-
<
|
|
13
|
+
<a style="text-decoration: none;" href="https://www.npmjs.com/package/cursor-kit-cli" target="_blank">
|
|
14
|
+
<img src="https://img.shields.io/npm/v/cursor-kit-cli?style=flat-square&color=000000" alt="npm version" />
|
|
15
|
+
</a>
|
|
16
|
+
<a style="text-decoration: none;" href="https://www.npmjs.com/package/cursor-kit-cli" target="_blank">
|
|
17
|
+
<img src="https://img.shields.io/npm/dm/cursor-kit-cli?style=flat-square&color=000000" alt="npm downloads" />
|
|
18
|
+
</a>
|
|
19
|
+
<!-- <img src="https://img.shields.io/github/license/duongductrong/cursor-kit?style=flat-square&color=0047E1" alt="license" /> -->
|
|
16
20
|
</p>
|
|
17
21
|
|
|
18
22
|
## 🚀 Quick Start
|
|
@@ -106,20 +110,24 @@ Manage multiple Cursor IDE instances for multi-account login. **macOS only.**
|
|
|
106
110
|
This command allows you to create separate Cursor instances, each with its own identity (bundle ID) and data directory. Perfect for users who need to work with multiple Cursor accounts simultaneously.
|
|
107
111
|
|
|
108
112
|
```bash
|
|
109
|
-
cursor-kit instance
|
|
110
|
-
cursor-kit instance -l
|
|
111
|
-
cursor-kit instance -a create -n "Cursor Work"
|
|
112
|
-
cursor-kit instance -a
|
|
113
|
+
cursor-kit instance # Interactive mode
|
|
114
|
+
cursor-kit instance -l # List existing instances
|
|
115
|
+
cursor-kit instance -a create -n "Cursor Work" # Create instance
|
|
116
|
+
cursor-kit instance -a reinstall -n "Cursor Work" # Reinstall instance (fix after updates)
|
|
117
|
+
cursor-kit instance -a remove -n "Cursor Work" # Remove instance
|
|
113
118
|
```
|
|
114
119
|
|
|
115
120
|
**How it works:**
|
|
121
|
+
|
|
116
122
|
- Creates a copy of Cursor.app in `~/Applications/`
|
|
117
123
|
- Assigns a unique bundle identifier (e.g., `com.cursor.cursorwork`)
|
|
118
124
|
- Creates a separate data directory in `~/Library/Application Support/`
|
|
119
125
|
- Re-signs the app with an ad-hoc signature
|
|
120
126
|
- Each instance can be logged into with a different Cursor account
|
|
127
|
+
- Reinstall refreshes the instance with the latest Cursor version while preserving your data
|
|
121
128
|
|
|
122
129
|
**Example workflow:**
|
|
130
|
+
|
|
123
131
|
```bash
|
|
124
132
|
# Create an instance for work projects
|
|
125
133
|
cursor-kit instance -a create -n "Cursor Enterprise"
|
|
@@ -130,6 +138,9 @@ cursor-kit instance -a create -n "Cursor Personal"
|
|
|
130
138
|
# List all your instances
|
|
131
139
|
cursor-kit instance --list
|
|
132
140
|
|
|
141
|
+
# Fix an instance after Cursor update (preserves your data)
|
|
142
|
+
cursor-kit instance -a reinstall -n "Cursor Enterprise"
|
|
143
|
+
|
|
133
144
|
# Remove an instance when no longer needed
|
|
134
145
|
cursor-kit instance -a remove -n "Cursor Personal"
|
|
135
146
|
```
|
|
@@ -165,29 +176,29 @@ your-project/
|
|
|
165
176
|
|
|
166
177
|
### Commands
|
|
167
178
|
|
|
168
|
-
| Command
|
|
169
|
-
|
|
170
|
-
| `docs`
|
|
171
|
-
| `explain`
|
|
172
|
-
| `fix`
|
|
173
|
-
| `implement` | Convert feature ideas into actionable plans
|
|
174
|
-
| `refactor`
|
|
175
|
-
| `review`
|
|
176
|
-
| `test`
|
|
179
|
+
| Command | Description |
|
|
180
|
+
| ----------- | ---------------------------------------------- |
|
|
181
|
+
| `docs` | Create or update documentation |
|
|
182
|
+
| `explain` | Clear technical explanations |
|
|
183
|
+
| `fix` | Diagnose and fix bugs with root cause analysis |
|
|
184
|
+
| `implement` | Convert feature ideas into actionable plans |
|
|
185
|
+
| `refactor` | Improve code quality without changing behavior |
|
|
186
|
+
| `review` | Comprehensive code review checklist |
|
|
187
|
+
| `test` | Generate comprehensive test suites |
|
|
177
188
|
|
|
178
189
|
### Rules
|
|
179
190
|
|
|
180
|
-
| Rule
|
|
181
|
-
|
|
182
|
-
| `coding-style`
|
|
183
|
-
| `frontend-design` | Typography, aesthetics, and UI guidelines
|
|
184
|
-
| `git`
|
|
185
|
-
| `performance`
|
|
186
|
-
| `react`
|
|
187
|
-
| `security`
|
|
188
|
-
| `testing`
|
|
189
|
-
| `toc`
|
|
190
|
-
| `typescript`
|
|
191
|
+
| Rule | Description |
|
|
192
|
+
| ----------------- | ------------------------------------------ |
|
|
193
|
+
| `coding-style` | Core coding conventions and best practices |
|
|
194
|
+
| `frontend-design` | Typography, aesthetics, and UI guidelines |
|
|
195
|
+
| `git` | Commit and branching conventions |
|
|
196
|
+
| `performance` | Performance optimization patterns |
|
|
197
|
+
| `react` | React component patterns |
|
|
198
|
+
| `security` | Security guidelines |
|
|
199
|
+
| `testing` | Testing standards |
|
|
200
|
+
| `toc` | Table of contents for rule selection |
|
|
201
|
+
| `typescript` | TypeScript best practices |
|
|
191
202
|
|
|
192
203
|
## 🛠️ Development
|
|
193
204
|
|