rulesync 8.13.0 → 8.14.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 +2 -2
- package/dist/{chunk-RLRAG4LZ.js → chunk-C7PHKGD2.js} +1732 -1009
- package/dist/cli/index.cjs +2080 -1342
- package/dist/cli/index.js +17 -2
- package/dist/index.cjs +1765 -1042
- 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-C7PHKGD2.js";
|
|
83
83
|
|
|
84
84
|
// src/cli/index.ts
|
|
85
85
|
import { Command } from "commander";
|
|
@@ -1313,6 +1313,12 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1313
1313
|
// Cursor
|
|
1314
1314
|
{ target: "cursor", feature: "rules", entry: "**/.cursor/" },
|
|
1315
1315
|
{ target: "cursor", feature: "ignore", entry: "**/.cursorignore" },
|
|
1316
|
+
// .cursor/cli.json (project) and .cursor/cli-config.json (global) are
|
|
1317
|
+
// already covered by the broader **/.cursor/ entry above; the additional
|
|
1318
|
+
// `permissions` and `hooks` tags below register the same prefix under the
|
|
1319
|
+
// matching feature so target+feature filtering still resolves correctly.
|
|
1320
|
+
{ target: "cursor", feature: "permissions", entry: "**/.cursor/" },
|
|
1321
|
+
{ target: "cursor", feature: "hooks", entry: "**/.cursor/" },
|
|
1316
1322
|
// deepagents-cli
|
|
1317
1323
|
{ target: "deepagents", feature: "rules", entry: "**/.deepagents/AGENTS.md" },
|
|
1318
1324
|
{ target: "deepagents", feature: "rules", entry: "**/.deepagents/memories/" },
|
|
@@ -1380,6 +1386,15 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1380
1386
|
feature: "mcp",
|
|
1381
1387
|
entry: "**/.copilot/mcp-config.json"
|
|
1382
1388
|
},
|
|
1389
|
+
// Project: <project>/.github/agents/*.agent.md
|
|
1390
|
+
// Global: ~/.copilot/agents/
|
|
1391
|
+
{ target: "copilotcli", feature: "subagents", entry: "**/.github/agents/" },
|
|
1392
|
+
{ target: "copilotcli", feature: "subagents", entry: "**/.copilot/agents/" },
|
|
1393
|
+
// Project: <project>/.github/hooks/copilotcli-hooks.json
|
|
1394
|
+
// Global: ~/.copilot/hooks/copilot-hooks.json (rulesync convention pending
|
|
1395
|
+
// official documentation of a global hooks location)
|
|
1396
|
+
{ target: "copilotcli", feature: "hooks", entry: "**/.github/hooks/" },
|
|
1397
|
+
{ target: "copilotcli", feature: "hooks", entry: "**/.copilot/hooks/" },
|
|
1383
1398
|
// Junie
|
|
1384
1399
|
{ target: "junie", feature: "rules", entry: "**/.junie/guidelines.md" },
|
|
1385
1400
|
{ target: "junie", feature: "mcp", entry: "**/.junie/mcp.json" },
|
|
@@ -6463,7 +6478,7 @@ function wrapCommand({
|
|
|
6463
6478
|
}
|
|
6464
6479
|
|
|
6465
6480
|
// src/cli/index.ts
|
|
6466
|
-
var getVersion = () => "8.
|
|
6481
|
+
var getVersion = () => "8.14.0";
|
|
6467
6482
|
function wrapCommand2(name, errorCode, handler) {
|
|
6468
6483
|
return wrapCommand({ name, errorCode, handler, getVersion });
|
|
6469
6484
|
}
|