@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@csark0812/skeleton",
3
- "version": "1.0.0",
3
+ "version": "1.1.1",
4
4
  "description": "SSOT audit CLI for agent harness repos",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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 },
@@ -12,3 +12,9 @@ scan:
12
12
  retiredSkills: []
13
13
 
14
14
  daysUntilStale: 180
15
+
16
+ # Optional: basenames under .skeleton/customize/ appended on every skill inject
17
+ # customize:
18
+ # alwaysInclude:
19
+ # - shared-agent-references.md
20
+