rulesync 8.27.0 → 8.28.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 +6 -6
- package/dist/{chunk-4YKAF3LH.js → chunk-BLYLT4LZ.js} +2145 -834
- package/dist/cli/index.cjs +2262 -951
- package/dist/cli/index.js +18 -8
- package/dist/index.cjs +2148 -847
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -223,6 +223,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
223
223
|
}, z.core.$loose>>;
|
|
224
224
|
kilo: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
225
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>>;
|
|
226
229
|
}, z.core.$loose>>;
|
|
227
230
|
deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
228
231
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -223,6 +223,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
223
223
|
}, z.core.$loose>>;
|
|
224
224
|
kilo: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
225
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>>;
|
|
226
229
|
}, z.core.$loose>>;
|
|
227
230
|
deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
228
231
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
package/dist/index.js
CHANGED