rulesync 7.22.0 → 7.24.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 -25
- package/dist/{chunk-4WYBBN4I.js → chunk-A4FZT3JT.js} +2614 -1023
- package/dist/cli/index.cjs +2992 -1344
- package/dist/cli/index.js +69 -12
- package/dist/index.cjs +2691 -1100
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -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", "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";
|
|
@@ -14,6 +14,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
14
14
|
copilot: "copilot";
|
|
15
15
|
copilotcli: "copilotcli";
|
|
16
16
|
cursor: "cursor";
|
|
17
|
+
deepagents: "deepagents";
|
|
17
18
|
factorydroid: "factorydroid";
|
|
18
19
|
geminicli: "geminicli";
|
|
19
20
|
goose: "goose";
|
|
@@ -24,6 +25,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
24
25
|
qwencode: "qwencode";
|
|
25
26
|
replit: "replit";
|
|
26
27
|
roo: "roo";
|
|
28
|
+
rovodev: "rovodev";
|
|
27
29
|
warp: "warp";
|
|
28
30
|
windsurf: "windsurf";
|
|
29
31
|
zed: "zed";
|
|
@@ -151,6 +153,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
151
153
|
copilot: "copilot";
|
|
152
154
|
copilotcli: "copilotcli";
|
|
153
155
|
cursor: "cursor";
|
|
156
|
+
deepagents: "deepagents";
|
|
154
157
|
factorydroid: "factorydroid";
|
|
155
158
|
geminicli: "geminicli";
|
|
156
159
|
goose: "goose";
|
|
@@ -161,6 +164,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
161
164
|
qwencode: "qwencode";
|
|
162
165
|
replit: "replit";
|
|
163
166
|
roo: "roo";
|
|
167
|
+
rovodev: "rovodev";
|
|
164
168
|
warp: "warp";
|
|
165
169
|
windsurf: "windsurf";
|
|
166
170
|
zed: "zed";
|
|
@@ -177,6 +181,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
177
181
|
opencode: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
178
182
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
179
183
|
}, z.core.$loose>>;
|
|
184
|
+
deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
185
|
+
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
186
|
+
}, z.core.$loose>>;
|
|
180
187
|
copilot: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
181
188
|
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
182
189
|
}, z.core.$loose>>;
|
|
@@ -198,6 +205,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
198
205
|
opencode?: {
|
|
199
206
|
"allowed-tools"?: string[];
|
|
200
207
|
};
|
|
208
|
+
deepagents?: {
|
|
209
|
+
"allowed-tools"?: string[];
|
|
210
|
+
};
|
|
201
211
|
copilot?: {
|
|
202
212
|
license?: string;
|
|
203
213
|
};
|
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", "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";
|
|
@@ -14,6 +14,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
14
14
|
copilot: "copilot";
|
|
15
15
|
copilotcli: "copilotcli";
|
|
16
16
|
cursor: "cursor";
|
|
17
|
+
deepagents: "deepagents";
|
|
17
18
|
factorydroid: "factorydroid";
|
|
18
19
|
geminicli: "geminicli";
|
|
19
20
|
goose: "goose";
|
|
@@ -24,6 +25,7 @@ declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
|
24
25
|
qwencode: "qwencode";
|
|
25
26
|
replit: "replit";
|
|
26
27
|
roo: "roo";
|
|
28
|
+
rovodev: "rovodev";
|
|
27
29
|
warp: "warp";
|
|
28
30
|
windsurf: "windsurf";
|
|
29
31
|
zed: "zed";
|
|
@@ -151,6 +153,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
151
153
|
copilot: "copilot";
|
|
152
154
|
copilotcli: "copilotcli";
|
|
153
155
|
cursor: "cursor";
|
|
156
|
+
deepagents: "deepagents";
|
|
154
157
|
factorydroid: "factorydroid";
|
|
155
158
|
geminicli: "geminicli";
|
|
156
159
|
goose: "goose";
|
|
@@ -161,6 +164,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
161
164
|
qwencode: "qwencode";
|
|
162
165
|
replit: "replit";
|
|
163
166
|
roo: "roo";
|
|
167
|
+
rovodev: "rovodev";
|
|
164
168
|
warp: "warp";
|
|
165
169
|
windsurf: "windsurf";
|
|
166
170
|
zed: "zed";
|
|
@@ -177,6 +181,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
177
181
|
opencode: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
178
182
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
179
183
|
}, z.core.$loose>>;
|
|
184
|
+
deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
185
|
+
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
186
|
+
}, z.core.$loose>>;
|
|
180
187
|
copilot: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
181
188
|
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
182
189
|
}, z.core.$loose>>;
|
|
@@ -198,6 +205,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
198
205
|
opencode?: {
|
|
199
206
|
"allowed-tools"?: string[];
|
|
200
207
|
};
|
|
208
|
+
deepagents?: {
|
|
209
|
+
"allowed-tools"?: string[];
|
|
210
|
+
};
|
|
201
211
|
copilot?: {
|
|
202
212
|
license?: string;
|
|
203
213
|
};
|
package/dist/index.js
CHANGED