agent-skillboard 0.2.5 → 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,14 @@
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
+
5
13
  ## 0.2.5 — 2026-07-03
6
14
 
7
15
  ### Fixed
@@ -8,7 +8,7 @@ source profiles, and the generated lockfile.
8
8
 
9
9
  ## Status
10
10
 
11
- Current package version: `0.2.5`
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.5`: 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.5`
198
- for package version `0.2.5`.
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,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.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
+
232
237
  ## 0.2.5 Completion Notes
233
238
 
234
239
  - align reset-cleanup action-card preview and apply internals with the full
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-skillboard",
3
- "version": "0.2.5",
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
  }