rulesync 8.23.0 → 8.24.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/README.md +42 -36
- package/dist/{chunk-G2YWSXTU.js → chunk-YM6XKTQO.js} +913 -523
- package/dist/cli/index.cjs +1109 -718
- package/dist/cli/index.js +5 -4
- package/dist/index.cjs +943 -553
- package/dist/index.d.cts +29 -1
- package/dist/index.d.ts +29 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { z } from 'zod/mini';
|
|
2
2
|
|
|
3
|
-
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "antigravity-cli", "antigravity-ide", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "pi", "qwencode", "replit", "roo", "rovodev", "takt", "warp", "windsurf", "zed"];
|
|
3
|
+
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "amp", "antigravity", "antigravity-cli", "antigravity-ide", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "pi", "qwencode", "replit", "roo", "rovodev", "takt", "warp", "windsurf", "zed"];
|
|
4
4
|
declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
5
5
|
agentsmd: "agentsmd";
|
|
6
6
|
agentsskills: "agentsskills";
|
|
7
|
+
amp: "amp";
|
|
7
8
|
antigravity: "antigravity";
|
|
8
9
|
"antigravity-cli": "antigravity-cli";
|
|
9
10
|
"antigravity-ide": "antigravity-ide";
|
|
@@ -151,6 +152,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
151
152
|
targets: z.ZodMiniDefault<z.ZodMiniArray<z.ZodMiniEnum<{
|
|
152
153
|
agentsmd: "agentsmd";
|
|
153
154
|
agentsskills: "agentsskills";
|
|
155
|
+
amp: "amp";
|
|
154
156
|
antigravity: "antigravity";
|
|
155
157
|
"antigravity-cli": "antigravity-cli";
|
|
156
158
|
"antigravity-ide": "antigravity-ide";
|
|
@@ -204,6 +206,19 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
204
206
|
copilot: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
205
207
|
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
206
208
|
}, z.core.$loose>>;
|
|
209
|
+
pi: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
210
|
+
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
211
|
+
"disable-model-invocation": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
212
|
+
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
213
|
+
compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
214
|
+
metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
215
|
+
}, z.core.$loose>>;
|
|
216
|
+
replit: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
217
|
+
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
218
|
+
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
219
|
+
compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
220
|
+
metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
221
|
+
}, z.core.$loose>>;
|
|
207
222
|
cline: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
208
223
|
roo: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
209
224
|
takt: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
@@ -236,6 +251,19 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
236
251
|
copilot?: {
|
|
237
252
|
license?: string;
|
|
238
253
|
};
|
|
254
|
+
pi?: {
|
|
255
|
+
"allowed-tools"?: string[];
|
|
256
|
+
"disable-model-invocation"?: boolean;
|
|
257
|
+
license?: string;
|
|
258
|
+
compatibility?: Record<string, unknown>;
|
|
259
|
+
metadata?: Record<string, unknown>;
|
|
260
|
+
};
|
|
261
|
+
replit?: {
|
|
262
|
+
"allowed-tools"?: string[];
|
|
263
|
+
license?: string;
|
|
264
|
+
compatibility?: Record<string, unknown>;
|
|
265
|
+
metadata?: Record<string, unknown>;
|
|
266
|
+
};
|
|
239
267
|
roo?: Record<string, unknown>;
|
|
240
268
|
cline?: Record<string, unknown>;
|
|
241
269
|
takt?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { z } from 'zod/mini';
|
|
2
2
|
|
|
3
|
-
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "antigravity", "antigravity-cli", "antigravity-ide", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "pi", "qwencode", "replit", "roo", "rovodev", "takt", "warp", "windsurf", "zed"];
|
|
3
|
+
declare const ALL_TOOL_TARGETS: readonly ["agentsmd", "agentsskills", "amp", "antigravity", "antigravity-cli", "antigravity-ide", "augmentcode", "augmentcode-legacy", "claudecode", "claudecode-legacy", "cline", "codexcli", "copilot", "copilotcli", "cursor", "deepagents", "factorydroid", "geminicli", "goose", "junie", "kilo", "kiro", "opencode", "pi", "qwencode", "replit", "roo", "rovodev", "takt", "warp", "windsurf", "zed"];
|
|
4
4
|
declare const ToolTargetSchema: z.ZodMiniEnum<{
|
|
5
5
|
agentsmd: "agentsmd";
|
|
6
6
|
agentsskills: "agentsskills";
|
|
7
|
+
amp: "amp";
|
|
7
8
|
antigravity: "antigravity";
|
|
8
9
|
"antigravity-cli": "antigravity-cli";
|
|
9
10
|
"antigravity-ide": "antigravity-ide";
|
|
@@ -151,6 +152,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
151
152
|
targets: z.ZodMiniDefault<z.ZodMiniArray<z.ZodMiniEnum<{
|
|
152
153
|
agentsmd: "agentsmd";
|
|
153
154
|
agentsskills: "agentsskills";
|
|
155
|
+
amp: "amp";
|
|
154
156
|
antigravity: "antigravity";
|
|
155
157
|
"antigravity-cli": "antigravity-cli";
|
|
156
158
|
"antigravity-ide": "antigravity-ide";
|
|
@@ -204,6 +206,19 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
204
206
|
copilot: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
205
207
|
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
206
208
|
}, z.core.$loose>>;
|
|
209
|
+
pi: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
210
|
+
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
211
|
+
"disable-model-invocation": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
212
|
+
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
213
|
+
compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
214
|
+
metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
215
|
+
}, z.core.$loose>>;
|
|
216
|
+
replit: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
217
|
+
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
218
|
+
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
219
|
+
compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
220
|
+
metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
221
|
+
}, z.core.$loose>>;
|
|
207
222
|
cline: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
208
223
|
roo: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
209
224
|
takt: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
@@ -236,6 +251,19 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
236
251
|
copilot?: {
|
|
237
252
|
license?: string;
|
|
238
253
|
};
|
|
254
|
+
pi?: {
|
|
255
|
+
"allowed-tools"?: string[];
|
|
256
|
+
"disable-model-invocation"?: boolean;
|
|
257
|
+
license?: string;
|
|
258
|
+
compatibility?: Record<string, unknown>;
|
|
259
|
+
metadata?: Record<string, unknown>;
|
|
260
|
+
};
|
|
261
|
+
replit?: {
|
|
262
|
+
"allowed-tools"?: string[];
|
|
263
|
+
license?: string;
|
|
264
|
+
compatibility?: Record<string, unknown>;
|
|
265
|
+
metadata?: Record<string, unknown>;
|
|
266
|
+
};
|
|
239
267
|
roo?: Record<string, unknown>;
|
|
240
268
|
cline?: Record<string, unknown>;
|
|
241
269
|
takt?: {
|
package/dist/index.js
CHANGED