rulesync 8.32.0 → 9.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 +1 -4
- package/dist/{chunk-3SMTK3M3.js → chunk-JT4BB5RE.js} +1974 -4053
- package/dist/cli/index.cjs +2454 -4603
- package/dist/cli/index.js +12 -86
- package/dist/index.cjs +2000 -4077
- package/dist/index.d.cts +14 -25
- package/dist/index.d.ts +14 -25
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,7 +81,6 @@ The tables below show whether each tool supports a given feature (✅ = supporte
|
|
|
81
81
|
| Amp | ✅ | | ✅ | | | ✅ | | ✅ |
|
|
82
82
|
| Claude Code | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
83
83
|
| Codex CLI | ✅ | | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
84
|
-
| Gemini CLI ⚠️ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
85
84
|
| GitHub Copilot | ✅ | | ✅ | ✅ | ✅ | ✅ | ✅ | |
|
|
86
85
|
| GitHub Copilot CLI | ✅ | | ✅ | | ✅ | ✅ | ✅ | |
|
|
87
86
|
| Goose | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
@@ -104,7 +103,6 @@ The tables below show whether each tool supports a given feature (✅ = supporte
|
|
|
104
103
|
| Kiro IDE | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | ✅ |
|
|
105
104
|
| Google Antigravity IDE | ✅ | | ✅ | ✅ | | ✅ | ✅ | ✅ |
|
|
106
105
|
| Google Antigravity CLI | ✅ | ✅ | ✅ | | | ✅ | ✅ | ✅ |
|
|
107
|
-
| Google Antigravity ⚠️ | ✅ | | | ✅ | | ✅ | | |
|
|
108
106
|
| JetBrains AI Assistant | ✅ | ✅ | | | | ✅ | | |
|
|
109
107
|
| JetBrains Junie | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | |
|
|
110
108
|
| AugmentCode | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
@@ -131,8 +129,7 @@ The tables below show whether each tool supports a given feature (✅ = supporte
|
|
|
131
129
|
|
|
132
130
|
### Deprecation notes
|
|
133
131
|
|
|
134
|
-
- **
|
|
135
|
-
- **Google Antigravity (`antigravity`)** — Antigravity 2.0 splits into two products with separate global config trees: the desktop **`antigravity-ide`** and the **`antigravity-cli`** (`agy`). The legacy `antigravity` target is now a **deprecated alias for `antigravity-ide`** that keeps its original `.agent/` (singular) paths for backward compatibility. Migrate to `antigravity-ide` (desktop IDE) or `antigravity-cli` (CLI). For project-scope rules, **both `antigravity-ide` and `antigravity-cli`** emit the root rule as a plain cross-tool **`AGENTS.md`** at the project root (the Gemini-lineage discovery order is `AGENTS.md`, `CONTEXT.md`, `GEMINI.md`; the IDE has read `AGENTS.md` since v1.20.3) and non-root rules under `.agents/rules/`.
|
|
132
|
+
- **Google Antigravity (`antigravity-ide` / `antigravity-cli`)** — Antigravity 2.0 splits into two products with separate global config trees: the desktop **`antigravity-ide`** and the **`antigravity-cli`** (`agy`). For project-scope rules, **both `antigravity-ide` and `antigravity-cli`** emit the root rule as a plain cross-tool **`AGENTS.md`** at the project root (the Gemini-lineage discovery order is `AGENTS.md`, `CONTEXT.md`, `GEMINI.md`; the IDE has read `AGENTS.md` since v1.20.3) and non-root rules under `.agents/rules/`.
|
|
136
133
|
- **Kiro (`kiro`)** — Kiro's IDE and CLI use diverging config formats (IDE: Markdown subagents `.kiro/agents/*.md` and `.kiro/hooks/*.kiro.hook`; CLI: JSON agent-config subagents `.kiro/agents/*.json` and hooks in `.kiro/agents/default.json`), so `kiro` is split into **`kiro-cli`** and **`kiro-ide`**. The legacy `kiro` target remains as a **deprecated alias** with its current behavior unchanged. The two targets share every surface except **subagents** (Markdown vs JSON); Kiro IDE multi-file `.kiro.hook` hooks are not yet supported, so use `kiro-cli` for agent hooks.
|
|
137
134
|
|
|
138
135
|
Some features accept per-feature options (e.g., Claude Code's `ignore` feature supports `fileMode: "local"` to write to `settings.local.json` instead of `settings.json`). See [Configuration > Per-feature options](https://dyoshikawa.github.io/rulesync/guide/configuration#per-feature-options) for details.
|