rulesync 8.26.0 → 8.27.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 -4
- package/dist/{chunk-XKXN32Q2.js → chunk-4YKAF3LH.js} +3149 -1483
- package/dist/cli/index.cjs +3573 -1893
- package/dist/cli/index.js +23 -9
- package/dist/index.cjs +3342 -1676
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- 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-4YKAF3LH.js";
|
|
83
83
|
|
|
84
84
|
// src/cli/index.ts
|
|
85
85
|
import { Command } from "commander";
|
|
@@ -1271,10 +1271,15 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1271
1271
|
// This prevents accidental commits when a user disables the rovodev target.
|
|
1272
1272
|
{ target: "common", feature: "general", entry: "**/AGENTS.local.md" },
|
|
1273
1273
|
// AGENTS.md
|
|
1274
|
-
{ target: ["agentsmd", "pi", "warp"], feature: "rules", entry: "**/AGENTS.md" },
|
|
1274
|
+
{ target: ["agentsmd", "amp", "pi", "warp"], feature: "rules", entry: "**/AGENTS.md" },
|
|
1275
1275
|
{ target: "agentsmd", feature: "rules", entry: "**/.agents/" },
|
|
1276
1276
|
// Amp
|
|
1277
|
-
// Amp reads
|
|
1277
|
+
// Amp reads project rules from a root `AGENTS.md` (handled by the shared
|
|
1278
|
+
// AGENTS.md entry above) plus `.agents/memories/*.md` non-root rules. Agent
|
|
1279
|
+
// Skills come from the shared `.agents/skills/` project tree. The
|
|
1280
|
+
// `.amp/settings.json` permissions file is a user-managed file (like other
|
|
1281
|
+
// tools' settings.json), so it is intentionally not gitignored.
|
|
1282
|
+
{ target: "amp", feature: "rules", entry: "**/.agents/memories/" },
|
|
1278
1283
|
{ target: "amp", feature: "skills", entry: "**/.agents/skills/" },
|
|
1279
1284
|
// Antigravity (IDE + CLI, Antigravity 2.0)
|
|
1280
1285
|
// Both targets share the `.agents/` project tree; the CLI additionally
|
|
@@ -1310,9 +1315,14 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1310
1315
|
{ target: "augmentcode", feature: "rules", entry: "**/.augment/rules/" },
|
|
1311
1316
|
{ target: "augmentcode", feature: "rules", entry: "**/.augment-guidelines" },
|
|
1312
1317
|
{ target: "augmentcode", feature: "commands", entry: "**/.augment/commands/" },
|
|
1318
|
+
{ target: "augmentcode", feature: "subagents", entry: "**/.augment/agents/" },
|
|
1319
|
+
{ target: "augmentcode", feature: "skills", entry: "**/.augment/skills/" },
|
|
1313
1320
|
{ target: "augmentcode", feature: "ignore", entry: "**/.augmentignore" },
|
|
1314
1321
|
{ target: "augmentcode", feature: "permissions", entry: "**/.augment/settings.json" },
|
|
1315
1322
|
{ target: "augmentcode", feature: "hooks", entry: "**/.augment/settings.json" },
|
|
1323
|
+
// settings.json is shared with permissions/hooks; re-tag it under `mcp` so
|
|
1324
|
+
// target+feature filtering still resolves the file for MCP runs.
|
|
1325
|
+
{ target: "augmentcode", feature: "mcp", entry: "**/.augment/settings.json" },
|
|
1316
1326
|
// Claude Code
|
|
1317
1327
|
{ target: "claudecode", feature: "rules", entry: "**/CLAUDE.md" },
|
|
1318
1328
|
{ target: "claudecode", feature: "rules", entry: "**/CLAUDE.local.md" },
|
|
@@ -1338,7 +1348,10 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1338
1348
|
{ target: "cline", feature: "rules", entry: "**/.clinerules/" },
|
|
1339
1349
|
{ target: "cline", feature: "commands", entry: "**/.clinerules/workflows/" },
|
|
1340
1350
|
{ target: "cline", feature: "ignore", entry: "**/.clineignore" },
|
|
1341
|
-
|
|
1351
|
+
// Cline reads MCP only from a global settings file
|
|
1352
|
+
// (`~/.cline/data/settings/cline_mcp_settings.json`), which lives under the
|
|
1353
|
+
// home directory and is not gitignored at the project level.
|
|
1354
|
+
{ target: "cline", feature: "subagents", entry: "**/.cline/agents/" },
|
|
1342
1355
|
{ target: "cline", feature: "permissions", entry: "**/.cline/command-permissions.json" },
|
|
1343
1356
|
// Codex CLI
|
|
1344
1357
|
{ target: "codexcli", feature: "ignore", entry: "**/.codexignore" },
|
|
@@ -1357,8 +1370,9 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1357
1370
|
{ target: "cursor", feature: "permissions", entry: "**/.cursor/" },
|
|
1358
1371
|
{ target: "cursor", feature: "hooks", entry: "**/.cursor/" },
|
|
1359
1372
|
// deepagents-cli
|
|
1373
|
+
// All rule content is folded into the single `.deepagents/AGENTS.md`; there is
|
|
1374
|
+
// no `.deepagents/memories/` directory.
|
|
1360
1375
|
{ target: "deepagents", feature: "rules", entry: "**/.deepagents/AGENTS.md" },
|
|
1361
|
-
{ target: "deepagents", feature: "rules", entry: "**/.deepagents/memories/" },
|
|
1362
1376
|
{ target: "deepagents", feature: "mcp", entry: "**/.deepagents/.mcp.json" },
|
|
1363
1377
|
{ target: "deepagents", feature: "skills", entry: "**/.deepagents/skills/" },
|
|
1364
1378
|
{
|
|
@@ -1387,8 +1401,8 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1387
1401
|
{ target: "factorydroid", feature: "mcp", entry: "**/.factory/mcp.json" },
|
|
1388
1402
|
{
|
|
1389
1403
|
target: "factorydroid",
|
|
1390
|
-
feature: "
|
|
1391
|
-
entry: "**/.factory/
|
|
1404
|
+
feature: "hooks",
|
|
1405
|
+
entry: "**/.factory/hooks.json"
|
|
1392
1406
|
},
|
|
1393
1407
|
// Gemini CLI
|
|
1394
1408
|
{ target: "geminicli", feature: "rules", entry: "**/GEMINI.md" },
|
|
@@ -1436,7 +1450,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1436
1450
|
{ target: "copilotcli", feature: "hooks", entry: "**/.copilot/hooks/" },
|
|
1437
1451
|
// Junie
|
|
1438
1452
|
{ target: "junie", feature: "rules", entry: "**/.junie/guidelines.md" },
|
|
1439
|
-
{ target: "junie", feature: "mcp", entry: "**/.junie/mcp.json" },
|
|
1453
|
+
{ target: "junie", feature: "mcp", entry: "**/.junie/mcp/mcp.json" },
|
|
1440
1454
|
{ target: "junie", feature: "skills", entry: "**/.junie/skills/" },
|
|
1441
1455
|
{ target: "junie", feature: "subagents", entry: "**/.junie/agents/" },
|
|
1442
1456
|
// Kilo Code
|
|
@@ -6548,7 +6562,7 @@ function wrapCommand({
|
|
|
6548
6562
|
}
|
|
6549
6563
|
|
|
6550
6564
|
// src/cli/index.ts
|
|
6551
|
-
var getVersion = () => "8.
|
|
6565
|
+
var getVersion = () => "8.27.0";
|
|
6552
6566
|
function wrapCommand2(name, errorCode, handler) {
|
|
6553
6567
|
return wrapCommand({ name, errorCode, handler, getVersion });
|
|
6554
6568
|
}
|