rulesync 7.12.2 → 7.13.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/dist/{chunk-VAGOPUDS.js → chunk-JGRHJWG5.js} +11 -3
- package/dist/cli/index.cjs +12 -4
- package/dist/cli/index.js +2 -2
- package/dist/index.cjs +11 -3
- 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
|
@@ -8003,7 +8003,8 @@ var RulesyncSkillFrontmatterSchemaInternal = z24.looseObject({
|
|
|
8003
8003
|
claudecode: z24.optional(
|
|
8004
8004
|
z24.looseObject({
|
|
8005
8005
|
"allowed-tools": z24.optional(z24.array(z24.string())),
|
|
8006
|
-
model: z24.optional(z24.string())
|
|
8006
|
+
model: z24.optional(z24.string()),
|
|
8007
|
+
"disable-model-invocation": z24.optional(z24.boolean())
|
|
8007
8008
|
})
|
|
8008
8009
|
),
|
|
8009
8010
|
codexcli: z24.optional(
|
|
@@ -8440,7 +8441,8 @@ var ClaudecodeSkillFrontmatterSchema = z27.looseObject({
|
|
|
8440
8441
|
name: z27.string(),
|
|
8441
8442
|
description: z27.string(),
|
|
8442
8443
|
"allowed-tools": z27.optional(z27.array(z27.string())),
|
|
8443
|
-
model: z27.optional(z27.string())
|
|
8444
|
+
model: z27.optional(z27.string()),
|
|
8445
|
+
"disable-model-invocation": z27.optional(z27.boolean())
|
|
8444
8446
|
});
|
|
8445
8447
|
var ClaudecodeSkill = class _ClaudecodeSkill extends ToolSkill {
|
|
8446
8448
|
constructor({
|
|
@@ -8508,7 +8510,10 @@ var ClaudecodeSkill = class _ClaudecodeSkill extends ToolSkill {
|
|
|
8508
8510
|
const frontmatter = this.getFrontmatter();
|
|
8509
8511
|
const claudecodeSection = {
|
|
8510
8512
|
...frontmatter["allowed-tools"] && { "allowed-tools": frontmatter["allowed-tools"] },
|
|
8511
|
-
...frontmatter.model && { model: frontmatter.model }
|
|
8513
|
+
...frontmatter.model && { model: frontmatter.model },
|
|
8514
|
+
...frontmatter["disable-model-invocation"] !== void 0 && {
|
|
8515
|
+
"disable-model-invocation": frontmatter["disable-model-invocation"]
|
|
8516
|
+
}
|
|
8512
8517
|
};
|
|
8513
8518
|
const rulesyncFrontmatter = {
|
|
8514
8519
|
name: frontmatter.name,
|
|
@@ -8541,6 +8546,9 @@ var ClaudecodeSkill = class _ClaudecodeSkill extends ToolSkill {
|
|
|
8541
8546
|
},
|
|
8542
8547
|
...rulesyncFrontmatter.claudecode?.model && {
|
|
8543
8548
|
model: rulesyncFrontmatter.claudecode.model
|
|
8549
|
+
},
|
|
8550
|
+
...rulesyncFrontmatter.claudecode?.["disable-model-invocation"] !== void 0 && {
|
|
8551
|
+
"disable-model-invocation": rulesyncFrontmatter.claudecode["disable-model-invocation"]
|
|
8544
8552
|
}
|
|
8545
8553
|
};
|
|
8546
8554
|
const settablePaths = _ClaudecodeSkill.getSettablePaths({ global });
|
package/dist/cli/index.cjs
CHANGED
|
@@ -7738,7 +7738,8 @@ var RulesyncSkillFrontmatterSchemaInternal = import_mini23.z.looseObject({
|
|
|
7738
7738
|
claudecode: import_mini23.z.optional(
|
|
7739
7739
|
import_mini23.z.looseObject({
|
|
7740
7740
|
"allowed-tools": import_mini23.z.optional(import_mini23.z.array(import_mini23.z.string())),
|
|
7741
|
-
model: import_mini23.z.optional(import_mini23.z.string())
|
|
7741
|
+
model: import_mini23.z.optional(import_mini23.z.string()),
|
|
7742
|
+
"disable-model-invocation": import_mini23.z.optional(import_mini23.z.boolean())
|
|
7742
7743
|
})
|
|
7743
7744
|
),
|
|
7744
7745
|
codexcli: import_mini23.z.optional(
|
|
@@ -8175,7 +8176,8 @@ var ClaudecodeSkillFrontmatterSchema = import_mini26.z.looseObject({
|
|
|
8175
8176
|
name: import_mini26.z.string(),
|
|
8176
8177
|
description: import_mini26.z.string(),
|
|
8177
8178
|
"allowed-tools": import_mini26.z.optional(import_mini26.z.array(import_mini26.z.string())),
|
|
8178
|
-
model: import_mini26.z.optional(import_mini26.z.string())
|
|
8179
|
+
model: import_mini26.z.optional(import_mini26.z.string()),
|
|
8180
|
+
"disable-model-invocation": import_mini26.z.optional(import_mini26.z.boolean())
|
|
8179
8181
|
});
|
|
8180
8182
|
var ClaudecodeSkill = class _ClaudecodeSkill extends ToolSkill {
|
|
8181
8183
|
constructor({
|
|
@@ -8243,7 +8245,10 @@ var ClaudecodeSkill = class _ClaudecodeSkill extends ToolSkill {
|
|
|
8243
8245
|
const frontmatter = this.getFrontmatter();
|
|
8244
8246
|
const claudecodeSection = {
|
|
8245
8247
|
...frontmatter["allowed-tools"] && { "allowed-tools": frontmatter["allowed-tools"] },
|
|
8246
|
-
...frontmatter.model && { model: frontmatter.model }
|
|
8248
|
+
...frontmatter.model && { model: frontmatter.model },
|
|
8249
|
+
...frontmatter["disable-model-invocation"] !== void 0 && {
|
|
8250
|
+
"disable-model-invocation": frontmatter["disable-model-invocation"]
|
|
8251
|
+
}
|
|
8247
8252
|
};
|
|
8248
8253
|
const rulesyncFrontmatter = {
|
|
8249
8254
|
name: frontmatter.name,
|
|
@@ -8276,6 +8281,9 @@ var ClaudecodeSkill = class _ClaudecodeSkill extends ToolSkill {
|
|
|
8276
8281
|
},
|
|
8277
8282
|
...rulesyncFrontmatter.claudecode?.model && {
|
|
8278
8283
|
model: rulesyncFrontmatter.claudecode.model
|
|
8284
|
+
},
|
|
8285
|
+
...rulesyncFrontmatter.claudecode?.["disable-model-invocation"] !== void 0 && {
|
|
8286
|
+
"disable-model-invocation": rulesyncFrontmatter.claudecode["disable-model-invocation"]
|
|
8279
8287
|
}
|
|
8280
8288
|
};
|
|
8281
8289
|
const settablePaths = _ClaudecodeSkill.getSettablePaths({ global });
|
|
@@ -20199,7 +20207,7 @@ async function updateCommand(currentVersion, options) {
|
|
|
20199
20207
|
}
|
|
20200
20208
|
|
|
20201
20209
|
// src/cli/index.ts
|
|
20202
|
-
var getVersion = () => "7.
|
|
20210
|
+
var getVersion = () => "7.13.0";
|
|
20203
20211
|
var main = async () => {
|
|
20204
20212
|
const program = new import_commander.Command();
|
|
20205
20213
|
const version = getVersion();
|
package/dist/cli/index.js
CHANGED
|
@@ -60,7 +60,7 @@ import {
|
|
|
60
60
|
removeTempDirectory,
|
|
61
61
|
stringifyFrontmatter,
|
|
62
62
|
writeFileContent
|
|
63
|
-
} from "../chunk-
|
|
63
|
+
} from "../chunk-JGRHJWG5.js";
|
|
64
64
|
|
|
65
65
|
// src/cli/index.ts
|
|
66
66
|
import { Command } from "commander";
|
|
@@ -3807,7 +3807,7 @@ async function updateCommand(currentVersion, options) {
|
|
|
3807
3807
|
}
|
|
3808
3808
|
|
|
3809
3809
|
// src/cli/index.ts
|
|
3810
|
-
var getVersion = () => "7.
|
|
3810
|
+
var getVersion = () => "7.13.0";
|
|
3811
3811
|
var main = async () => {
|
|
3812
3812
|
const program = new Command();
|
|
3813
3813
|
const version = getVersion();
|
package/dist/index.cjs
CHANGED
|
@@ -8031,7 +8031,8 @@ var RulesyncSkillFrontmatterSchemaInternal = import_mini24.z.looseObject({
|
|
|
8031
8031
|
claudecode: import_mini24.z.optional(
|
|
8032
8032
|
import_mini24.z.looseObject({
|
|
8033
8033
|
"allowed-tools": import_mini24.z.optional(import_mini24.z.array(import_mini24.z.string())),
|
|
8034
|
-
model: import_mini24.z.optional(import_mini24.z.string())
|
|
8034
|
+
model: import_mini24.z.optional(import_mini24.z.string()),
|
|
8035
|
+
"disable-model-invocation": import_mini24.z.optional(import_mini24.z.boolean())
|
|
8035
8036
|
})
|
|
8036
8037
|
),
|
|
8037
8038
|
codexcli: import_mini24.z.optional(
|
|
@@ -8468,7 +8469,8 @@ var ClaudecodeSkillFrontmatterSchema = import_mini27.z.looseObject({
|
|
|
8468
8469
|
name: import_mini27.z.string(),
|
|
8469
8470
|
description: import_mini27.z.string(),
|
|
8470
8471
|
"allowed-tools": import_mini27.z.optional(import_mini27.z.array(import_mini27.z.string())),
|
|
8471
|
-
model: import_mini27.z.optional(import_mini27.z.string())
|
|
8472
|
+
model: import_mini27.z.optional(import_mini27.z.string()),
|
|
8473
|
+
"disable-model-invocation": import_mini27.z.optional(import_mini27.z.boolean())
|
|
8472
8474
|
});
|
|
8473
8475
|
var ClaudecodeSkill = class _ClaudecodeSkill extends ToolSkill {
|
|
8474
8476
|
constructor({
|
|
@@ -8536,7 +8538,10 @@ var ClaudecodeSkill = class _ClaudecodeSkill extends ToolSkill {
|
|
|
8536
8538
|
const frontmatter = this.getFrontmatter();
|
|
8537
8539
|
const claudecodeSection = {
|
|
8538
8540
|
...frontmatter["allowed-tools"] && { "allowed-tools": frontmatter["allowed-tools"] },
|
|
8539
|
-
...frontmatter.model && { model: frontmatter.model }
|
|
8541
|
+
...frontmatter.model && { model: frontmatter.model },
|
|
8542
|
+
...frontmatter["disable-model-invocation"] !== void 0 && {
|
|
8543
|
+
"disable-model-invocation": frontmatter["disable-model-invocation"]
|
|
8544
|
+
}
|
|
8540
8545
|
};
|
|
8541
8546
|
const rulesyncFrontmatter = {
|
|
8542
8547
|
name: frontmatter.name,
|
|
@@ -8569,6 +8574,9 @@ var ClaudecodeSkill = class _ClaudecodeSkill extends ToolSkill {
|
|
|
8569
8574
|
},
|
|
8570
8575
|
...rulesyncFrontmatter.claudecode?.model && {
|
|
8571
8576
|
model: rulesyncFrontmatter.claudecode.model
|
|
8577
|
+
},
|
|
8578
|
+
...rulesyncFrontmatter.claudecode?.["disable-model-invocation"] !== void 0 && {
|
|
8579
|
+
"disable-model-invocation": rulesyncFrontmatter.claudecode["disable-model-invocation"]
|
|
8572
8580
|
}
|
|
8573
8581
|
};
|
|
8574
8582
|
const settablePaths = _ClaudecodeSkill.getSettablePaths({ global });
|
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