rulesync 8.14.0 → 8.15.1

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/dist/cli/index.js CHANGED
@@ -79,7 +79,7 @@ import {
79
79
  stringifyFrontmatter,
80
80
  toPosixPath,
81
81
  writeFileContent
82
- } from "../chunk-C7PHKGD2.js";
82
+ } from "../chunk-3DM6NLND.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,10 @@ 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
+ // No `**/kilo.jsonc` entry: structurally identical to `opencode.jsonc` (no
1412
+ // entry). The Kilo translator preserves non-permissions Kilo settings on
1413
+ // round-trip, so the file is intended to be checked in by the user — adding
1414
+ // `**/kilo.jsonc` would be too aggressive.
1409
1415
  // Kiro
1410
1416
  { target: "kiro", feature: "rules", entry: "**/.kiro/steering/" },
1411
1417
  { target: "kiro", feature: "commands", entry: "**/.kiro/prompts/" },
@@ -1433,6 +1439,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
1433
1439
  // Qwen Code
1434
1440
  { target: "qwencode", feature: "rules", entry: "**/QWEN.md" },
1435
1441
  { target: "qwencode", feature: "general", entry: "**/.qwen/memories/" },
1442
+ { target: "qwencode", feature: "permissions", entry: "**/.qwen/settings.json" },
1436
1443
  // Replit
1437
1444
  { target: "replit", feature: "rules", entry: "**/replit.md" },
1438
1445
  // Roo
@@ -6478,7 +6485,7 @@ function wrapCommand({
6478
6485
  }
6479
6486
 
6480
6487
  // src/cli/index.ts
6481
- var getVersion = () => "8.14.0";
6488
+ var getVersion = () => "8.15.1";
6482
6489
  function wrapCommand2(name, errorCode, handler) {
6483
6490
  return wrapCommand({ name, errorCode, handler, getVersion });
6484
6491
  }