@bonesofspring/ai-rules 0.1.3 → 0.1.31
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 +2 -1
- package/bin/cli.js +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,13 +8,14 @@ Node 18+.
|
|
|
8
8
|
# from the project root
|
|
9
9
|
npx @bonesofspring/ai-rules init cursor --preset next
|
|
10
10
|
npx @bonesofspring/ai-rules init claude --preset next
|
|
11
|
+
npx @bonesofspring/ai-rules clean cursor
|
|
11
12
|
```
|
|
12
13
|
|
|
13
14
|
Global: `npm i -g @bonesofspring/ai-rules`, then `ai-rules ...`.
|
|
14
15
|
|
|
15
16
|
`init` merges into the current directory: dirs are created, matching files are **overwritten**. `--preset` and the subcommand can be in either order, e.g. `--preset=next init cursor`.
|
|
16
17
|
|
|
17
|
-
`clean cursor` / `clean claude` removes what this CLI installs: for Cursor, `.cursor
|
|
18
|
+
`clean cursor` / `clean claude` removes what this CLI installs: for Cursor, the entire `.cursor` directory; for Claude, `.claude/rules`, `.claude/commands`, `skills`, `agents`, `hooks`, and `CLAUDE.md` when present. Anything else under `.claude` is left alone.
|
|
18
19
|
|
|
19
20
|
Where things go on `init`:
|
|
20
21
|
|
package/bin/cli.js
CHANGED
|
@@ -36,6 +36,7 @@ Usage:
|
|
|
36
36
|
|
|
37
37
|
Notes:
|
|
38
38
|
init merges into existing target folders; same-named files are overwritten.
|
|
39
|
+
clean cursor removes the entire .cursor directory (if present).
|
|
39
40
|
Flags may appear before or after the subcommand (e.g. --preset next init cursor).
|
|
40
41
|
|
|
41
42
|
Examples:
|
|
@@ -217,6 +218,11 @@ function cmdClean(tool) {
|
|
|
217
218
|
process.exit(1);
|
|
218
219
|
}
|
|
219
220
|
const cwd = process.cwd();
|
|
221
|
+
if (tool === 'cursor') {
|
|
222
|
+
removeDirIfExists(path.join(cwd, '.cursor'));
|
|
223
|
+
console.log('Removed .cursor (if present)');
|
|
224
|
+
return;
|
|
225
|
+
}
|
|
220
226
|
removeDirIfExists(path.join(cwd, cfg.rulesDir));
|
|
221
227
|
removeDirIfExists(path.join(cwd, cfg.commandsDir));
|
|
222
228
|
if (tool === 'claude' && cfg.optionalClaudeDirs) {
|