rulesync 7.21.0 → 7.23.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 +3 -2
- package/dist/{chunk-UYWCICY6.js → chunk-GAWAOFCL.js} +1352 -629
- package/dist/cli/index.cjs +1622 -892
- package/dist/cli/index.js +12 -3
- package/dist/index.cjs +1374 -653
- package/dist/index.d.cts +11 -2
- package/dist/index.d.ts +11 -2
- package/dist/index.js +1 -1
- package/package.json +21 -17
package/dist/cli/index.js
CHANGED
|
@@ -28,6 +28,7 @@ import {
|
|
|
28
28
|
RULESYNC_MCP_RELATIVE_FILE_PATH,
|
|
29
29
|
RULESYNC_MCP_SCHEMA_URL,
|
|
30
30
|
RULESYNC_OVERVIEW_FILE_NAME,
|
|
31
|
+
RULESYNC_PERMISSIONS_FILE_NAME,
|
|
31
32
|
RULESYNC_RELATIVE_DIR_PATH,
|
|
32
33
|
RULESYNC_RULES_RELATIVE_DIR_PATH,
|
|
33
34
|
RULESYNC_SKILLS_RELATIVE_DIR_PATH,
|
|
@@ -69,7 +70,7 @@ import {
|
|
|
69
70
|
removeTempDirectory,
|
|
70
71
|
stringifyFrontmatter,
|
|
71
72
|
writeFileContent
|
|
72
|
-
} from "../chunk-
|
|
73
|
+
} from "../chunk-GAWAOFCL.js";
|
|
73
74
|
|
|
74
75
|
// src/cli/index.ts
|
|
75
76
|
import { Command } from "commander";
|
|
@@ -537,7 +538,8 @@ var FEATURE_PATHS = {
|
|
|
537
538
|
skills: ["skills"],
|
|
538
539
|
ignore: [RULESYNC_AIIGNORE_FILE_NAME],
|
|
539
540
|
mcp: [RULESYNC_MCP_FILE_NAME],
|
|
540
|
-
hooks: [RULESYNC_HOOKS_FILE_NAME]
|
|
541
|
+
hooks: [RULESYNC_HOOKS_FILE_NAME],
|
|
542
|
+
permissions: [RULESYNC_PERMISSIONS_FILE_NAME]
|
|
541
543
|
};
|
|
542
544
|
function isToolTarget(target) {
|
|
543
545
|
return target !== "rulesync";
|
|
@@ -1185,6 +1187,13 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1185
1187
|
// Cursor
|
|
1186
1188
|
{ target: "cursor", feature: "rules", entry: "**/.cursor/" },
|
|
1187
1189
|
{ target: "cursor", feature: "ignore", entry: "**/.cursorignore" },
|
|
1190
|
+
// deepagents-cli
|
|
1191
|
+
{ target: "deepagents", feature: "rules", entry: "**/.deepagents/AGENTS.md" },
|
|
1192
|
+
{ target: "deepagents", feature: "rules", entry: "**/.deepagents/memories/" },
|
|
1193
|
+
{ target: "deepagents", feature: "mcp", entry: "**/.deepagents/.mcp.json" },
|
|
1194
|
+
{ target: "deepagents", feature: "skills", entry: "**/.deepagents/skills/" },
|
|
1195
|
+
{ target: "deepagents", feature: "subagents", entry: "**/.deepagents/agents/" },
|
|
1196
|
+
{ target: "deepagents", feature: "hooks", entry: "**/.deepagents/hooks.json" },
|
|
1188
1197
|
// Factory Droid
|
|
1189
1198
|
{ target: "factorydroid", feature: "rules", entry: "**/.factory/rules/" },
|
|
1190
1199
|
{ target: "factorydroid", feature: "commands", entry: "**/.factory/commands/" },
|
|
@@ -4370,7 +4379,7 @@ function wrapCommand({
|
|
|
4370
4379
|
}
|
|
4371
4380
|
|
|
4372
4381
|
// src/cli/index.ts
|
|
4373
|
-
var getVersion = () => "7.
|
|
4382
|
+
var getVersion = () => "7.23.0";
|
|
4374
4383
|
function wrapCommand2(name, errorCode, handler) {
|
|
4375
4384
|
return wrapCommand({ name, errorCode, handler, getVersion });
|
|
4376
4385
|
}
|