rulesync 7.12.2 → 7.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 +5 -5
- package/dist/{chunk-VAGOPUDS.js → chunk-UWNVSK5V.js} +763 -341
- package/dist/cli/index.cjs +1343 -622
- package/dist/cli/index.js +380 -77
- package/dist/index.cjs +1011 -609
- 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
|
@@ -166,6 +166,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
166
166
|
claudecode: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
167
167
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
168
168
|
model: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
169
|
+
"disable-model-invocation": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
169
170
|
}, z.core.$loose>>;
|
|
170
171
|
codexcli: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
171
172
|
"short-description": z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -186,6 +187,7 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
186
187
|
claudecode?: {
|
|
187
188
|
"allowed-tools"?: string[];
|
|
188
189
|
model?: string;
|
|
190
|
+
"disable-model-invocation"?: boolean;
|
|
189
191
|
};
|
|
190
192
|
codexcli?: {
|
|
191
193
|
"short-description"?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ declare const RulesyncSkillFrontmatterSchemaInternal: z.ZodMiniObject<{
|
|
|
166
166
|
claudecode: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
167
167
|
"allowed-tools": z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
168
168
|
model: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
169
|
+
"disable-model-invocation": z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
169
170
|
}, z.core.$loose>>;
|
|
170
171
|
codexcli: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
171
172
|
"short-description": z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -186,6 +187,7 @@ type RulesyncSkillFrontmatterInput = {
|
|
|
186
187
|
claudecode?: {
|
|
187
188
|
"allowed-tools"?: string[];
|
|
188
189
|
model?: string;
|
|
190
|
+
"disable-model-invocation"?: boolean;
|
|
189
191
|
};
|
|
190
192
|
codexcli?: {
|
|
191
193
|
"short-description"?: string;
|
package/dist/index.js
CHANGED