rulesync 8.13.0 → 8.14.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-RLRAG4LZ.js → chunk-C7PHKGD2.js} +1732 -1009
- package/dist/cli/index.cjs +2080 -1342
- package/dist/cli/index.js +17 -2
- package/dist/index.cjs +1765 -1042
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -182,6 +182,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
182
182
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
183
183
|
model: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
184
184
|
"disable-model-invocation": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
185
|
+
"scheduled-task": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
185
186
|
}, z.core.$loose>>;
|
|
186
187
|
codexcli: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
187
188
|
"short-description": z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -212,6 +213,7 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
212
213
|
"allowed-tools"?: string[];
|
|
213
214
|
model?: string;
|
|
214
215
|
"disable-model-invocation"?: boolean;
|
|
216
|
+
"scheduled-task"?: boolean;
|
|
215
217
|
};
|
|
216
218
|
codexcli?: {
|
|
217
219
|
"short-description"?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -182,6 +182,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
182
182
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
183
183
|
model: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
184
184
|
"disable-model-invocation": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
185
|
+
"scheduled-task": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
185
186
|
}, z.core.$loose>>;
|
|
186
187
|
codexcli: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
187
188
|
"short-description": z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -212,6 +213,7 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
212
213
|
"allowed-tools"?: string[];
|
|
213
214
|
model?: string;
|
|
214
215
|
"disable-model-invocation"?: boolean;
|
|
216
|
+
"scheduled-task"?: boolean;
|
|
215
217
|
};
|
|
216
218
|
codexcli?: {
|
|
217
219
|
"short-description"?: string;
|
package/dist/index.js
CHANGED