rulesync 8.26.0 → 8.28.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 +10 -10
- package/dist/{chunk-XKXN32Q2.js → chunk-3N62MMXU.js} +4869 -1892
- package/dist/cli/index.cjs +5330 -2339
- package/dist/cli/index.js +38 -14
- package/dist/index.cjs +4867 -1900
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -217,9 +217,15 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
217
217
|
}, z.core.$loose>>;
|
|
218
218
|
opencode: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
219
219
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
220
|
+
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
221
|
+
compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
222
|
+
metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
220
223
|
}, z.core.$loose>>;
|
|
221
224
|
kilo: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
222
225
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
226
|
+
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
227
|
+
compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
228
|
+
metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
223
229
|
}, z.core.$loose>>;
|
|
224
230
|
deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
225
231
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
@@ -304,6 +310,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
304
310
|
};
|
|
305
311
|
opencode?: {
|
|
306
312
|
"allowed-tools"?: string[];
|
|
313
|
+
license?: string;
|
|
314
|
+
compatibility?: Record<string, unknown>;
|
|
315
|
+
metadata?: Record<string, unknown>;
|
|
307
316
|
};
|
|
308
317
|
kilo?: {
|
|
309
318
|
"allowed-tools"?: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -217,9 +217,15 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
217
217
|
}, z.core.$loose>>;
|
|
218
218
|
opencode: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
219
219
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
220
|
+
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
221
|
+
compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
222
|
+
metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
220
223
|
}, z.core.$loose>>;
|
|
221
224
|
kilo: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
222
225
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
226
|
+
license: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
227
|
+
compatibility: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
228
|
+
metadata: z.ZodMiniOptional<z.ZodMiniObject<{}, z.core.$loose>>;
|
|
223
229
|
}, z.core.$loose>>;
|
|
224
230
|
deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
225
231
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
@@ -304,6 +310,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
304
310
|
};
|
|
305
311
|
opencode?: {
|
|
306
312
|
"allowed-tools"?: string[];
|
|
313
|
+
license?: string;
|
|
314
|
+
compatibility?: Record<string, unknown>;
|
|
315
|
+
metadata?: Record<string, unknown>;
|
|
307
316
|
};
|
|
308
317
|
kilo?: {
|
|
309
318
|
"allowed-tools"?: string[];
|
package/dist/index.js
CHANGED