rulesync 7.22.0 → 7.23.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-4WYBBN4I.js → chunk-GAWAOFCL.js} +1328 -627
- package/dist/cli/index.cjs +1595 -887
- package/dist/cli/index.js +9 -2
- package/dist/index.cjs +1351 -650
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -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", "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";
|
|
@@ -151,6 +152,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
151
152
|
copilot: "copilot";
|
|
152
153
|
copilotcli: "copilotcli";
|
|
153
154
|
cursor: "cursor";
|
|
155
|
+
deepagents: "deepagents";
|
|
154
156
|
factorydroid: "factorydroid";
|
|
155
157
|
geminicli: "geminicli";
|
|
156
158
|
goose: "goose";
|
|
@@ -177,6 +179,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
177
179
|
opencode: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
178
180
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
179
181
|
}, z.core.$loose>>;
|
|
182
|
+
deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
183
|
+
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
184
|
+
}, z.core.$loose>>;
|
|
180
185
|
copilot: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
181
186
|
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
182
187
|
}, z.core.$loose>>;
|
|
@@ -198,6 +203,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
198
203
|
opencode?: {
|
|
199
204
|
"allowed-tools"?: string[];
|
|
200
205
|
};
|
|
206
|
+
deepagents?: {
|
|
207
|
+
"allowed-tools"?: string[];
|
|
208
|
+
};
|
|
201
209
|
copilot?: {
|
|
202
210
|
license?: string;
|
|
203
211
|
};
|
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", "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";
|
|
@@ -151,6 +152,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
151
152
|
copilot: "copilot";
|
|
152
153
|
copilotcli: "copilotcli";
|
|
153
154
|
cursor: "cursor";
|
|
155
|
+
deepagents: "deepagents";
|
|
154
156
|
factorydroid: "factorydroid";
|
|
155
157
|
geminicli: "geminicli";
|
|
156
158
|
goose: "goose";
|
|
@@ -177,6 +179,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
177
179
|
opencode: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
178
180
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
179
181
|
}, z.core.$loose>>;
|
|
182
|
+
deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
183
|
+
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
184
|
+
}, z.core.$loose>>;
|
|
180
185
|
copilot: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
181
186
|
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
182
187
|
}, z.core.$loose>>;
|
|
@@ -198,6 +203,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
198
203
|
opencode?: {
|
|
199
204
|
"allowed-tools"?: string[];
|
|
200
205
|
};
|
|
206
|
+
deepagents?: {
|
|
207
|
+
"allowed-tools"?: string[];
|
|
208
|
+
};
|
|
201
209
|
copilot?: {
|
|
202
210
|
license?: string;
|
|
203
211
|
};
|
package/dist/index.js
CHANGED