rulesync 8.20.0 → 8.22.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 +37 -29
- package/dist/{chunk-QA7BRQFA.js → chunk-5UYENRC6.js} +1992 -698
- package/dist/cli/index.cjs +2308 -984
- package/dist/cli/index.js +32 -2
- package/dist/index.cjs +2013 -719
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -79,7 +79,7 @@ import {
|
|
|
79
79
|
stringifyFrontmatter,
|
|
80
80
|
toPosixPath,
|
|
81
81
|
writeFileContent
|
|
82
|
-
} from "../chunk-
|
|
82
|
+
} from "../chunk-5UYENRC6.js";
|
|
83
83
|
|
|
84
84
|
// src/cli/index.ts
|
|
85
85
|
import { Command } from "commander";
|
|
@@ -1273,6 +1273,36 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1273
1273
|
// AGENTS.md
|
|
1274
1274
|
{ target: ["agentsmd", "pi"], feature: "rules", entry: "**/AGENTS.md" },
|
|
1275
1275
|
{ target: "agentsmd", feature: "rules", entry: "**/.agents/" },
|
|
1276
|
+
// Antigravity (IDE + CLI, Antigravity 2.0)
|
|
1277
|
+
// Both targets share the `.agents/` project tree; the CLI additionally
|
|
1278
|
+
// writes a root `GEMINI.md`. Global-scope paths (under the home directory)
|
|
1279
|
+
// are intentionally not gitignored.
|
|
1280
|
+
{
|
|
1281
|
+
target: ["antigravity-ide", "antigravity-cli"],
|
|
1282
|
+
feature: "rules",
|
|
1283
|
+
entry: "**/.agents/rules/"
|
|
1284
|
+
},
|
|
1285
|
+
{ target: "antigravity-cli", feature: "rules", entry: "**/GEMINI.md" },
|
|
1286
|
+
{
|
|
1287
|
+
target: "antigravity-ide",
|
|
1288
|
+
feature: "commands",
|
|
1289
|
+
entry: "**/.agents/workflows/"
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
target: ["antigravity-ide", "antigravity-cli"],
|
|
1293
|
+
feature: "skills",
|
|
1294
|
+
entry: "**/.agents/skills/"
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
target: ["antigravity-ide", "antigravity-cli"],
|
|
1298
|
+
feature: "mcp",
|
|
1299
|
+
entry: "**/.agents/mcp_config.json"
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
target: ["antigravity-ide", "antigravity-cli"],
|
|
1303
|
+
feature: "hooks",
|
|
1304
|
+
entry: "**/.agents/hooks.json"
|
|
1305
|
+
},
|
|
1276
1306
|
// Augment Code
|
|
1277
1307
|
{ target: "augmentcode", feature: "rules", entry: "**/.augment/rules/" },
|
|
1278
1308
|
{ target: "augmentcode", feature: "rules", entry: "**/.augment-guidelines" },
|
|
@@ -6485,7 +6515,7 @@ function wrapCommand({
|
|
|
6485
6515
|
}
|
|
6486
6516
|
|
|
6487
6517
|
// src/cli/index.ts
|
|
6488
|
-
var getVersion = () => "8.
|
|
6518
|
+
var getVersion = () => "8.22.0";
|
|
6489
6519
|
function wrapCommand2(name, errorCode, handler) {
|
|
6490
6520
|
return wrapCommand({ name, errorCode, handler, getVersion });
|
|
6491
6521
|
}
|