rulesync 3.32.0 → 3.34.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 -0
- package/dist/index.cjs +1087 -627
- package/dist/index.js +1079 -619
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -189,6 +189,7 @@ Rulesync is trusted by leading companies and recognized by the industry:
|
|
|
189
189
|
|
|
190
190
|
- **Anthropic Official Customer Story**: [Classmethod Inc. - Improving AI coding tool consistency with Rulesync](https://claude.com/customers/classmethod)
|
|
191
191
|
- **Asoview Inc.**: [Adopting Rulesync for unified AI development rules](https://tech.asoview.co.jp/entry/2025/12/06/100000)
|
|
192
|
+
- **KAKEHASHI Tech Blog**: [Building multilingual systems for the LLM era with a monorepo and a "living specification"](https://kakehashi-dev.hatenablog.com/entry/2025/12/08/110000)
|
|
192
193
|
|
|
193
194
|
## Quick Commands
|
|
194
195
|
|
|
@@ -323,6 +324,10 @@ cursor: # cursor specific parameters
|
|
|
323
324
|
alwaysApply: true
|
|
324
325
|
description: "Rulesync project overview and development guidelines for unified AI rules management CLI tool"
|
|
325
326
|
globs: ["*"]
|
|
327
|
+
antigravity: # antigravity specific parameters
|
|
328
|
+
trigger: "always_on" # always_on, glob, manual, or model_decision
|
|
329
|
+
globs: ["**/*"] # (optional) file patterns to match when trigger is "glob"
|
|
330
|
+
description: "When to apply this rule" # (optional) used with "model_decision" trigger
|
|
326
331
|
---
|
|
327
332
|
|
|
328
333
|
# Rulesync Project Overview
|