rulesync 8.14.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 +4 -4
- package/dist/{chunk-C7PHKGD2.js → chunk-UMJWBQ2X.js} +1732 -761
- package/dist/cli/index.cjs +2068 -1093
- package/dist/cli/index.js +6 -2
- package/dist/index.cjs +1768 -797
- 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/" },
|
|
@@ -1406,6 +1408,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1406
1408
|
{ target: "kilo", feature: "commands", entry: "**/.kilo/workflows/" },
|
|
1407
1409
|
{ target: "kilo", feature: "mcp", entry: "**/.kilo/mcp.json" },
|
|
1408
1410
|
{ target: "kilo", feature: "ignore", entry: "**/.kiloignore" },
|
|
1411
|
+
{ target: "kilo", feature: "permissions", entry: "**/kilo.jsonc" },
|
|
1409
1412
|
// Kiro
|
|
1410
1413
|
{ target: "kiro", feature: "rules", entry: "**/.kiro/steering/" },
|
|
1411
1414
|
{ target: "kiro", feature: "commands", entry: "**/.kiro/prompts/" },
|
|
@@ -1433,6 +1436,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1433
1436
|
// Qwen Code
|
|
1434
1437
|
{ target: "qwencode", feature: "rules", entry: "**/QWEN.md" },
|
|
1435
1438
|
{ target: "qwencode", feature: "general", entry: "**/.qwen/memories/" },
|
|
1439
|
+
{ target: "qwencode", feature: "permissions", entry: "**/.qwen/settings.json" },
|
|
1436
1440
|
// Replit
|
|
1437
1441
|
{ target: "replit", feature: "rules", entry: "**/replit.md" },
|
|
1438
1442
|
// Roo
|
|
@@ -6478,7 +6482,7 @@ function wrapCommand({
|
|
|
6478
6482
|
}
|
|
6479
6483
|
|
|
6480
6484
|
// src/cli/index.ts
|
|
6481
|
-
var getVersion = () => "8.
|
|
6485
|
+
var getVersion = () => "8.15.0";
|
|
6482
6486
|
function wrapCommand2(name, errorCode, handler) {
|
|
6483
6487
|
return wrapCommand({ name, errorCode, handler, getVersion });
|
|
6484
6488
|
}
|