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 CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.2.5 — 2026-07-03
6
+
7
+ ### Fixed
8
+
9
+ - Reset-cleanup action cards now use the same full `.skillboard/` purge
10
+ semantics as `skillboard uninstall --purge` for both preview and apply.
11
+
5
12
  ## 0.2.4 — 2026-07-03
6
13
 
7
14
  ### Changed
@@ -8,7 +8,7 @@ source profiles, and the generated lockfile.
8
8
 
9
9
  ## Status
10
10
 
11
- Current package version: `0.2.4`
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.4`: one-time runtime source review before manual activation, ask-after
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.4`
198
- for package version `0.2.4`.
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
- equivalent `--reset-config --remove-reports --remove-hooks` sequence.
251
+ older `--reset-config --remove-reports --remove-hooks` sequence.
247
252
 
248
253
  ## 0.2.2 Completion Notes
249
254
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-skillboard",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Let AI agents pick and use allowed skills in each workflow.",
5
5
  "keywords": [
6
6
  "ai-agent",
@@ -165,7 +165,8 @@ async function dispatchAction(action, options) {
165
165
  dryRun: false,
166
166
  resetConfig: true,
167
167
  removeReports: true,
168
- removeHooks: true
168
+ removeHooks: true,
169
+ removeProjectState: true
169
170
  });
170
171
  }
171
172
 
@@ -56,6 +56,7 @@ export async function buildCleanup(root) {
56
56
  resetConfig: true,
57
57
  removeReports: true,
58
58
  removeHooks: true,
59
+ removeProjectState: true,
59
60
  removeEmptyDirs: true
60
61
  });
61
62
  return {