rulesync 8.26.0 → 8.27.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 +4 -4
- package/dist/{chunk-XKXN32Q2.js → chunk-4YKAF3LH.js} +3149 -1483
- package/dist/cli/index.cjs +3573 -1893
- package/dist/cli/index.js +23 -9
- package/dist/index.cjs +3342 -1676
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -217,6 +217,9 @@ 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>>>;
|
|
@@ -304,6 +307,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
304
307
|
};
|
|
305
308
|
opencode?: {
|
|
306
309
|
"allowed-tools"?: string[];
|
|
310
|
+
license?: string;
|
|
311
|
+
compatibility?: Record<string, unknown>;
|
|
312
|
+
metadata?: Record<string, unknown>;
|
|
307
313
|
};
|
|
308
314
|
kilo?: {
|
|
309
315
|
"allowed-tools"?: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -217,6 +217,9 @@ 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>>>;
|
|
@@ -304,6 +307,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
304
307
|
};
|
|
305
308
|
opencode?: {
|
|
306
309
|
"allowed-tools"?: string[];
|
|
310
|
+
license?: string;
|
|
311
|
+
compatibility?: Record<string, unknown>;
|
|
312
|
+
metadata?: Record<string, unknown>;
|
|
307
313
|
};
|
|
308
314
|
kilo?: {
|
|
309
315
|
"allowed-tools"?: string[];
|
package/dist/index.js
CHANGED