cursor-kit-cli 1.1.0-beta.2 → 1.1.0-beta.3
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 +7 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,6 +52,7 @@ cursor-kit init # Initialize both commands and rules
|
|
|
52
52
|
cursor-kit init -c # Only initialize commands
|
|
53
53
|
cursor-kit init -r # Only initialize rules
|
|
54
54
|
cursor-kit init -f # Force overwrite existing files
|
|
55
|
+
cursor-kit init -a # Install all templates without selection prompts
|
|
55
56
|
```
|
|
56
57
|
|
|
57
58
|
### `add`
|
|
@@ -105,22 +106,22 @@ After running `cursor-kit init`, your project will have:
|
|
|
105
106
|
your-project/
|
|
106
107
|
└── .cursor/
|
|
107
108
|
├── commands/ # Prompt templates (.md)
|
|
108
|
-
│ ├── debug.md
|
|
109
109
|
│ ├── docs.md
|
|
110
110
|
│ ├── explain.md
|
|
111
111
|
│ ├── fix.md
|
|
112
|
-
│ ├──
|
|
112
|
+
│ ├── implement.md
|
|
113
113
|
│ ├── refactor.md
|
|
114
114
|
│ ├── review.md
|
|
115
115
|
│ └── test.md
|
|
116
116
|
└── rules/ # AI behavior rules (.mdc)
|
|
117
117
|
├── coding-style.mdc
|
|
118
|
-
├── frontend-design
|
|
118
|
+
├── frontend-design.mdc
|
|
119
119
|
├── git.mdc
|
|
120
120
|
├── performance.mdc
|
|
121
121
|
├── react.mdc
|
|
122
122
|
├── security.mdc
|
|
123
123
|
├── testing.mdc
|
|
124
|
+
├── toc.mdc
|
|
124
125
|
└── typescript.mdc
|
|
125
126
|
```
|
|
126
127
|
|
|
@@ -130,11 +131,10 @@ your-project/
|
|
|
130
131
|
|
|
131
132
|
| Command | Description |
|
|
132
133
|
|---------|-------------|
|
|
133
|
-
| `debug` | Systematic bug investigation |
|
|
134
134
|
| `docs` | Create or update documentation |
|
|
135
135
|
| `explain` | Clear technical explanations |
|
|
136
136
|
| `fix` | Diagnose and fix bugs with root cause analysis |
|
|
137
|
-
| `
|
|
137
|
+
| `implement` | Convert feature ideas into actionable plans |
|
|
138
138
|
| `refactor` | Improve code quality without changing behavior |
|
|
139
139
|
| `review` | Comprehensive code review checklist |
|
|
140
140
|
| `test` | Generate comprehensive test suites |
|
|
@@ -144,12 +144,13 @@ your-project/
|
|
|
144
144
|
| Rule | Description |
|
|
145
145
|
|------|-------------|
|
|
146
146
|
| `coding-style` | Core coding conventions and best practices |
|
|
147
|
-
| `frontend-design
|
|
147
|
+
| `frontend-design` | Typography, aesthetics, and UI guidelines |
|
|
148
148
|
| `git` | Commit and branching conventions |
|
|
149
149
|
| `performance` | Performance optimization patterns |
|
|
150
150
|
| `react` | React component patterns |
|
|
151
151
|
| `security` | Security guidelines |
|
|
152
152
|
| `testing` | Testing standards |
|
|
153
|
+
| `toc` | Table of contents for rule selection |
|
|
153
154
|
| `typescript` | TypeScript best practices |
|
|
154
155
|
|
|
155
156
|
## 🛠️ Development
|