rulesync 8.7.0 → 8.8.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
@@ -77,7 +77,7 @@ import {
77
77
  stringifyFrontmatter,
78
78
  toPosixPath,
79
79
  writeFileContent
80
- } from "../chunk-QGQQJNZD.js";
80
+ } from "../chunk-XIMWQREW.js";
81
81
 
82
82
  // src/cli/index.ts
83
83
  import { Command } from "commander";
@@ -1340,6 +1340,16 @@ var GITIGNORE_ENTRY_REGISTRY = [
1340
1340
  entry: "**/.rovodev/.rulesync/"
1341
1341
  },
1342
1342
  { target: "rovodev", feature: "skills", entry: "**/.agents/skills/" },
1343
+ // TAKT
1344
+ // Each rulesync feature maps one-to-one onto a TAKT facet directory.
1345
+ { target: "takt", feature: "rules", entry: "**/.takt/facets/policies/" },
1346
+ { target: "takt", feature: "skills", entry: "**/.takt/facets/knowledge/" },
1347
+ { target: "takt", feature: "subagents", entry: "**/.takt/facets/personas/" },
1348
+ { target: "takt", feature: "commands", entry: "**/.takt/facets/instructions/" },
1349
+ { target: "takt", feature: "general", entry: "**/.takt/runs/" },
1350
+ { target: "takt", feature: "general", entry: "**/.takt/tasks/" },
1351
+ { target: "takt", feature: "general", entry: "**/.takt/.cache/" },
1352
+ { target: "takt", feature: "general", entry: "**/.takt/config.yaml" },
1343
1353
  // Windsurf
1344
1354
  { target: "windsurf", feature: "skills", entry: "**/.windsurf/skills/" },
1345
1355
  { target: "windsurf", feature: "skills", entry: "**/.codeium/windsurf/skills/" },
@@ -1347,9 +1357,16 @@ var GITIGNORE_ENTRY_REGISTRY = [
1347
1357
  { target: "warp", feature: "rules", entry: "**/.warp/" },
1348
1358
  { target: "warp", feature: "rules", entry: "**/WARP.md" }
1349
1359
  ];
1350
- var ALL_GITIGNORE_ENTRIES = GITIGNORE_ENTRY_REGISTRY.map(
1351
- (tag) => tag.entry
1352
- );
1360
+ var ALL_GITIGNORE_ENTRIES = (() => {
1361
+ const seen = /* @__PURE__ */ new Set();
1362
+ const result = [];
1363
+ for (const tag of GITIGNORE_ENTRY_REGISTRY) {
1364
+ if (seen.has(tag.entry)) continue;
1365
+ seen.add(tag.entry);
1366
+ result.push(tag.entry);
1367
+ }
1368
+ return result;
1369
+ })();
1353
1370
  var isTargetSelected = (target, selectedTargets) => {
1354
1371
  const targets = normalizeGitignoreEntryTargets(target);
1355
1372
  if (targets.includes("common")) return true;
@@ -6231,7 +6248,7 @@ function wrapCommand({
6231
6248
  }
6232
6249
 
6233
6250
  // src/cli/index.ts
6234
- var getVersion = () => "8.7.0";
6251
+ var getVersion = () => "8.8.1";
6235
6252
  function wrapCommand2(name, errorCode, handler) {
6236
6253
  return wrapCommand({ name, errorCode, handler, getVersion });
6237
6254
  }