rulesync 5.7.0 → 5.9.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 +5 -1
- package/dist/index.cjs +880 -524
- package/dist/index.js +852 -496
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -143,7 +143,7 @@ Rulesync supports both **generation** and **import** for All of the major AI cod
|
|
|
143
143
|
| Kilo Code | ✅ 🌏 | ✅ | ✅ | ✅ 🌏 | | ✅ 🌏 |
|
|
144
144
|
| Roo Code | ✅ | ✅ | ✅ | ✅ | 🎮 | ✅ 🌏 |
|
|
145
145
|
| Qwen Code | ✅ | ✅ | | | | |
|
|
146
|
-
| Kiro
|
|
146
|
+
| Kiro | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
147
147
|
| Google Antigravity | ✅ | | | ✅ | | ✅ 🌏 |
|
|
148
148
|
| JetBrains Junie | ✅ | ✅ | ✅ | | | |
|
|
149
149
|
| AugmentCode | ✅ | ✅ | | | | |
|
|
@@ -260,6 +260,9 @@ Example:
|
|
|
260
260
|
// Verbose output
|
|
261
261
|
"verbose": false,
|
|
262
262
|
|
|
263
|
+
// Silent mode - suppress all output (except errors)
|
|
264
|
+
"silent": false,
|
|
265
|
+
|
|
263
266
|
// Advanced options
|
|
264
267
|
"global": false, // Generate for global(user scope) configuration files
|
|
265
268
|
"simulateCommands": false, // Generate simulated commands
|
|
@@ -307,6 +310,7 @@ Example:
|
|
|
307
310
|
```md
|
|
308
311
|
---
|
|
309
312
|
root: true # true that is less than or equal to one file for overview such as `AGENTS.md`, false for details such as `.agents/memories/*.md`
|
|
313
|
+
localRoot: false # (optional, default: false) true for project-specific local rules. Claude Code: generates CLAUDE.local.md; Others: appends to root file
|
|
310
314
|
targets: ["*"] # * = all, or specific tools
|
|
311
315
|
description: "Rulesync project overview and development guidelines for unified AI rules management CLI tool"
|
|
312
316
|
globs: ["**/*"] # file patterns to match (e.g., ["*.md", "*.txt"])
|