rulesync 5.6.0 → 5.8.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 -2
- package/dist/index.cjs +827 -427
- package/dist/index.js +799 -399
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ rulesync --help
|
|
|
34
34
|
|
|
35
35
|
### Single Binary (Experimental)
|
|
36
36
|
|
|
37
|
-
Download pre-built binaries from the [latest release](https://github.com/dyoshikawa/rulesync/releases/latest).
|
|
37
|
+
Download pre-built binaries from the [latest release](https://github.com/dyoshikawa/rulesync/releases/latest). These binaries are built using [Bun's single-file executable bundler](https://bun.sh/docs/bundler/executables).
|
|
38
38
|
|
|
39
39
|
<details>
|
|
40
40
|
<summary>Commands to install a binary for your platform</summary>
|
|
@@ -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
|