cursor-kit-cli 1.6.0 → 1.7.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.
- package/README.md +46 -0
- package/dist/cli.cjs +19042 -2594
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +19128 -2645
- package/dist/cli.js.map +1 -1
- package/package.json +10 -2
- package/templates/skills/swiftui-design/SKILL.md +39 -0
- package/templates/skills/swiftui-design/references/ios.md +0 -0
- package/templates/skills/swiftui-design/references/macos.md +0 -0
package/README.md
CHANGED
|
@@ -45,6 +45,7 @@ ck init
|
|
|
45
45
|
- **🎓 Skills** - Comprehensive guides with references for specialized domains
|
|
46
46
|
- **🔄 Sync** - Keep configurations updated from the community
|
|
47
47
|
- **🎯 Multi-Target** - Support for Cursor IDE, GitHub Copilot, and Google AntiGravity
|
|
48
|
+
- **🔗 LAN Sharing** - Share configs between machines over local network
|
|
48
49
|
- **🖥️ Multi-Instance** - Run multiple Cursor accounts simultaneously (macOS)
|
|
49
50
|
- **⚡ Instance Aliases** - Create shell commands to quickly open projects in specific instances
|
|
50
51
|
- **🎨 Beautiful CLI** - Delightful terminal experience
|
|
@@ -130,6 +131,51 @@ cursor-kit remove -f # Skip confirmation
|
|
|
130
131
|
cursor-kit remove --target cursor -t rule -n my-rule -f # Full example
|
|
131
132
|
```
|
|
132
133
|
|
|
134
|
+
### `share`
|
|
135
|
+
|
|
136
|
+
Share AI IDE configs over the local network via HTTP. Perfect for transferring your configuration to another machine without cloud services.
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
cursor-kit share # Start share server (auto-detects configs)
|
|
140
|
+
cursor-kit share -p 9000 # Use a specific port
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
**How it works:**
|
|
144
|
+
|
|
145
|
+
- Detects available configs (`.cursor`, `.agent`, `.github`) in current directory
|
|
146
|
+
- Starts an HTTP server on the local network
|
|
147
|
+
- Displays the `receive` command to run on the target machine
|
|
148
|
+
- Automatically shuts down after successful transfer
|
|
149
|
+
|
|
150
|
+
### `receive`
|
|
151
|
+
|
|
152
|
+
Receive and extract shared AI IDE configs from a `cursor-kit share` URL.
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
cursor-kit receive http://192.168.1.15:8080 # Receive from share URL
|
|
156
|
+
cursor-kit receive http://192.168.1.15:8080 -f # Force overwrite without prompts
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
**Conflict handling:**
|
|
160
|
+
|
|
161
|
+
When existing configs are detected, you can choose to:
|
|
162
|
+
- **Overwrite** - Replace all conflicting files
|
|
163
|
+
- **Merge** - Keep existing files, add new ones only
|
|
164
|
+
- **Cancel** - Abort the operation
|
|
165
|
+
|
|
166
|
+
**Example workflow:**
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
# On source machine (has the configs)
|
|
170
|
+
cd ~/project-with-configs
|
|
171
|
+
cursor-kit share
|
|
172
|
+
# Output shows: cursor-kit receive http://192.168.1.15:8080
|
|
173
|
+
|
|
174
|
+
# On target machine (wants to receive configs)
|
|
175
|
+
cd ~/new-project
|
|
176
|
+
cursor-kit receive http://192.168.1.15:8080
|
|
177
|
+
```
|
|
178
|
+
|
|
133
179
|
### `instance`
|
|
134
180
|
|
|
135
181
|
Manage multiple Cursor IDE instances for multi-account login. **macOS only.**
|