@kensio/skill-template 1.6.1 → 1.6.2
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
|
|
3
3
|
"name": "skill-template",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.2",
|
|
5
5
|
"description": "A copy-and-edit starting point for writing a new Claude Code skill, covering SKILL.md frontmatter, description wording, and progressive disclosure.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Kensio Software",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kensio/skill-template",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "A copy-and-edit starting point for writing a new Claude Code skill, covering SKILL.md frontmatter, description wording, and progressive disclosure.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -45,9 +45,13 @@ plugins are copied, zipped, and installed standalone, so those paths will not re
|
|
|
45
45
|
7. Run `pnpm check`. This validates the manifests, asserts the lockstep version, and runs the prose
|
|
46
46
|
gate described below.
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
`scripts/set-version.mjs` and `scripts/publish-npm.mjs` both read the `plugins/` directory, so a new
|
|
49
|
+
folder is versioned and included in the next release without being listed anywhere.
|
|
50
|
+
|
|
51
|
+
**A brand new package still needs one manual first publish.** npm trusted publishing cannot create a
|
|
52
|
+
package that does not exist, because the trusted publisher is configured against a package already
|
|
53
|
+
on the registry. The release reports the commands and carries on. See "npm publishing" in the
|
|
54
|
+
repository README.
|
|
51
55
|
|
|
52
56
|
## SKILL.md frontmatter
|
|
53
57
|
|