agent-skillboard 0.2.4 → 0.2.5
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/CHANGELOG.md +7 -0
- package/docs/versioning.md +10 -5
- package/package.json +1 -1
- package/src/advisor/apply-action.mjs +2 -1
- package/src/advisor/schema.mjs +1 -0
package/CHANGELOG.md
CHANGED
package/docs/versioning.md
CHANGED
|
@@ -8,7 +8,7 @@ source profiles, and the generated lockfile.
|
|
|
8
8
|
|
|
9
9
|
## Status
|
|
10
10
|
|
|
11
|
-
Current package version: `0.2.
|
|
11
|
+
Current package version: `0.2.5`
|
|
12
12
|
|
|
13
13
|
Current config schema version:
|
|
14
14
|
|
|
@@ -59,7 +59,7 @@ must call them out clearly.
|
|
|
59
59
|
Suggested tags:
|
|
60
60
|
|
|
61
61
|
- `v0.1.0-alpha`: first public GitHub alpha.
|
|
62
|
-
- `v0.2.
|
|
62
|
+
- `v0.2.5`: one-time runtime source review before manual activation, ask-after
|
|
63
63
|
skill routing, purge uninstall, README benefit-first positioning,
|
|
64
64
|
source inventory refresh, doctor/status, source pin refresh,
|
|
65
65
|
installer/config detection, resilient detector warnings, and richer dry-run
|
|
@@ -194,8 +194,8 @@ Before tagging a public release:
|
|
|
194
194
|
provenance with GitHub Actions OIDC, so keep `permissions.id-token: write`,
|
|
195
195
|
the npm registry URL in `setup-node`, and
|
|
196
196
|
`NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}` on the publish step.
|
|
197
|
-
- Push a version tag that exactly matches `package.json`, for example `v0.2.
|
|
198
|
-
for package version `0.2.
|
|
197
|
+
- Push a version tag that exactly matches `package.json`, for example `v0.2.5`
|
|
198
|
+
for package version `0.2.5`.
|
|
199
199
|
- Let `.github/workflows/publish.yml` publish from the tag. The workflow runs
|
|
200
200
|
the full check suite, validates that the tag matches the package version, and
|
|
201
201
|
skips `npm publish` only when that exact version already exists on npm.
|
|
@@ -229,6 +229,11 @@ completion notes:
|
|
|
229
229
|
- update README quick-start to verify the installed version before running
|
|
230
230
|
policy commands.
|
|
231
231
|
|
|
232
|
+
## 0.2.5 Completion Notes
|
|
233
|
+
|
|
234
|
+
- align reset-cleanup action-card preview and apply internals with the full
|
|
235
|
+
`.skillboard/` purge semantics used by `skillboard uninstall --purge`.
|
|
236
|
+
|
|
232
237
|
## 0.2.4 Completion Notes
|
|
233
238
|
|
|
234
239
|
- broaden `skillboard uninstall --purge` from reports/hooks cleanup to removal
|
|
@@ -243,7 +248,7 @@ completion notes:
|
|
|
243
248
|
- document the lifecycle split between conservative bridge cleanup and full
|
|
244
249
|
SkillBoard policy-footprint removal;
|
|
245
250
|
- show purge in cleanup action cards so users do not need to remember the
|
|
246
|
-
|
|
251
|
+
older `--reset-config --remove-reports --remove-hooks` sequence.
|
|
247
252
|
|
|
248
253
|
## 0.2.2 Completion Notes
|
|
249
254
|
|
package/package.json
CHANGED