@csark0812/skeleton 1.0.0 → 1.1.1
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 +134 -3
- package/dist/cli.js +544 -81
- package/dist/hooks/customize-on-skill-read.js +6385 -13
- package/package.json +1 -1
- package/schemas/config.schema.json +16 -0
- package/templates/skeleton-init/config.yaml +6 -0
package/package.json
CHANGED
|
@@ -34,6 +34,22 @@
|
|
|
34
34
|
"type": "integer",
|
|
35
35
|
"minimum": 1
|
|
36
36
|
},
|
|
37
|
+
"customize": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"additionalProperties": false,
|
|
40
|
+
"description": "Customize inject options for IDE hooks and `skeleton customize resolve`",
|
|
41
|
+
"properties": {
|
|
42
|
+
"alwaysInclude": {
|
|
43
|
+
"type": "array",
|
|
44
|
+
"items": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"minLength": 1,
|
|
47
|
+
"pattern": "^[a-zA-Z0-9._-]+\\.md$"
|
|
48
|
+
},
|
|
49
|
+
"description": "Basenames under .skeleton/customize/ appended whenever a skill customize injects (even if the slug file is missing or empty)"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
37
53
|
"plugins": {
|
|
38
54
|
"type": "array",
|
|
39
55
|
"items": { "type": "string", "minLength": 1 },
|