rulesync 7.23.0 → 7.25.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 +27 -26
- package/dist/{chunk-GAWAOFCL.js → chunk-XGT6BGPR.js} +1776 -881
- package/dist/cli/index.cjs +2257 -1305
- package/dist/cli/index.js +74 -15
- package/dist/index.cjs +1899 -1005
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod/mini';
|
|
2
2
|
|
|
3
|
-
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "warp", "windsurf", "zed"];
|
|
3
|
+
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "rovodev", "warp", "windsurf", "zed"];
|
|
4
4
|
declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
5
5
|
agentsmd: "agentsmd";
|
|
6
6
|
agentsskills: "agentsskills";
|
|
@@ -25,6 +25,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
25
25
|
qwencode: "qwencode";
|
|
26
26
|
replit: "replit";
|
|
27
27
|
roo: "roo";
|
|
28
|
+
rovodev: "rovodev";
|
|
28
29
|
warp: "warp";
|
|
29
30
|
windsurf: "windsurf";
|
|
30
31
|
zed: "zed";
|
|
@@ -119,6 +120,9 @@ declare abstract class AiDir {
|
|
|
119
120
|
frontmatter?: Record<string, unknown>;
|
|
120
121
|
} | undefined;
|
|
121
122
|
getOtherFiles(): AiDirFile[];
|
|
123
|
+
/**
|
|
124
|
+
* Returns the relative path from CWD with POSIX separators for consistent cross-platform output.
|
|
125
|
+
*/
|
|
122
126
|
getRelativePathFromCwd(): string;
|
|
123
127
|
getGlobal(): boolean;
|
|
124
128
|
setMainFile(name: string, body: string, frontmatter?: Record<string, unknown>): void;
|
|
@@ -163,6 +167,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
163
167
|
qwencode: "qwencode";
|
|
164
168
|
replit: "replit";
|
|
165
169
|
roo: "roo";
|
|
170
|
+
rovodev: "rovodev";
|
|
166
171
|
warp: "warp";
|
|
167
172
|
windsurf: "windsurf";
|
|
168
173
|
zed: "zed";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod/mini';
|
|
2
2
|
|
|
3
|
-
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "warp", "windsurf", "zed"];
|
|
3
|
+
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "qwencode", "replit", "roo", "rovodev", "warp", "windsurf", "zed"];
|
|
4
4
|
declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
5
5
|
agentsmd: "agentsmd";
|
|
6
6
|
agentsskills: "agentsskills";
|
|
@@ -25,6 +25,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
25
25
|
qwencode: "qwencode";
|
|
26
26
|
replit: "replit";
|
|
27
27
|
roo: "roo";
|
|
28
|
+
rovodev: "rovodev";
|
|
28
29
|
warp: "warp";
|
|
29
30
|
windsurf: "windsurf";
|
|
30
31
|
zed: "zed";
|
|
@@ -119,6 +120,9 @@ declare abstract class AiDir {
|
|
|
119
120
|
frontmatter?: Record<string, unknown>;
|
|
120
121
|
} | undefined;
|
|
121
122
|
getOtherFiles(): AiDirFile[];
|
|
123
|
+
/**
|
|
124
|
+
* Returns the relative path from CWD with POSIX separators for consistent cross-platform output.
|
|
125
|
+
*/
|
|
122
126
|
getRelativePathFromCwd(): string;
|
|
123
127
|
getGlobal(): boolean;
|
|
124
128
|
setMainFile(name: string, body: string, frontmatter?: Record<string, unknown>): void;
|
|
@@ -163,6 +167,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
163
167
|
qwencode: "qwencode";
|
|
164
168
|
replit: "replit";
|
|
165
169
|
roo: "roo";
|
|
170
|
+
rovodev: "rovodev";
|
|
166
171
|
warp: "warp";
|
|
167
172
|
windsurf: "windsurf";
|
|
168
173
|
zed: "zed";
|
package/dist/index.js
CHANGED