rulesync 8.13.0 → 8.15.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 +6 -6
- package/dist/{chunk-RLRAG4LZ.js → chunk-UMJWBQ2X.js} +2694 -1000
- package/dist/cli/index.cjs +3055 -1342
- package/dist/cli/index.js +21 -2
- package/dist/index.cjs +2723 -1029
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -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-UMJWBQ2X.js";
|
|
83
83
|
|
|
84
84
|
// src/cli/index.ts
|
|
85
85
|
import { Command } from "commander";
|
|
@@ -1277,6 +1277,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1277
1277
|
{ target: "augmentcode", feature: "rules", entry: "**/.augment/rules/" },
|
|
1278
1278
|
{ target: "augmentcode", feature: "rules", entry: "**/.augment-guidelines" },
|
|
1279
1279
|
{ target: "augmentcode", feature: "ignore", entry: "**/.augmentignore" },
|
|
1280
|
+
{ target: "augmentcode", feature: "permissions", entry: "**/.augment/settings.json" },
|
|
1280
1281
|
// Claude Code
|
|
1281
1282
|
{ target: "claudecode", feature: "rules", entry: "**/CLAUDE.md" },
|
|
1282
1283
|
{ target: "claudecode", feature: "rules", entry: "**/CLAUDE.local.md" },
|
|
@@ -1303,6 +1304,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1303
1304
|
{ target: "cline", feature: "commands", entry: "**/.clinerules/workflows/" },
|
|
1304
1305
|
{ target: "cline", feature: "ignore", entry: "**/.clineignore" },
|
|
1305
1306
|
{ target: "cline", feature: "mcp", entry: "**/.cline/mcp.json" },
|
|
1307
|
+
{ target: "cline", feature: "permissions", entry: "**/.cline/command-permissions.json" },
|
|
1306
1308
|
// Codex CLI
|
|
1307
1309
|
{ target: "codexcli", feature: "ignore", entry: "**/.codexignore" },
|
|
1308
1310
|
{ target: "codexcli", feature: "skills", entry: "**/.codex/skills/" },
|
|
@@ -1313,6 +1315,12 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1313
1315
|
// Cursor
|
|
1314
1316
|
{ target: "cursor", feature: "rules", entry: "**/.cursor/" },
|
|
1315
1317
|
{ target: "cursor", feature: "ignore", entry: "**/.cursorignore" },
|
|
1318
|
+
// .cursor/cli.json (project) and .cursor/cli-config.json (global) are
|
|
1319
|
+
// already covered by the broader **/.cursor/ entry above; the additional
|
|
1320
|
+
// `permissions` and `hooks` tags below register the same prefix under the
|
|
1321
|
+
// matching feature so target+feature filtering still resolves correctly.
|
|
1322
|
+
{ target: "cursor", feature: "permissions", entry: "**/.cursor/" },
|
|
1323
|
+
{ target: "cursor", feature: "hooks", entry: "**/.cursor/" },
|
|
1316
1324
|
// deepagents-cli
|
|
1317
1325
|
{ target: "deepagents", feature: "rules", entry: "**/.deepagents/AGENTS.md" },
|
|
1318
1326
|
{ target: "deepagents", feature: "rules", entry: "**/.deepagents/memories/" },
|
|
@@ -1380,6 +1388,15 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1380
1388
|
feature: "mcp",
|
|
1381
1389
|
entry: "**/.copilot/mcp-config.json"
|
|
1382
1390
|
},
|
|
1391
|
+
// Project: <project>/.github/agents/*.agent.md
|
|
1392
|
+
// Global: ~/.copilot/agents/
|
|
1393
|
+
{ target: "copilotcli", feature: "subagents", entry: "**/.github/agents/" },
|
|
1394
|
+
{ target: "copilotcli", feature: "subagents", entry: "**/.copilot/agents/" },
|
|
1395
|
+
// Project: <project>/.github/hooks/copilotcli-hooks.json
|
|
1396
|
+
// Global: ~/.copilot/hooks/copilot-hooks.json (rulesync convention pending
|
|
1397
|
+
// official documentation of a global hooks location)
|
|
1398
|
+
{ target: "copilotcli", feature: "hooks", entry: "**/.github/hooks/" },
|
|
1399
|
+
{ target: "copilotcli", feature: "hooks", entry: "**/.copilot/hooks/" },
|
|
1383
1400
|
// Junie
|
|
1384
1401
|
{ target: "junie", feature: "rules", entry: "**/.junie/guidelines.md" },
|
|
1385
1402
|
{ target: "junie", feature: "mcp", entry: "**/.junie/mcp.json" },
|
|
@@ -1391,6 +1408,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1391
1408
|
{ target: "kilo", feature: "commands", entry: "**/.kilo/workflows/" },
|
|
1392
1409
|
{ target: "kilo", feature: "mcp", entry: "**/.kilo/mcp.json" },
|
|
1393
1410
|
{ target: "kilo", feature: "ignore", entry: "**/.kiloignore" },
|
|
1411
|
+
{ target: "kilo", feature: "permissions", entry: "**/kilo.jsonc" },
|
|
1394
1412
|
// Kiro
|
|
1395
1413
|
{ target: "kiro", feature: "rules", entry: "**/.kiro/steering/" },
|
|
1396
1414
|
{ target: "kiro", feature: "commands", entry: "**/.kiro/prompts/" },
|
|
@@ -1418,6 +1436,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1418
1436
|
// Qwen Code
|
|
1419
1437
|
{ target: "qwencode", feature: "rules", entry: "**/QWEN.md" },
|
|
1420
1438
|
{ target: "qwencode", feature: "general", entry: "**/.qwen/memories/" },
|
|
1439
|
+
{ target: "qwencode", feature: "permissions", entry: "**/.qwen/settings.json" },
|
|
1421
1440
|
// Replit
|
|
1422
1441
|
{ target: "replit", feature: "rules", entry: "**/replit.md" },
|
|
1423
1442
|
// Roo
|
|
@@ -6463,7 +6482,7 @@ function wrapCommand({
|
|
|
6463
6482
|
}
|
|
6464
6483
|
|
|
6465
6484
|
// src/cli/index.ts
|
|
6466
|
-
var getVersion = () => "8.
|
|
6485
|
+
var getVersion = () => "8.15.0";
|
|
6467
6486
|
function wrapCommand2(name, errorCode, handler) {
|
|
6468
6487
|
return wrapCommand({ name, errorCode, handler, getVersion });
|
|
6469
6488
|
}
|