@kensio/skill-template 1.9.0 → 1.10.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.
|
@@ -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.
|
|
4
|
+
"version": "1.10.0",
|
|
5
5
|
"description": "A copy-and-edit starting point for a new Claude Code skill.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Kensio Software",
|
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ plugins/<skill-name>/
|
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
Anything under `skills/` ships, because that is what `package.json` lists in `files`. A script the
|
|
28
|
-
skill runs belongs there,
|
|
28
|
+
skill runs belongs there too, and never at the plugin root.
|
|
29
29
|
|
|
30
30
|
**A plugin folder must be self-contained.** Never reference files outside it with `../`, because
|
|
31
31
|
plugins are copied, zipped, and installed standalone, so those paths will not resolve.
|
|
@@ -71,9 +71,9 @@ description: <what it does, then when to use it. Include the words and phrases a
|
|
|
71
71
|
|
|
72
72
|
## Writing the body
|
|
73
73
|
|
|
74
|
-
Keep `SKILL.md` short and imperative. It is instructions for Claude
|
|
75
|
-
Push detail into sibling files (`reference/`, `examples/`) and link to them.
|
|
76
|
-
load and the details are read only when needed.
|
|
74
|
+
Keep `SKILL.md` short and imperative. It is instructions for Claude. Documentation for a human
|
|
75
|
+
belongs in the README. Push detail into sibling files (`reference/`, `examples/`) and link to them.
|
|
76
|
+
The body stays cheap to load and the details are read only when needed.
|
|
77
77
|
|
|
78
78
|
## Prose
|
|
79
79
|
|