rulesync 8.8.0 → 8.9.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 +1 -0
- package/dist/{chunk-XIMWQREW.js → chunk-EHXIVMY2.js} +1359 -896
- package/dist/cli/index.cjs +1833 -1366
- package/dist/cli/index.js +7 -3
- package/dist/index.cjs +1388 -925
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -77,7 +77,7 @@ import {
|
|
|
77
77
|
stringifyFrontmatter,
|
|
78
78
|
toPosixPath,
|
|
79
79
|
writeFileContent
|
|
80
|
-
} from "../chunk-
|
|
80
|
+
} from "../chunk-EHXIVMY2.js";
|
|
81
81
|
|
|
82
82
|
// src/cli/index.ts
|
|
83
83
|
import { Command } from "commander";
|
|
@@ -1175,7 +1175,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1175
1175
|
// This prevents accidental commits when a user disables the rovodev target.
|
|
1176
1176
|
{ target: "common", feature: "general", entry: "**/AGENTS.local.md" },
|
|
1177
1177
|
// AGENTS.md
|
|
1178
|
-
{ target: "agentsmd", feature: "rules", entry: "**/AGENTS.md" },
|
|
1178
|
+
{ target: ["agentsmd", "pi"], feature: "rules", entry: "**/AGENTS.md" },
|
|
1179
1179
|
{ target: "agentsmd", feature: "rules", entry: "**/.agents/" },
|
|
1180
1180
|
// Augment Code
|
|
1181
1181
|
{ target: "augmentcode", feature: "rules", entry: "**/.augment/rules/" },
|
|
@@ -1315,6 +1315,10 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1315
1315
|
feature: "general",
|
|
1316
1316
|
entry: "**/.opencode/package-lock.json"
|
|
1317
1317
|
},
|
|
1318
|
+
// Pi Coding Agent
|
|
1319
|
+
{ target: "pi", feature: "rules", entry: "**/.agents/memories/" },
|
|
1320
|
+
{ target: "pi", feature: "commands", entry: "**/.pi/prompts/" },
|
|
1321
|
+
{ target: "pi", feature: "skills", entry: "**/.pi/skills/" },
|
|
1318
1322
|
// Qwen Code
|
|
1319
1323
|
{ target: "qwencode", feature: "rules", entry: "**/QWEN.md" },
|
|
1320
1324
|
{ target: "qwencode", feature: "general", entry: "**/.qwen/memories/" },
|
|
@@ -6248,7 +6252,7 @@ function wrapCommand({
|
|
|
6248
6252
|
}
|
|
6249
6253
|
|
|
6250
6254
|
// src/cli/index.ts
|
|
6251
|
-
var getVersion = () => "8.
|
|
6255
|
+
var getVersion = () => "8.9.0";
|
|
6252
6256
|
function wrapCommand2(name, errorCode, handler) {
|
|
6253
6257
|
return wrapCommand({ name, errorCode, handler, getVersion });
|
|
6254
6258
|
}
|