rulesync 3.33.0 → 4.0.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 +4 -5
- package/dist/index.cjs +380 -228
- package/dist/index.js +432 -280
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -266,11 +266,6 @@ Example:
|
|
|
266
266
|
"simulateSubagents": false, // Generate simulated subagents
|
|
267
267
|
"simulateSkills": false, // Generate simulated skills
|
|
268
268
|
"modularMcp": false // Enable modular-mcp for context compression (experimental, Claude Code only)
|
|
269
|
-
|
|
270
|
-
// Deprecated experimental options (for backward compatibility)
|
|
271
|
-
// "experimentalGlobal": false,
|
|
272
|
-
// "experimentalSimulateCommands": false,
|
|
273
|
-
// "experimentalSimulateSubagents": false
|
|
274
269
|
}
|
|
275
270
|
```
|
|
276
271
|
|
|
@@ -324,6 +319,10 @@ cursor: # cursor specific parameters
|
|
|
324
319
|
alwaysApply: true
|
|
325
320
|
description: "Rulesync project overview and development guidelines for unified AI rules management CLI tool"
|
|
326
321
|
globs: ["*"]
|
|
322
|
+
antigravity: # antigravity specific parameters
|
|
323
|
+
trigger: "always_on" # always_on, glob, manual, or model_decision
|
|
324
|
+
globs: ["**/*"] # (optional) file patterns to match when trigger is "glob"
|
|
325
|
+
description: "When to apply this rule" # (optional) used with "model_decision" trigger
|
|
327
326
|
---
|
|
328
327
|
|
|
329
328
|
# Rulesync Project Overview
|