cursor-kit-cli 1.4.0 → 1.5.0
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 +69 -27
- package/dist/cli.cjs +335 -129
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +334 -128
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
8
|
<b>Supercharge your AI IDE with rules & commands</b><br/>
|
|
9
|
-
<sub>A CLI toolkit to manage, share, and sync Cursor IDE
|
|
9
|
+
<sub>A CLI toolkit to manage, share, and sync Cursor IDE, GitHub Copilot, and Google AntiGravity configurations</sub>
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
12
|
<p align="center">
|
|
@@ -44,7 +44,7 @@ ck init
|
|
|
44
44
|
- **📋 Rules** - Project-specific AI behavior guidelines
|
|
45
45
|
- **🎓 Skills** - Comprehensive guides with references for specialized domains
|
|
46
46
|
- **🔄 Sync** - Keep configurations updated from the community
|
|
47
|
-
- **🎯 Multi-Target** - Support for
|
|
47
|
+
- **🎯 Multi-Target** - Support for Cursor IDE, GitHub Copilot, and Google AntiGravity
|
|
48
48
|
- **🖥️ Multi-Instance** - Run multiple Cursor accounts simultaneously (macOS)
|
|
49
49
|
- **🎨 Beautiful CLI** - Delightful terminal experience
|
|
50
50
|
|
|
@@ -52,45 +52,55 @@ ck init
|
|
|
52
52
|
|
|
53
53
|
### `init`
|
|
54
54
|
|
|
55
|
-
Initialize
|
|
55
|
+
Initialize commands, rules, and skills in your project with curated templates. Supports Cursor IDE, GitHub Copilot, and Google AntiGravity.
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
|
-
cursor-kit init
|
|
59
|
-
cursor-kit init -t cursor
|
|
60
|
-
cursor-kit init -t github-copilot
|
|
61
|
-
cursor-kit init -
|
|
62
|
-
cursor-kit init -
|
|
63
|
-
cursor-kit init -
|
|
64
|
-
cursor-kit init -
|
|
65
|
-
cursor-kit init -
|
|
58
|
+
cursor-kit init # Interactive: choose target IDE
|
|
59
|
+
cursor-kit init -t cursor # Initialize for Cursor IDE (.cursor/)
|
|
60
|
+
cursor-kit init -t github-copilot # Initialize for GitHub Copilot (.github/copilot-instructions/)
|
|
61
|
+
cursor-kit init -t google-antigravity # Initialize for Google AntiGravity (.agent/)
|
|
62
|
+
cursor-kit init -c # Only initialize commands
|
|
63
|
+
cursor-kit init -r # Only initialize rules
|
|
64
|
+
cursor-kit init -s # Only initialize skills
|
|
65
|
+
cursor-kit init -f # Force overwrite existing files
|
|
66
|
+
cursor-kit init -a # Install all templates without selection prompts
|
|
66
67
|
```
|
|
67
68
|
|
|
68
69
|
**Target options:**
|
|
69
70
|
- `cursor` (default) - Creates `.cursor/` directory structure for Cursor IDE
|
|
70
71
|
- `github-copilot` - Creates `.github/copilot-instructions.md` and related structure for GitHub Copilot
|
|
72
|
+
- `google-antigravity` - Creates `.agent/` directory with rules, workflows, and skills for Google AntiGravity
|
|
71
73
|
|
|
72
74
|
### `add`
|
|
73
75
|
|
|
74
|
-
Interactively create a new command, rule, or skill with a starter template.
|
|
76
|
+
Interactively create a new command, rule, or skill with a starter template. Supports targeting different AI IDEs.
|
|
75
77
|
|
|
76
78
|
```bash
|
|
77
|
-
cursor-kit add
|
|
78
|
-
cursor-kit add
|
|
79
|
-
cursor-kit add -
|
|
80
|
-
cursor-kit add -
|
|
81
|
-
cursor-kit add -t command
|
|
79
|
+
cursor-kit add # Interactive mode (prompts for target)
|
|
80
|
+
cursor-kit add --target cursor # Add to Cursor IDE
|
|
81
|
+
cursor-kit add --target github-copilot # Add to GitHub Copilot
|
|
82
|
+
cursor-kit add --target google-antigravity # Add to Google AntiGravity
|
|
83
|
+
cursor-kit add -t command # Add a command
|
|
84
|
+
cursor-kit add -t rule # Add a rule
|
|
85
|
+
cursor-kit add -t skill # Add a skill
|
|
86
|
+
cursor-kit add -t command -n my-command # Quick create
|
|
87
|
+
cursor-kit add --target cursor -t rule -n my-rule # Full example
|
|
82
88
|
```
|
|
83
89
|
|
|
84
90
|
### `pull`
|
|
85
91
|
|
|
86
|
-
Fetch the latest updates from the cursor-kit repository.
|
|
92
|
+
Fetch the latest updates from the cursor-kit repository. Supports targeting different AI IDEs.
|
|
87
93
|
|
|
88
94
|
```bash
|
|
89
|
-
cursor-kit pull
|
|
90
|
-
cursor-kit pull -
|
|
91
|
-
cursor-kit pull -
|
|
92
|
-
cursor-kit pull -
|
|
93
|
-
cursor-kit pull -
|
|
95
|
+
cursor-kit pull # Interactive mode (prompts for target)
|
|
96
|
+
cursor-kit pull -t cursor # Pull to Cursor IDE
|
|
97
|
+
cursor-kit pull -t github-copilot # Pull to GitHub Copilot
|
|
98
|
+
cursor-kit pull -t google-antigravity # Pull to Google AntiGravity
|
|
99
|
+
cursor-kit pull -c # Only pull commands
|
|
100
|
+
cursor-kit pull -r # Only pull rules
|
|
101
|
+
cursor-kit pull -s # Only pull skills
|
|
102
|
+
cursor-kit pull -f # Force overwrite without confirmation
|
|
103
|
+
cursor-kit pull -t cursor -r -f # Pull rules to Cursor with force
|
|
94
104
|
```
|
|
95
105
|
|
|
96
106
|
### `list`
|
|
@@ -107,12 +117,16 @@ cursor-kit list -v # Verbose mode with file paths
|
|
|
107
117
|
|
|
108
118
|
### `remove`
|
|
109
119
|
|
|
110
|
-
Remove a command, rule, or skill from your project.
|
|
120
|
+
Remove a command, rule, or skill from your project. Supports targeting different AI IDEs.
|
|
111
121
|
|
|
112
122
|
```bash
|
|
113
|
-
cursor-kit remove
|
|
114
|
-
cursor-kit remove
|
|
115
|
-
cursor-kit remove -
|
|
123
|
+
cursor-kit remove # Interactive mode (prompts for target)
|
|
124
|
+
cursor-kit remove --target cursor # Remove from Cursor IDE
|
|
125
|
+
cursor-kit remove --target github-copilot # Remove from GitHub Copilot
|
|
126
|
+
cursor-kit remove --target google-antigravity # Remove from Google AntiGravity
|
|
127
|
+
cursor-kit remove -t command -n my-command # Quick remove
|
|
128
|
+
cursor-kit remove -f # Skip confirmation
|
|
129
|
+
cursor-kit remove --target cursor -t rule -n my-rule -f # Full example
|
|
116
130
|
```
|
|
117
131
|
|
|
118
132
|
### `instance`
|
|
@@ -236,6 +250,34 @@ your-project/
|
|
|
236
250
|
└── ... (other skills)
|
|
237
251
|
```
|
|
238
252
|
|
|
253
|
+
### Google AntiGravity
|
|
254
|
+
|
|
255
|
+
```
|
|
256
|
+
your-project/
|
|
257
|
+
└── .agent/
|
|
258
|
+
├── workflows/ # Workflow templates (.md)
|
|
259
|
+
│ ├── docs.md
|
|
260
|
+
│ ├── explain.md
|
|
261
|
+
│ ├── fix.md
|
|
262
|
+
│ ├── implement.md
|
|
263
|
+
│ ├── refactor.md
|
|
264
|
+
│ ├── review.md
|
|
265
|
+
│ └── test.md
|
|
266
|
+
├── rules/ # AI behavior rules (.md)
|
|
267
|
+
│ ├── coding-style.md
|
|
268
|
+
│ ├── git.md
|
|
269
|
+
│ └── toc.md
|
|
270
|
+
└── skills/ # Comprehensive guides with references
|
|
271
|
+
├── aesthetic/
|
|
272
|
+
│ ├── SKILL.md
|
|
273
|
+
│ ├── assets/
|
|
274
|
+
│ └── references/
|
|
275
|
+
├── backend-development/
|
|
276
|
+
│ ├── SKILL.md
|
|
277
|
+
│ └── references/
|
|
278
|
+
└── ... (other skills)
|
|
279
|
+
```
|
|
280
|
+
|
|
239
281
|
## 🎯 Included Templates
|
|
240
282
|
|
|
241
283
|
### Commands
|