agent-skillboard 0.2.4 → 0.2.6

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,21 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.2.6 — 2026-07-03
6
+
7
+ ### Fixed
8
+
9
+ - Reviewed runtime/plugin skills with `status: blocked` no longer receive
10
+ activation action cards or apply through `apply-action`; only reviewed
11
+ quarantined blocked-invocation skills can be activated as manual-only.
12
+
13
+ ## 0.2.5 — 2026-07-03
14
+
15
+ ### Fixed
16
+
17
+ - Reset-cleanup action cards now use the same full `.skillboard/` purge
18
+ semantics as `skillboard uninstall --purge` for both preview and apply.
19
+
5
20
  ## 0.2.4 — 2026-07-03
6
21
 
7
22
  ### 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.6`
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.6`: 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.6`
198
+ for package version `0.2.6`.
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,16 @@ completion notes:
229
229
  - update README quick-start to verify the installed version before running
230
230
  policy commands.
231
231
 
232
+ ## 0.2.6 Completion Notes
233
+
234
+ - keep reviewed `status: blocked` runtime/plugin skills non-activatable while
235
+ preserving the reviewed quarantined runtime/plugin manual activation path.
236
+
237
+ ## 0.2.5 Completion Notes
238
+
239
+ - align reset-cleanup action-card preview and apply internals with the full
240
+ `.skillboard/` purge semantics used by `skillboard uninstall --purge`.
241
+
232
242
  ## 0.2.4 Completion Notes
233
243
 
234
244
  - broaden `skillboard uninstall --purge` from reports/hooks cleanup to removal
@@ -243,7 +253,7 @@ completion notes:
243
253
  - document the lifecycle split between conservative bridge cleanup and full
244
254
  SkillBoard policy-footprint removal;
245
255
  - show purge in cleanup action cards so users do not need to remember the
246
- equivalent `--reset-config --remove-reports --remove-hooks` sequence.
256
+ older `--reset-config --remove-reports --remove-hooks` sequence.
247
257
 
248
258
  ## 0.2.2 Completion Notes
249
259
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-skillboard",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "Let AI agents pick and use allowed skills in each workflow.",
5
5
  "keywords": [
6
6
  "ai-agent",
@@ -12,7 +12,7 @@ import { buildSetupGuidanceActions } from "./setup-actions.mjs";
12
12
  import { trustRecommendationAction } from "./trust-policy.mjs";
13
13
 
14
14
  const WRITABLE_MODES = new Set(["manual-only", "router-only", "workflow-auto"]);
15
- const NON_ACTIVATABLE_STATUSES = new Set(["deprecated", "archived", "removed"]);
15
+ const NON_ACTIVATABLE_STATUSES = new Set(["blocked", "deprecated", "archived", "removed"]);
16
16
 
17
17
  export function buildInitActions(paths) {
18
18
  return [makeAction({
@@ -246,7 +246,8 @@ function activationMode(skill) {
246
246
  if (
247
247
  skill.advanced.owner_install_unit !== undefined
248
248
  && skill.advanced.owner_install_unit !== null
249
- && (skill.advanced.status === "quarantined" || skill.advanced.invocation === "blocked")
249
+ && skill.advanced.status === "quarantined"
250
+ && skill.advanced.invocation === "blocked"
250
251
  ) {
251
252
  return "manual-only";
252
253
  }
@@ -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 {