@csark0812/skeleton 1.1.5 → 1.5.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 +5 -1
- package/dist/cli.js +2070 -909
- package/dist/hooks/customize-on-skill-read.js +27 -2
- package/dist/plugin-types.d.ts +117 -0
- package/dist/plugin-types.js +41 -0
- package/package.json +11 -3
- package/schemas/config.schema.json +7 -2
- package/schemas/policy-file.schema.json +41 -0
- package/templates/skeleton-init/config.yaml +4 -0
package/README.md
CHANGED
|
@@ -47,6 +47,7 @@ See [install](docs/developer/install.md) for flags and options.
|
|
|
47
47
|
- **Banned paths** — session artifacts and other files that must not exist
|
|
48
48
|
- **Coverage gaps** — markdown outside the scan perimeter (warn-only)
|
|
49
49
|
- **Doc meta + stale dates** — owner and `last-reviewed` on index and registry-listed files
|
|
50
|
+
- **Prose policy** (optional plugins) — YAML pattern rules; idle with no plugins
|
|
50
51
|
- **Shell / JSON syntax** — lightweight checks on changed `.sh` and `.json` files
|
|
51
52
|
|
|
52
53
|
Code validation (TypeScript, Python, Nx, pytest) stays in your repo. Skeleton handles SSOT-adjacent paths only.
|
|
@@ -57,6 +58,7 @@ Code validation (TypeScript, Python, Nx, pytest) stays in your repo. Skeleton ha
|
|
|
57
58
|
.skeleton/
|
|
58
59
|
├── config.yaml # scan perimeter (required)
|
|
59
60
|
├── registry.md # topic → canonical file (required)
|
|
61
|
+
├── plugins/ # optional consumer audit plugins (.ts + built .mjs)
|
|
60
62
|
└── customize/ # project-specific skill overrides (optional)
|
|
61
63
|
└── code-review.md
|
|
62
64
|
```
|
|
@@ -80,7 +82,8 @@ Synced toolbox skills stay pristine. Project overrides live in `.skeleton/custom
|
|
|
80
82
|
```bash
|
|
81
83
|
skeleton init [--skills] [--force-hooks]
|
|
82
84
|
skeleton register <path> [--topic=…]
|
|
83
|
-
skeleton audit docs|skills|self [--strict] [--paths=a,b]
|
|
85
|
+
skeleton audit docs|skills|self [--strict] [--paths=a,b] [--fix[=doc-meta|anchors]] [--dry-run]
|
|
86
|
+
skeleton build-plugin [path] [--check]
|
|
84
87
|
skeleton validate changed [--staged | --base <ref>] [paths…]
|
|
85
88
|
skeleton references sync|check
|
|
86
89
|
skeleton customize resolve <slug>
|
|
@@ -129,6 +132,7 @@ One command for humans: `npx skeleton init --skills`.
|
|
|
129
132
|
- [Doc system](docs/developer/doc-system.md)
|
|
130
133
|
- [Validation](docs/developer/validation.md)
|
|
131
134
|
- [Audit rules](docs/developer/audit.md)
|
|
135
|
+
- [Plugins](docs/developer/plugins.md)
|
|
132
136
|
- [Customize](docs/developer/customize.md)
|
|
133
137
|
- [Authoring conventions](docs/authoring.md)
|
|
134
138
|
|