@ichintansoni/skills-master 0.1.16 → 0.1.17
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/bin.js +2 -2
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { Command } from "commander";
|
|
5
5
|
|
|
6
6
|
// package.json
|
|
7
|
-
var version = "0.1.
|
|
7
|
+
var version = "0.1.17";
|
|
8
8
|
|
|
9
9
|
// src/schema/projectConfig.ts
|
|
10
10
|
import { z } from "zod";
|
|
@@ -1781,7 +1781,7 @@ function lintSkills(skillsRoot) {
|
|
|
1781
1781
|
const end = fm.description.indexOf(">", tagAt);
|
|
1782
1782
|
const snippet = fm.description.slice(tagAt, end === -1 ? tagAt + 20 : end + 1);
|
|
1783
1783
|
push(
|
|
1784
|
-
"
|
|
1784
|
+
"error",
|
|
1785
1785
|
`description contains XML-tag-shaped text "${snippet}" \u2014 Claude's skill validation rejects tags; reword it (e.g. "a VerificationResult of Transaction")`
|
|
1786
1786
|
);
|
|
1787
1787
|
}
|
package/package.json
CHANGED