rulesync 8.25.0 → 8.26.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/dist/cli/index.js CHANGED
@@ -79,7 +79,7 @@ import {
79
79
  stringifyFrontmatter,
80
80
  toPosixPath,
81
81
  writeFileContent
82
- } from "../chunk-YJH5W5OM.js";
82
+ } from "../chunk-XKXN32Q2.js";
83
83
 
84
84
  // src/cli/index.ts
85
85
  import { Command } from "commander";
@@ -1273,6 +1273,9 @@ var GITIGNORE_ENTRY_REGISTRY = [
1273
1273
  // AGENTS.md
1274
1274
  { target: ["agentsmd", "pi", "warp"], feature: "rules", entry: "**/AGENTS.md" },
1275
1275
  { target: "agentsmd", feature: "rules", entry: "**/.agents/" },
1276
+ // Amp
1277
+ // Amp reads Agent Skills from the shared `.agents/skills/` project tree.
1278
+ { target: "amp", feature: "skills", entry: "**/.agents/skills/" },
1276
1279
  // Antigravity (IDE + CLI, Antigravity 2.0)
1277
1280
  // Both targets share the `.agents/` project tree; the CLI additionally
1278
1281
  // writes a root `GEMINI.md`. Global-scope paths (under the home directory)
@@ -1309,6 +1312,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
1309
1312
  { target: "augmentcode", feature: "commands", entry: "**/.augment/commands/" },
1310
1313
  { target: "augmentcode", feature: "ignore", entry: "**/.augmentignore" },
1311
1314
  { target: "augmentcode", feature: "permissions", entry: "**/.augment/settings.json" },
1315
+ { target: "augmentcode", feature: "hooks", entry: "**/.augment/settings.json" },
1312
1316
  // Claude Code
1313
1317
  { target: "claudecode", feature: "rules", entry: "**/CLAUDE.md" },
1314
1318
  { target: "claudecode", feature: "rules", entry: "**/CLAUDE.local.md" },
@@ -1397,6 +1401,8 @@ var GITIGNORE_ENTRY_REGISTRY = [
1397
1401
  { target: "goose", feature: "rules", entry: "**/.goosehints" },
1398
1402
  { target: "goose", feature: "rules", entry: "**/.goose/" },
1399
1403
  { target: "goose", feature: "ignore", entry: "**/.gooseignore" },
1404
+ // Goose lifecycle hooks plugin (.agents/plugins/<name>/hooks/hooks.json)
1405
+ { target: "goose", feature: "hooks", entry: "**/.agents/plugins/" },
1400
1406
  // GitHub Copilot
1401
1407
  {
1402
1408
  target: ["copilot", "copilotcli"],
@@ -1438,7 +1444,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
1438
1444
  { target: "kilo", feature: "skills", entry: "**/.kilo/skills/" },
1439
1445
  { target: "kilo", feature: "commands", entry: "**/.kilo/workflows/" },
1440
1446
  { target: "kilo", feature: "mcp", entry: "**/.kilo/mcp.json" },
1441
- { target: "kilo", feature: "ignore", entry: "**/.kiloignore" },
1447
+ { target: "kilo", feature: "ignore", entry: "**/.kilocodeignore" },
1442
1448
  // No `**/kilo.jsonc` entry: structurally identical to `opencode.jsonc` (no
1443
1449
  // entry). The Kilo translator preserves non-permissions Kilo settings on
1444
1450
  // round-trip, so the file is intended to be checked in by the user — adding
@@ -1469,6 +1475,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
1469
1475
  { target: "pi", feature: "skills", entry: "**/.pi/skills/" },
1470
1476
  // Qwen Code
1471
1477
  { target: "qwencode", feature: "rules", entry: "**/QWEN.md" },
1478
+ { target: "qwencode", feature: "ignore", entry: "**/.qwenignore" },
1472
1479
  { target: "qwencode", feature: "general", entry: "**/.qwen/memories/" },
1473
1480
  { target: "qwencode", feature: "permissions", entry: "**/.qwen/settings.json" },
1474
1481
  // Replit
@@ -1503,13 +1510,15 @@ var GITIGNORE_ENTRY_REGISTRY = [
1503
1510
  { target: "takt", feature: "general", entry: "**/.takt/tasks/" },
1504
1511
  { target: "takt", feature: "general", entry: "**/.takt/.cache/" },
1505
1512
  { target: "takt", feature: "general", entry: "**/.takt/config.yaml" },
1506
- // Windsurf
1507
- { target: "windsurf", feature: "rules", entry: "**/.windsurf/rules/" },
1508
- { target: "windsurf", feature: "commands", entry: "**/.windsurf/workflows/" },
1509
- { target: "windsurf", feature: "mcp", entry: "**/.windsurf/mcp_config.json" },
1510
- { target: "windsurf", feature: "hooks", entry: "**/.windsurf/hooks.json" },
1511
- { target: "windsurf", feature: "skills", entry: "**/.windsurf/skills/" },
1512
- { target: "windsurf", feature: "skills", entry: "**/.codeium/windsurf/skills/" },
1513
+ // Devin (Devin Desktop). Since the rebrand (v3.0.12, 2026-06-02), project
1514
+ // rules/workflows/skills live under `.devin/`; MCP and hooks keep their
1515
+ // `.devin/` paths and the global skills path is unchanged.
1516
+ { target: "devin", feature: "rules", entry: "**/.devin/rules/" },
1517
+ { target: "devin", feature: "commands", entry: "**/.devin/workflows/" },
1518
+ { target: "devin", feature: "mcp", entry: "**/.windsurf/mcp_config.json" },
1519
+ { target: "devin", feature: "hooks", entry: "**/.windsurf/hooks.json" },
1520
+ { target: "devin", feature: "skills", entry: "**/.devin/skills/" },
1521
+ { target: "devin", feature: "skills", entry: "**/.codeium/windsurf/skills/" },
1513
1522
  // Warp
1514
1523
  // `/init` now writes `AGENTS.md` (handled by the shared AGENTS.md entry above).
1515
1524
  { target: "warp", feature: "rules", entry: "**/.warp/" },
@@ -6539,7 +6548,7 @@ function wrapCommand({
6539
6548
  }
6540
6549
 
6541
6550
  // src/cli/index.ts
6542
- var getVersion = () => "8.25.0";
6551
+ var getVersion = () => "8.26.0";
6543
6552
  function wrapCommand2(name, errorCode, handler) {
6544
6553
  return wrapCommand({ name, errorCode, handler, getVersion });
6545
6554
  }