rulesync 3.27.1 → 3.28.1
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 -4
- package/dist/index.cjs +769 -531
- package/dist/index.js +762 -524
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -149,6 +149,7 @@ Rulesync supports both **generation** and **import** for All of the major AI cod
|
|
|
149
149
|
| Qwen Code | ✅ | ✅ | | | | |
|
|
150
150
|
| Kiro IDE | ✅ | ✅ | | | | |
|
|
151
151
|
| Amazon Q Developer CLI | ✅ | | ✅ | | | |
|
|
152
|
+
| Google Antigravity | ✅ | | | ✅ | | |
|
|
152
153
|
| JetBrains Junie | ✅ | ✅ | ✅ | | | |
|
|
153
154
|
| AugmentCode | ✅ | ✅ | | | | |
|
|
154
155
|
| Windsurf | ✅ | ✅ | | | | |
|
|
@@ -202,7 +203,7 @@ npx rulesync generate --targets claudecode --features rules,subagents
|
|
|
202
203
|
npx rulesync generate --targets "*" --features rules
|
|
203
204
|
|
|
204
205
|
# Generate simulated commands and subagents
|
|
205
|
-
npx rulesync generate --targets copilot,cursor,codexcli --features commands,subagents --
|
|
206
|
+
npx rulesync generate --targets copilot,cursor,codexcli --features commands,subagents --simulate-commands --simulate-subagents
|
|
206
207
|
|
|
207
208
|
# Add generated files to .gitignore
|
|
208
209
|
npx rulesync gitignore
|
|
@@ -465,9 +466,9 @@ Simulated commands, subagents and skills allow you to generate simulated feature
|
|
|
465
466
|
npx rulesync generate \
|
|
466
467
|
--targets copilot,cursor,codexcli \
|
|
467
468
|
--features commands,subagents,skills \
|
|
468
|
-
--
|
|
469
|
-
--
|
|
470
|
-
--
|
|
469
|
+
--simulate-commands \
|
|
470
|
+
--simulate-subagents \
|
|
471
|
+
--simulate-skills
|
|
471
472
|
```
|
|
472
473
|
3. Use simulated commands, subagents and skills in your prompts.
|
|
473
474
|
- Prompt examples:
|