cursor-kit-cli 1.2.0-beta.3 → 1.2.0-beta.4
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 +9 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -106,10 +106,11 @@ Manage multiple Cursor IDE instances for multi-account login. **macOS only.**
|
|
|
106
106
|
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
107
|
|
|
108
108
|
```bash
|
|
109
|
-
cursor-kit instance
|
|
110
|
-
cursor-kit instance -l
|
|
111
|
-
cursor-kit instance -a create -n "Cursor Work"
|
|
112
|
-
cursor-kit instance -a
|
|
109
|
+
cursor-kit instance # Interactive mode
|
|
110
|
+
cursor-kit instance -l # List existing instances
|
|
111
|
+
cursor-kit instance -a create -n "Cursor Work" # Create instance
|
|
112
|
+
cursor-kit instance -a reinstall -n "Cursor Work" # Reinstall instance (fix after updates)
|
|
113
|
+
cursor-kit instance -a remove -n "Cursor Work" # Remove instance
|
|
113
114
|
```
|
|
114
115
|
|
|
115
116
|
**How it works:**
|
|
@@ -118,6 +119,7 @@ cursor-kit instance -a remove -n "Cursor Work" # Remove instance
|
|
|
118
119
|
- Creates a separate data directory in `~/Library/Application Support/`
|
|
119
120
|
- Re-signs the app with an ad-hoc signature
|
|
120
121
|
- Each instance can be logged into with a different Cursor account
|
|
122
|
+
- Reinstall refreshes the instance with the latest Cursor version while preserving your data
|
|
121
123
|
|
|
122
124
|
**Example workflow:**
|
|
123
125
|
```bash
|
|
@@ -130,6 +132,9 @@ cursor-kit instance -a create -n "Cursor Personal"
|
|
|
130
132
|
# List all your instances
|
|
131
133
|
cursor-kit instance --list
|
|
132
134
|
|
|
135
|
+
# Fix an instance after Cursor update (preserves your data)
|
|
136
|
+
cursor-kit instance -a reinstall -n "Cursor Enterprise"
|
|
137
|
+
|
|
133
138
|
# Remove an instance when no longer needed
|
|
134
139
|
cursor-kit instance -a remove -n "Cursor Personal"
|
|
135
140
|
```
|