@csark0812/skeleton 4.0.2 → 5.0.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.
- package/README.md +5 -9
- package/dist/audit/config/types.d.ts +0 -5
- package/dist/cli.js +111 -574
- package/package.json +2 -2
- package/schemas/config.schema.json +1 -17
- package/templates/skeleton-init/config.yaml +0 -5
- package/templates/skeleton-init/skeleton.toml +1 -5
- package/dist/hooks/customize-on-skill-read.js +0 -14813
- package/templates/skeleton-init/claude-settings.fragment.json +0 -24
- package/templates/skeleton-init/codex-hooks.fragment.json +0 -15
- package/templates/skeleton-init/cursor-hooks.fragment.json +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@csark0812/skeleton",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "SSOT audit CLI for agent harness repos",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"packageManager": "bun@1.2.21",
|
|
36
36
|
"scripts": {
|
|
37
|
-
"build": "bun build src/cli.ts --target=node --outfile=dist/cli.js && bun build src/
|
|
37
|
+
"build": "bun build src/cli.ts --target=node --outfile=dist/cli.js && bun build src/plugin-types.ts --target=node --format=esm --outfile=dist/plugin-types.js --packages=external && bun build src/result-types.ts --target=node --format=esm --outfile=dist/result-types.js --packages=external && tsc -p tsconfig.types.json",
|
|
38
38
|
"test": "bun test",
|
|
39
39
|
"test:audit": "bun test src/audit/__tests__",
|
|
40
40
|
"test:cli": "bun test src/__tests__/cli",
|
|
@@ -88,26 +88,10 @@
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
|
-
"customize": {
|
|
92
|
-
"type": "object",
|
|
93
|
-
"additionalProperties": false,
|
|
94
|
-
"description": "Customize inject options for IDE hooks and `skeleton customize resolve`",
|
|
95
|
-
"properties": {
|
|
96
|
-
"alwaysInclude": {
|
|
97
|
-
"type": "array",
|
|
98
|
-
"items": {
|
|
99
|
-
"type": "string",
|
|
100
|
-
"minLength": 1,
|
|
101
|
-
"pattern": "^[a-zA-Z0-9._-]+\\.md$"
|
|
102
|
-
},
|
|
103
|
-
"description": "Basenames under .skeleton/customize/ appended whenever a skill customize injects (even if the slug file is missing or empty)"
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
91
|
"skillOwnership": {
|
|
108
92
|
"type": "object",
|
|
109
93
|
"additionalProperties": false,
|
|
110
|
-
"description": "Provenance-aware skill body linting: foreign (synced) skills are skipped; owned local skills
|
|
94
|
+
"description": "Provenance-aware skill body linting: foreign (synced) skills are skipped; owned local skills stay audited",
|
|
111
95
|
"properties": {
|
|
112
96
|
"lockfile": {
|
|
113
97
|
"type": "string",
|
|
@@ -14,11 +14,6 @@ deny:
|
|
|
14
14
|
|
|
15
15
|
daysUntilStale: 365
|
|
16
16
|
|
|
17
|
-
# Optional: basenames under .skeleton/customize/ appended on every skill inject
|
|
18
|
-
# customize:
|
|
19
|
-
# alwaysInclude:
|
|
20
|
-
# - shared-agent-references.md
|
|
21
|
-
|
|
22
17
|
# Optional: skill body ownership (skills-lock.json github entries are foreign by default)
|
|
23
18
|
# skillOwnership:
|
|
24
19
|
# lockfile: skills-lock.json
|
|
@@ -22,11 +22,7 @@ mode = "hash"
|
|
|
22
22
|
# Defaults apply when this section is omitted. Empty include disables the gate.
|
|
23
23
|
# [reviewCoverage]
|
|
24
24
|
# include = ["**/*.{ts,tsx,js,jsx,mjs,cjs,py}", "package.json", "project.json"]
|
|
25
|
-
# exclude = ["**/__tests__/**", "**/*.test.*", "**/*.spec.*", "**/fixtures/**", "templates/**"]
|
|
26
|
-
|
|
27
|
-
# Optional: basenames under .skeleton/customize/ appended on every skill inject
|
|
28
|
-
# [customize]
|
|
29
|
-
# alwaysInclude = ["shared-agent-references.md"]
|
|
25
|
+
# exclude = ["**/__tests__/**", "**/*.test.*", "**/*.spec.*", "**/fixtures/**", "templates/**", "**/node_modules/**", "**/dist/**"]
|
|
30
26
|
|
|
31
27
|
# Optional: near-dupe / SSOT-summary tunables
|
|
32
28
|
# [docsLint]
|