rulesync 7.25.0 → 7.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 +2 -2
- package/dist/{chunk-XGT6BGPR.js → chunk-AZJJUHWM.js} +1631 -968
- package/dist/cli/index.cjs +1949 -1264
- package/dist/cli/index.js +36 -14
- package/dist/index.cjs +1648 -985
- 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
|
@@ -184,6 +184,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
184
184
|
opencode: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
185
185
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
186
186
|
}, z.core.$loose>>;
|
|
187
|
+
kilo: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
188
|
+
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
189
|
+
}, z.core.$loose>>;
|
|
187
190
|
deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
188
191
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
189
192
|
}, z.core.$loose>>;
|
|
@@ -208,6 +211,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
208
211
|
opencode?: {
|
|
209
212
|
"allowed-tools"?: string[];
|
|
210
213
|
};
|
|
214
|
+
kilo?: {
|
|
215
|
+
"allowed-tools"?: string[];
|
|
216
|
+
};
|
|
211
217
|
deepagents?: {
|
|
212
218
|
"allowed-tools"?: string[];
|
|
213
219
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -184,6 +184,9 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
184
184
|
opencode: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
185
185
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
186
186
|
}, z.core.$loose>>;
|
|
187
|
+
kilo: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
188
|
+
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
189
|
+
}, z.core.$loose>>;
|
|
187
190
|
deepagents: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
188
191
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
189
192
|
}, z.core.$loose>>;
|
|
@@ -208,6 +211,9 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
208
211
|
opencode?: {
|
|
209
212
|
"allowed-tools"?: string[];
|
|
210
213
|
};
|
|
214
|
+
kilo?: {
|
|
215
|
+
"allowed-tools"?: string[];
|
|
216
|
+
};
|
|
211
217
|
deepagents?: {
|
|
212
218
|
"allowed-tools"?: string[];
|
|
213
219
|
};
|
package/dist/index.js
CHANGED