@blamejs/exceptd-skills 0.14.3 → 0.14.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
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.14.5 — 2026-05-27
4
+
5
+ `reattest` no longer reports a false "drifted" on an unchanged session. It now replays the original recorded submission instead of a hardcoded empty one, so unchanged evidence reproduces its prior hash and only a genuine change in the evidence (or the way it canonicalizes) shows as drift. The `attest diff` path was already correct; this fixes the replay-based `reattest`/`attest diff <sid>` verb, which previously emitted "drifted" — and wrote that bogus verdict into the audit trail — on every unchanged session.
6
+
7
+ `exceptd discover --cwd <dir>` now scans the target directory instead of silently scanning the process working directory; a nonexistent or non-directory path errors cleanly rather than being ignored.
8
+
9
+ `collect` warns on stderr when any precondition fails — not only when the collector emits an empty submission — so a collector that gathers artifacts but fails a consent/ownership gate (such as `cicd-pipeline-compromise`) tells you up front that `run` will block at preflight.
10
+
11
+ `lint` distinguishes a required artifact that is present but intentionally uncaptured (e.g. a POSIX-mode probe a collector skips on Windows) from one that is absent, instead of advising you to add an artifact that is already there.
12
+
13
+ ## 0.14.4 — 2026-05-27
14
+
15
+ Clearer errors. A case-only playbook typo — `run SECRETS` — now suggests the right id ("Did you mean: secrets?") instead of only printing the id-format rule. Input-validation errors (a bad `--scope`, malformed evidence) are reported plainly rather than dressed as an "internal error" with a file-a-bug pointer. `exceptd ask` now points a question that names a specific CVE or RFC at the direct resolver (`exceptd cve <id>` / `exceptd rfc <n>`). The malformed-CVE message reads accurately for a short year, not only a non-numeric tail, and the RFC resolver's documentation reflects that obsoleted/historic RFCs are now in the local index.
16
+
3
17
  ## 0.14.3 — 2026-05-27
4
18
 
5
19
  The resolved-citation cache is now integrity-checked. Each cached record carries a content digest (covering its `resolved_at` timestamp) that is verified on read, and freshness is gated on that timestamp rather than the file's modification time. A cache file edited in place — flipping a rejected CVE to "published" — is rejected as tampered instead of trusted, and a touched file can no longer resurrect a stale verdict. This closes a path where a writable cache could launder a rejected or fabricated citation into a passing verdict (which feeds `collect citation-hygiene --resolve` and, in turn, attestations).
package/bin/exceptd.js CHANGED
@@ -1715,6 +1715,19 @@ function dispatchPlaybook(cmd, argv) {
1715
1715
  return emitError(`Playbook not found: "${wanted}". ${hint}`, { verb: cmd, wanted, type: "playbook_not_found" }, pretty);
1716
1716
  }
1717
1717
  }
1718
+ // Distinguish an operator-input validation error from a genuine internal
1719
+ // fault. A validation message ("--scope must be one of […]", "must match
1720
+ // …") is the operator's to fix — emit it plainly instead of labeling it an
1721
+ // "internal error" and inviting a bug report. The NPE/typeerror guards keep
1722
+ // real internal faults (that happen to contain "invalid") on the bug path.
1723
+ const msg = e && e.message ? String(e.message) : String(e);
1724
+ if (
1725
+ /\b(must be|must match|not in accepted set|is not a valid|unrecognized)\b|\binvalid /i.test(msg) &&
1726
+ msg.length < 300 &&
1727
+ !/cannot read prop|is not a function|is not defined|undefined \(reading|maximum call stack/i.test(msg)
1728
+ ) {
1729
+ return emitError(`${cmd}: ${msg}`, { verb: cmd, type: "validation_error" }, pretty);
1730
+ }
1718
1731
  // Wrap bare e.message so operators see the verb that triggered the
1719
1732
  // failure + the next action they can take. Re-running with --pretty
1720
1733
  // expands the cause for log-scraping; the GitHub-issues pointer lets
@@ -2442,8 +2455,17 @@ async function cmdCollect(runner, args, runOpts, pretty) {
2442
2455
  const failedPre = Object.entries(submission.precondition_checks || {})
2443
2456
  .filter(([, v]) => v === false)
2444
2457
  .map(([k]) => k);
2445
- if (failedPre.length > 0 && (submission.signal_overrides && Object.keys(submission.signal_overrides).length === 0)) {
2446
- process.stderr.write(`[collect ${playbookId}] precondition not satisfied: ${failedPre.join(", ")} empty submission emitted (collector skipped on this host)\n`);
2458
+ if (failedPre.length > 0) {
2459
+ // Warn on ANY failed precondition, not only when signal_overrides is empty.
2460
+ // A collector that gathers artifacts but fails a consent/ownership gate
2461
+ // (e.g. cicd-pipeline-compromise's operator-owns-ci-fleet) emits a populated
2462
+ // submission yet `run` will block at preflight — surface that up front so
2463
+ // the operator isn't surprised by the downstream "verdict: blocked".
2464
+ const emptySignals = !submission.signal_overrides || Object.keys(submission.signal_overrides).length === 0;
2465
+ const tail = emptySignals
2466
+ ? "empty submission emitted (collector skipped on this host)"
2467
+ : "submission emitted, but `run` will block at preflight until this precondition is satisfied";
2468
+ process.stderr.write(`[collect ${playbookId}] precondition not satisfied: ${failedPre.join(", ")} — ${tail}\n`);
2447
2469
  }
2448
2470
 
2449
2471
  // Emit the submission JSON to stdout. The operator pipes this into
@@ -2587,10 +2609,16 @@ function cmdLint(runner, args, runOpts, pretty) {
2587
2609
  const normalized = runner.normalizeSubmission(submission, pb);
2588
2610
  const flat = submission.observations || null;
2589
2611
 
2590
- // After normalize, validation walks the canonical nested shape.
2591
- const missingRequired = requiredArtifacts.filter(id => {
2612
+ // After normalize, validation walks the canonical nested shape. Distinguish
2613
+ // a truly-absent required artifact (no entry — operator should add it) from
2614
+ // one that is PRESENT but uncaptured (entry with captured:false + a reason,
2615
+ // e.g. a collector's "skipped on win32 — POSIX mode bits not meaningful").
2616
+ // Conflating them told the operator to "add" an artifact that is already
2617
+ // there.
2618
+ const missingRequired = requiredArtifacts.filter(id => !(normalized.artifacts && normalized.artifacts[id]));
2619
+ const uncapturedRequired = requiredArtifacts.filter(id => {
2592
2620
  const a = normalized.artifacts && normalized.artifacts[id];
2593
- return !a || !a.captured;
2621
+ return a && !a.captured;
2594
2622
  });
2595
2623
 
2596
2624
  const unknownArtifactKeys = Object.keys(normalized.artifacts || {})
@@ -2620,6 +2648,11 @@ function cmdLint(runner, args, runOpts, pretty) {
2620
2648
  for (const id of missingRequired) {
2621
2649
  issues.push({ severity: "warn", kind: "missing_required_artifact", artifact_id: id, hint: `Add to submission.artifacts.${id} = { value, captured: true } (or under observations in the flat shape). The run will still execute without this; the corresponding indicators will return 'inconclusive'.` });
2622
2650
  }
2651
+ for (const id of uncapturedRequired) {
2652
+ const a = normalized.artifacts[id];
2653
+ const reason = a && typeof a.reason === "string" ? a.reason : null;
2654
+ issues.push({ severity: "warn", kind: "uncaptured_required_artifact", artifact_id: id, captured: false, ...(reason ? { reason } : {}), hint: `Artifact "${id}" is present but captured:false${reason ? ` (${reason})` : ""} — it is NOT missing; nothing to add. Its indicators will return 'inconclusive'. Common when a collector intentionally skips a platform-specific probe (e.g. POSIX mode bits on Windows).` });
2655
+ }
2623
2656
  for (const k of unknownArtifactKeys) {
2624
2657
  issues.push({ severity: "warn", kind: "unknown_artifact_key", key: k, hint: `Not in playbook ${playbookId} look.artifacts[]. Recognized: ${[...knownArtifacts].slice(0, 10).join(", ")}…` });
2625
2658
  }
@@ -2974,9 +3007,26 @@ function validateScopeOrThrow(scope) {
2974
3007
  function refuseInvalidPlaybookId(verb, playbookId, pretty) {
2975
3008
  const r = validateIdComponent(playbookId, "playbook");
2976
3009
  if (!r.ok) {
3010
+ // A case-only typo (`run SECRETS`) fails the lowercase-only id regex
3011
+ // before the fuzzy "did you mean" path ever runs. If lowercasing yields a
3012
+ // real playbook, suggest it — the most common id typo shouldn't get the
3013
+ // least helpful error.
3014
+ let suggestion = null;
3015
+ if (typeof playbookId === "string") {
3016
+ const lowered = playbookId.toLowerCase();
3017
+ if (lowered !== playbookId && validateIdComponent(lowered, "playbook").ok) {
3018
+ try {
3019
+ if (fs.existsSync(path.join(PKG_ROOT, "data", "playbooks", `${lowered}.json`))) suggestion = lowered;
3020
+ } catch { /* fall back to no suggestion */ }
3021
+ }
3022
+ }
2977
3023
  emitError(
2978
- `${verb}: invalid <playbook> id — ${r.reason}.`,
2979
- { verb, provided: typeof playbookId === "string" ? playbookId.slice(0, 80) : typeof playbookId },
3024
+ `${verb}: invalid <playbook> id — ${r.reason}.${suggestion ? ` Did you mean: ${suggestion}?` : ""}`,
3025
+ {
3026
+ verb,
3027
+ provided: typeof playbookId === "string" ? playbookId.slice(0, 80) : typeof playbookId,
3028
+ ...(suggestion ? { did_you_mean: [suggestion] } : {}),
3029
+ },
2980
3030
  pretty
2981
3031
  );
2982
3032
  return true;
@@ -5024,7 +5074,16 @@ function cmdReattest(runner, args, runOpts, pretty) {
5024
5074
  // Preserve only precondition_checks from the prior submission so the runner
5025
5075
  // doesn't halt on host-environment guards (the reattest is about evidence
5026
5076
  // drift, not re-verifying that the host is still Linux etc.).
5027
- const emptySubmission = { artifacts: {}, signal_overrides: {}, signals: {} };
5077
+ // Replay the ORIGINAL persisted submission, not a hardcoded empty one.
5078
+ // Replaying empty made the replay's evidence_hash differ from the prior hash
5079
+ // for every session whose original evidence wasn't byte-identical to that
5080
+ // empty stub — i.e. essentially all of them — so reattest reported a false
5081
+ // "drifted" on unchanged sessions. Replaying the prior submission reproduces
5082
+ // the prior hash for unchanged evidence; a mismatch then genuinely means the
5083
+ // hash/canonicalization (or the derived verdict) drifted.
5084
+ const replaySubmission = (prior.submission && typeof prior.submission === "object")
5085
+ ? prior.submission
5086
+ : { artifacts: {}, signal_overrides: {}, signals: {} };
5028
5087
  const replayOpts = Object.assign({}, runOpts, {
5029
5088
  airGap: !!(prior.run_opts && prior.run_opts.airGap) || runOpts.airGap,
5030
5089
  forceStale: true, // bypass currency block on reattest — drift comparison is the point
@@ -5048,7 +5107,7 @@ function cmdReattest(runner, args, runOpts, pretty) {
5048
5107
  }
5049
5108
  } catch { /* ignore */ }
5050
5109
  }
5051
- const replay = runner.run(prior.playbook_id, prior.directive_id, emptySubmission, replayOpts);
5110
+ const replay = runner.run(prior.playbook_id, prior.directive_id, replaySubmission, replayOpts);
5052
5111
 
5053
5112
  if (!replay || replay.ok === false) {
5054
5113
  // When replay.reason is falsy, dump the available keys so an operator
@@ -5879,7 +5938,18 @@ function previewValue(v) {
5879
5938
  // /etc/os-release on Linux, and outputs a list of recommended playbooks.
5880
5939
  // ---------------------------------------------------------------------------
5881
5940
  function cmdDiscover(runner, args, runOpts, pretty) {
5882
- const cwd = process.cwd();
5941
+ // Honor --cwd so `discover --cwd <dir>` scans the target tree, not the
5942
+ // process cwd. Pre-fix it was silently ignored — recommendations were
5943
+ // computed for the wrong directory with no signal. Validated like collect.
5944
+ let cwd = process.cwd();
5945
+ if (args.cwd) {
5946
+ const resolved = path.resolve(String(args.cwd));
5947
+ let stat;
5948
+ try { stat = fs.statSync(resolved); }
5949
+ catch (e) { return emitError(`discover: --cwd "${args.cwd}" does not exist (${e.message})`, { verb: "discover", provided_cwd: args.cwd }, pretty); }
5950
+ if (!stat.isDirectory()) return emitError(`discover: --cwd "${args.cwd}" is not a directory`, { verb: "discover", provided_cwd: args.cwd }, pretty);
5951
+ cwd = resolved;
5952
+ }
5883
5953
  const wantJson = !!args.json || !!args.pretty;
5884
5954
  const indent = !!args.pretty;
5885
5955
 
@@ -7664,6 +7734,13 @@ function cmdAsk(runner, args, runOpts, pretty) {
7664
7734
  if (!question) {
7665
7735
  return emitError("ask: usage: exceptd ask \"<plain-English question>\"", null, pretty);
7666
7736
  }
7737
+ // ask routes to playbooks, but a question naming a specific CVE / RFC ("is
7738
+ // CVE-… real", "what is RFC 9404") is answered directly by the resolver
7739
+ // verbs — point at them on stderr so the operator gets the right tool.
7740
+ const cveTok = question.match(/\bCVE-\d{4}-\d{3,}\b/i);
7741
+ const rfcTok = question.match(/\bRFC[-\s]?(\d{1,6})\b/i);
7742
+ if (cveTok) process.stderr.write(`[exceptd] tip: to validate that identifier directly, run \`exceptd cve ${cveTok[0].toUpperCase()}\`.\n`);
7743
+ if (rfcTok) process.stderr.write(`[exceptd] tip: to resolve that RFC directly, run \`exceptd rfc ${rfcTok[1]}\`.\n`);
7667
7744
  const ids = runner.listPlaybooks();
7668
7745
  const q = question.toLowerCase();
7669
7746
 
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "schema_version": "1.1.0",
3
- "generated_at": "2026-05-27T14:56:20.154Z",
3
+ "generated_at": "2026-05-27T15:45:05.142Z",
4
4
  "generator": "scripts/build-indexes.js",
5
5
  "source_count": 54,
6
6
  "source_hashes": {
7
- "manifest.json": "cfe6dbf90ca102b12a5d538e2744df007f7c8df306dc2ccdeac76f408c328d91",
7
+ "manifest.json": "e70361e642cc385fdfca26ee8ce213cd6e4f5c50e0db0f65b49c0f4caf8d5235",
8
8
  "data/atlas-ttps.json": "d24bc02859d40ccf1615db75cca68c077585904e41e0d8f6de448121e9b1abb0",
9
9
  "data/attack-techniques.json": "fa193f0d2d248176a8beddb641e9fe56ba4faa9e15dc253ff876dbf0c5d58a77",
10
10
  "data/cve-catalog.json": "3d451dda7ac0c7d57a4075ae4bafd3148c6184b35dc1bc59d8b81d1f2641e430",
@@ -121,7 +121,7 @@ async function resolveCve(id, opts = {}) {
121
121
 
122
122
  if (!CVE_RE.test(cveId)) {
123
123
  return { ...base, status: "fabricated", from: "format",
124
- reason: "not the canonical CVE-YYYY-NNNN form a non-numeric tail is a fabricated identifier" };
124
+ reason: "not the canonical CVE-YYYY-NNNN form (4-digit year + 4-or-more-digit sequence) a malformed identifier" };
125
125
  }
126
126
 
127
127
  // 1. curated catalog (offline, authoritative for the ids it covers)
@@ -202,10 +202,11 @@ async function resolveCve(id, opts = {}) {
202
202
 
203
203
  /**
204
204
  * Resolve an RFC citation. Returns { id, kind:"rfc", number, title, rfc_status,
205
- * found, from, ... }. The local index covers the whole current RFC series, so
206
- * number->title resolution is fully offline. Obsoleted/historic RFCs are
207
- * excluded from the index, so a not-found number is either obsoleted or
208
- * nonexistent; the optional network step disambiguates.
205
+ * found, from, ... }. The local index covers the whole RFC series — current
206
+ * AND obsoleted/historic (the latter carry `_obsoleted` + `obsoleted_by`) — so
207
+ * number->title resolution, including "is this RFC superseded?", is fully
208
+ * offline. A number absent from the index is almost certainly nonexistent (or
209
+ * an UNKNOWN-status placeholder); the optional network step confirms.
209
210
  */
210
211
  async function resolveRfc(id, opts = {}) {
211
212
  const raw = String(id || "").trim();
@@ -238,7 +239,7 @@ async function resolveRfc(id, opts = {}) {
238
239
  // 3. offline: report the ambiguity rather than guessing
239
240
  if (isAirGap(opts) || opts.noNetwork) {
240
241
  return { ...base, number: num, found: false, status: "unknown", from: "offline",
241
- reason: "not in the local RFC index likely obsoleted/historic (excluded from the index) or nonexistent; verify at datatracker.ietf.org when online" };
242
+ reason: "not in the local RFC index (which includes obsoleted/historic RFCs) most likely a nonexistent number; confirm at datatracker.ietf.org when online" };
242
243
  }
243
244
 
244
245
  // 4. disambiguate obsoleted vs nonexistent via the datatracker, once + cached
@@ -103,7 +103,7 @@ const VERB_FLAG_ALLOWLIST = Object.freeze({
103
103
  'bundle-deterministic', 'bundle-epoch',
104
104
  ],
105
105
  brief: ['all', 'scope', 'directives', 'flat', 'phase'],
106
- discover: ['scan-only', 'scope'],
106
+ discover: ['scan-only', 'scope', 'cwd'],
107
107
  ask: [],
108
108
  attest: [
109
109
  'against', 'playbook', 'since', 'latest', 'format', 'force', 'dry-run',
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exceptd-security",
3
- "version": "0.14.3",
3
+ "version": "0.14.5",
4
4
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation",
5
5
  "homepage": "https://exceptd.com",
6
6
  "license": "Apache-2.0",
@@ -53,7 +53,7 @@
53
53
  ],
54
54
  "last_threat_review": "2026-05-15",
55
55
  "signature": "lXhZgoIrrVloO3XaTvo/43AxZn4mwErstd7DR0O/oVhD3AOGODM4HqrageYEou9WKOdMEGP5mJNTjJsXdP5NDA==",
56
- "signed_at": "2026-05-27T14:45:52.445Z",
56
+ "signed_at": "2026-05-27T15:44:01.778Z",
57
57
  "cwe_refs": [
58
58
  "CWE-125",
59
59
  "CWE-362",
@@ -123,7 +123,7 @@
123
123
  ],
124
124
  "last_threat_review": "2026-05-17",
125
125
  "signature": "ztSKk/zFMFbT12qRcEeBKpydBn7fTT86KxMmor0DTCoKQWk5fJ0fSInfP1XMSB6rFk4/SuSjKVxQRMKVJ5a+Cg==",
126
- "signed_at": "2026-05-27T14:45:52.447Z",
126
+ "signed_at": "2026-05-27T15:44:01.780Z",
127
127
  "cwe_refs": [
128
128
  "CWE-1039",
129
129
  "CWE-1426",
@@ -196,7 +196,7 @@
196
196
  ],
197
197
  "last_threat_review": "2026-05-17",
198
198
  "signature": "K6QdPHNK5c4K5QFjrW0QsUhjp71D7SOisSoulwPNSvKRdi2rY+yg0kdckijBMkLMsVPyUvcC9giu93mKJ1OZDg==",
199
- "signed_at": "2026-05-27T14:45:52.447Z",
199
+ "signed_at": "2026-05-27T15:44:01.780Z",
200
200
  "cwe_refs": [
201
201
  "CWE-22",
202
202
  "CWE-345",
@@ -248,7 +248,7 @@
248
248
  "framework_gaps": [],
249
249
  "last_threat_review": "2026-05-22",
250
250
  "signature": "Qd3SBWmUAaaT++e1Ry2wBIz/dCBmNBMl0+4Rb0etvJLES0fIBEAkU1mTbgNZnT5XOg9J5twdUpymWtmKnDDQCQ==",
251
- "signed_at": "2026-05-27T14:45:52.448Z"
251
+ "signed_at": "2026-05-27T15:44:01.780Z"
252
252
  },
253
253
  {
254
254
  "name": "compliance-theater",
@@ -279,7 +279,7 @@
279
279
  ],
280
280
  "last_threat_review": "2026-05-22",
281
281
  "signature": "F2Shxae0ua0gPtvwzTRVzzHaIgJcFDRT3/akLUAZ4aaMQhkleKkcTaTpkjp+pTVEdPfLeLGNCeAOMs+whVYOBg==",
282
- "signed_at": "2026-05-27T14:45:52.448Z"
282
+ "signed_at": "2026-05-27T15:44:01.781Z"
283
283
  },
284
284
  {
285
285
  "name": "exploit-scoring",
@@ -308,7 +308,7 @@
308
308
  ],
309
309
  "last_threat_review": "2026-05-18",
310
310
  "signature": "NA1hoQycvQhSUoG5rwlXX0mOVmGxoXRVezkELGEA2nZOdGis4gXkHT3O6Sfw7zxE4JuMrsCb65TEeOWk9WEPDg==",
311
- "signed_at": "2026-05-27T14:45:52.449Z"
311
+ "signed_at": "2026-05-27T15:44:01.781Z"
312
312
  },
313
313
  {
314
314
  "name": "rag-pipeline-security",
@@ -345,7 +345,7 @@
345
345
  ],
346
346
  "last_threat_review": "2026-05-22",
347
347
  "signature": "W3pS8lnaCP96TQzsJpG5d5yv5IwgaQyS4Z2Ctcz5BOJf6LbajSIgeDgTZ4f4Bhr5m4E7KsgWGjZS4x7Fwd33BQ==",
348
- "signed_at": "2026-05-27T14:45:52.449Z",
348
+ "signed_at": "2026-05-27T15:44:01.782Z",
349
349
  "cwe_refs": [
350
350
  "CWE-1395",
351
351
  "CWE-1426"
@@ -405,7 +405,7 @@
405
405
  ],
406
406
  "last_threat_review": "2026-05-17",
407
407
  "signature": "/WDGygh1Ck4yWlBWDGtEUVCqKB8d+UaJXoAoBXujtt+GAl8JbMNpaN1TvI0WkEltQ9dTxaAzSn20/eVDqv8iDQ==",
408
- "signed_at": "2026-05-27T14:45:52.449Z",
408
+ "signed_at": "2026-05-27T15:44:01.782Z",
409
409
  "d3fend_refs": [
410
410
  "D3-CA",
411
411
  "D3-CSPP",
@@ -440,7 +440,7 @@
440
440
  "framework_gaps": [],
441
441
  "last_threat_review": "2026-05-22",
442
442
  "signature": "za1NKBpy9LC91F/ESO/qhUfmvVr8GNItQOjR5OJLeHm+2dQ9HHiFWQK2eo53V/n/0uhubuggURA3yS6kJuWwBg==",
443
- "signed_at": "2026-05-27T14:45:52.450Z",
443
+ "signed_at": "2026-05-27T15:44:01.782Z",
444
444
  "cwe_refs": [
445
445
  "CWE-1188"
446
446
  ],
@@ -474,7 +474,7 @@
474
474
  "framework_gaps": [],
475
475
  "last_threat_review": "2026-05-18",
476
476
  "signature": "xiHAhhdufm9hCKU8PLiPE0MX65ej2F4OZwtlWLGLCiie9/km+Kiqbt192LcMvr94v83C98pb9wIaqFsFWft6AQ==",
477
- "signed_at": "2026-05-27T14:45:52.450Z",
477
+ "signed_at": "2026-05-27T15:44:01.783Z",
478
478
  "forward_watch": [
479
479
  "New AI attack classes as ATLAS v6 publishes",
480
480
  "Post-quantum adversary capability timeline",
@@ -513,7 +513,7 @@
513
513
  "framework_gaps": [],
514
514
  "last_threat_review": "2026-05-01",
515
515
  "signature": "oYsSk35N2Uzq7MRofACykylcVwkgPhI4luWZ14vmQT+gUKLyZiKVOUJbe1+7lGl6BYPRN0sUDQ0f7S5Eu5w2Ag==",
516
- "signed_at": "2026-05-27T14:45:52.450Z"
516
+ "signed_at": "2026-05-27T15:44:01.783Z"
517
517
  },
518
518
  {
519
519
  "name": "zeroday-gap-learn",
@@ -540,7 +540,7 @@
540
540
  "framework_gaps": [],
541
541
  "last_threat_review": "2026-05-18",
542
542
  "signature": "igRqYyU1unRFH40BsPyAR62SPrk8QZv8dPGb8S9O9EvLCNOZAzm3t+HdT/NKqzWHwrpomOzkkkyLfYI/0qTUDA==",
543
- "signed_at": "2026-05-27T14:45:52.451Z",
543
+ "signed_at": "2026-05-27T15:44:01.783Z",
544
544
  "forward_watch": [
545
545
  "New CISA KEV entries",
546
546
  "New ATLAS TTP additions in each ATLAS release",
@@ -604,7 +604,7 @@
604
604
  ],
605
605
  "last_threat_review": "2026-05-22",
606
606
  "signature": "i/17u4kJiSpcZAz7LnTyRePFugQOstQ1P4kVoe0oGf4E2/j8oIN9U9DccjUn/YHZhKWIJ2AILG/DMhvMrr3bBg==",
607
- "signed_at": "2026-05-27T14:45:52.451Z",
607
+ "signed_at": "2026-05-27T15:44:01.784Z",
608
608
  "cwe_refs": [
609
609
  "CWE-327"
610
610
  ],
@@ -652,7 +652,7 @@
652
652
  ],
653
653
  "last_threat_review": "2026-05-22",
654
654
  "signature": "QuOVaQ4E2Sl39TClbhZ7HA9XrYAyRrDL44HY3RTE7aWLue0hV2cxaBt40ALGmHS++631QGFDlZTLZI77Tr6nAA==",
655
- "signed_at": "2026-05-27T14:45:52.451Z"
655
+ "signed_at": "2026-05-27T15:44:01.784Z"
656
656
  },
657
657
  {
658
658
  "name": "security-maturity-tiers",
@@ -689,7 +689,7 @@
689
689
  ],
690
690
  "last_threat_review": "2026-05-01",
691
691
  "signature": "8Px1s2lDj10/Q6erwEQlXgUHM1+OTruUR8qAHPX7Oo3k/l69N6P9sm0PsafS9wDFtj9l5C/OiLiFgzMlMt6vBw==",
692
- "signed_at": "2026-05-27T14:45:52.452Z",
692
+ "signed_at": "2026-05-27T15:44:01.784Z",
693
693
  "cwe_refs": [
694
694
  "CWE-1188"
695
695
  ]
@@ -724,7 +724,7 @@
724
724
  "framework_gaps": [],
725
725
  "last_threat_review": "2026-05-11",
726
726
  "signature": "urRcataVWg6/utyEkSiOWoNxTL8sABRjPR7ShyDfZGnAozFph/yDktSoaPVxQDXwu9EfJE+qhUW5OYR/yJECBQ==",
727
- "signed_at": "2026-05-27T14:45:52.452Z"
727
+ "signed_at": "2026-05-27T15:44:01.785Z"
728
728
  },
729
729
  {
730
730
  "name": "attack-surface-pentest",
@@ -796,7 +796,7 @@
796
796
  "Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — Microsoft Edge 4-bug sandbox escape by Orange Tsai (DEVCORE); forward-watch only (browser sandbox, out of current playbook scope); track Microsoft Edge security advisory and KEV add"
797
797
  ],
798
798
  "signature": "C7lv65/Ecm8JJgSKxrX5lxx0YFzKWtrIQSKp+vy50I5e8945s1JmifGUUrnQwRQhq/Pkv7EmfiH5XSO8h75bDg==",
799
- "signed_at": "2026-05-27T14:45:52.452Z"
799
+ "signed_at": "2026-05-27T15:44:01.785Z"
800
800
  },
801
801
  {
802
802
  "name": "fuzz-testing-strategy",
@@ -856,7 +856,7 @@
856
856
  "OSS-Fuzz-Gen / AI-assisted harness generation becoming the default expectation for OSS maintainers"
857
857
  ],
858
858
  "signature": "Z7ypCUnXx8JpLtgxxB6RHNi39w74AmrGY1N4ofAGCXhkuM2EaFVm1AU0dvl9UQ1bVLfHKEDGqMO/TwlIY7RABg==",
859
- "signed_at": "2026-05-27T14:45:52.453Z"
859
+ "signed_at": "2026-05-27T15:44:01.785Z"
860
860
  },
861
861
  {
862
862
  "name": "dlp-gap-analysis",
@@ -931,7 +931,7 @@
931
931
  "Quebec Law 25, India DPDPA, KSA PDPL enforcement actions naming AI-tool prompt data as in-scope personal information"
932
932
  ],
933
933
  "signature": "IgEnpHOhCftAyfUNdKsjbrd169T9pJkk/rRM2ZEna+H18y7p5x48+1kME2sJMZjJuyAdQFBJi8PJXZFwLGI+DQ==",
934
- "signed_at": "2026-05-27T14:45:52.453Z"
934
+ "signed_at": "2026-05-27T15:44:01.785Z"
935
935
  },
936
936
  {
937
937
  "name": "supply-chain-integrity",
@@ -1010,7 +1010,7 @@
1010
1010
  "Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — NVIDIA Megatron Bridge path traversal by haehae; AI training-stack file-system trust boundary; track patch and SBOM-attestation impact"
1011
1011
  ],
1012
1012
  "signature": "pcLrM98A3vUSZRjwNAk0aZ9umvOwB41XCLLsCOy/IebB2F/06oIrGUKkMHtHwm4pTVPShMMcKdZQQ3jz30FnCg==",
1013
- "signed_at": "2026-05-27T14:45:52.453Z"
1013
+ "signed_at": "2026-05-27T15:44:01.786Z"
1014
1014
  },
1015
1015
  {
1016
1016
  "name": "defensive-countermeasure-mapping",
@@ -1067,7 +1067,7 @@
1067
1067
  ],
1068
1068
  "last_threat_review": "2026-05-11",
1069
1069
  "signature": "G5q5elh7Q7eu2xcwTVQJGDTGfvZR0OGQaLSLJPb2wjzCHFF8PWuZfCHZdjjqisiRzRWPyLlzgfHeMJqOdy7cBw==",
1070
- "signed_at": "2026-05-27T14:45:52.454Z"
1070
+ "signed_at": "2026-05-27T15:44:01.786Z"
1071
1071
  },
1072
1072
  {
1073
1073
  "name": "identity-assurance",
@@ -1134,7 +1134,7 @@
1134
1134
  "d3fend_refs": [],
1135
1135
  "last_threat_review": "2026-05-11",
1136
1136
  "signature": "Wv5hGMeHjlaQK1zwicVCA7AvdKgJBgvcjdpGM9Ywahh9tagAKhbkOjybowDQZzu7OZ3bDkbh6pBYc1Sdwr6NAA==",
1137
- "signed_at": "2026-05-27T14:45:52.454Z"
1137
+ "signed_at": "2026-05-27T15:44:01.786Z"
1138
1138
  },
1139
1139
  {
1140
1140
  "name": "ot-ics-security",
@@ -1190,7 +1190,7 @@
1190
1190
  "d3fend_refs": [],
1191
1191
  "last_threat_review": "2026-05-11",
1192
1192
  "signature": "8t5qKHd3yWi57dvG36YQkLN/X9bQWqtEiYjay4IfSmqhJpM/xXPaQVKNGz3wscrO8OLKUZ0OaX7Mj5kzpgBKBQ==",
1193
- "signed_at": "2026-05-27T14:45:52.454Z"
1193
+ "signed_at": "2026-05-27T15:44:01.787Z"
1194
1194
  },
1195
1195
  {
1196
1196
  "name": "coordinated-vuln-disclosure",
@@ -1242,7 +1242,7 @@
1242
1242
  "NYDFS 23 NYCRR 500 amendments potentially adding explicit CVD program requirements"
1243
1243
  ],
1244
1244
  "signature": "GDGt4UPqBa04PjlpSmpyihGzd3OgfBN7jaAK5tfwp+LRSs3ygKOdbeivUCCHNagTY1hE6hG2Ou40ADfBFuXeAg==",
1245
- "signed_at": "2026-05-27T14:45:52.455Z"
1245
+ "signed_at": "2026-05-27T15:44:01.787Z"
1246
1246
  },
1247
1247
  {
1248
1248
  "name": "threat-modeling-methodology",
@@ -1292,7 +1292,7 @@
1292
1292
  "PASTA v2 updates incorporating AI/ML application threats"
1293
1293
  ],
1294
1294
  "signature": "rFBpOQEJUPpl+v88Lw/WqVJRhTl80vy0VbPAbzQj3Q0suJRRrJg368I9uKu5LXIBKFDvKxnGIcIzbGg9NUtaCA==",
1295
- "signed_at": "2026-05-27T14:45:52.455Z"
1295
+ "signed_at": "2026-05-27T15:44:01.787Z"
1296
1296
  },
1297
1297
  {
1298
1298
  "name": "webapp-security",
@@ -1366,7 +1366,7 @@
1366
1366
  "d3fend_refs": [],
1367
1367
  "last_threat_review": "2026-05-11",
1368
1368
  "signature": "ux85YI4t2mVHOyt744Yin1HHy+z11JIFygjKfFfQOBBl5QVV3A267jeIy7utix85irMcpZm/T3yx/ooqiK2tBA==",
1369
- "signed_at": "2026-05-27T14:45:52.455Z",
1369
+ "signed_at": "2026-05-27T15:44:01.788Z",
1370
1370
  "forward_watch": [
1371
1371
  "NGINX Rift CVE-2026-42945 (disclosed 2026-05-13, source depthfirst) — KEV-watch predicted CISA KEV listing by 2026-05-29; AI-assisted discovery angle; track for active-exploitation confirmation and patch advisory affecting front-door web app deployments"
1372
1372
  ]
@@ -1419,7 +1419,7 @@
1419
1419
  "d3fend_refs": [],
1420
1420
  "last_threat_review": "2026-05-15",
1421
1421
  "signature": "IIXnkZ5ZNqFwOto5KfytADTLLZLoyXNZACD1ORZ40P1HUAQxe6u2uyXFzzsfuob4Uy06jNkRGr2FFgCphUH1Cw==",
1422
- "signed_at": "2026-05-27T14:45:52.456Z"
1422
+ "signed_at": "2026-05-27T15:44:01.788Z"
1423
1423
  },
1424
1424
  {
1425
1425
  "name": "sector-healthcare",
@@ -1479,7 +1479,7 @@
1479
1479
  "d3fend_refs": [],
1480
1480
  "last_threat_review": "2026-05-11",
1481
1481
  "signature": "AhF9KF8ZBlDteciV+F8IBSmFVYCvQOn44GmD4rZjgLoPxfIv/QE1/vSkK32zyqDKtHWkLSXExbkkPkxA/V6dDw==",
1482
- "signed_at": "2026-05-27T14:45:52.456Z"
1482
+ "signed_at": "2026-05-27T15:44:01.789Z"
1483
1483
  },
1484
1484
  {
1485
1485
  "name": "sector-financial",
@@ -1560,7 +1560,7 @@
1560
1560
  "TIBER-EU framework v2.0 alignment with DORA TLPT RTS (JC 2024/40); cross-recognition with CBEST and iCAST"
1561
1561
  ],
1562
1562
  "signature": "HQgZvb4ReziEz5rNFr8i/O8/rJEZR+iHRROT7m/D2QUqhrcNISPkYXENsUZlG8xapzy/Ik92ehkseyj4hdmhCQ==",
1563
- "signed_at": "2026-05-27T14:45:52.457Z"
1563
+ "signed_at": "2026-05-27T15:44:01.789Z"
1564
1564
  },
1565
1565
  {
1566
1566
  "name": "sector-federal-government",
@@ -1629,7 +1629,7 @@
1629
1629
  "Australia PSPF 2024 revision and ISM quarterly updates — track for Essential Eight Maturity Level requirements for federal entities"
1630
1630
  ],
1631
1631
  "signature": "linxmsXZiOYtcs71sSWgGCrvb8xQfmxmtTY5PRvZJ0/8FgJulo0tQtejzexYG775s7XhjAmGsDP238BQTQ8ADA==",
1632
- "signed_at": "2026-05-27T14:45:52.457Z"
1632
+ "signed_at": "2026-05-27T15:44:01.789Z"
1633
1633
  },
1634
1634
  {
1635
1635
  "name": "sector-energy",
@@ -1694,7 +1694,7 @@
1694
1694
  "ICS-CERT advisory feed (https://www.cisa.gov/news-events/cybersecurity-advisories/ics-advisories) for vendor CVEs in Siemens, Rockwell, Schneider Electric, ABB, GE Vernova, Hitachi Energy, AVEVA / OSIsoft PI"
1695
1695
  ],
1696
1696
  "signature": "JjBfc0ovta560Clk0x3QGRM5osFJDwcvpy3rT7QEGdCIL827jzE8QCow1C8deXq+4JhY2sA/d7/8IsxikdlkCg==",
1697
- "signed_at": "2026-05-27T14:45:52.457Z"
1697
+ "signed_at": "2026-05-27T15:44:01.790Z"
1698
1698
  },
1699
1699
  {
1700
1700
  "name": "sector-telecom",
@@ -1780,7 +1780,7 @@
1780
1780
  "O-RAN SFG / WG11 security specifications"
1781
1781
  ],
1782
1782
  "signature": "JWVxKFoKrbX4d+Tko1d4OBdwyg25MfFFKn4CT6E/CzH+YwnU3T6Y76uBQIKg3+gIGTvPduqyvQwQQ5FxKDuPBw==",
1783
- "signed_at": "2026-05-27T14:45:52.458Z"
1783
+ "signed_at": "2026-05-27T15:44:01.790Z"
1784
1784
  },
1785
1785
  {
1786
1786
  "name": "api-security",
@@ -1849,7 +1849,7 @@
1849
1849
  "d3fend_refs": [],
1850
1850
  "last_threat_review": "2026-05-18",
1851
1851
  "signature": "BmCRCestWqr55+fCynEhtAl5NWLT+xLTkpwS0Icp3SaoZOw/ce3Y6TtqjHRSKn4CBJq7YDiLRWxmhO3MStvOAA==",
1852
- "signed_at": "2026-05-27T14:45:52.458Z",
1852
+ "signed_at": "2026-05-27T15:44:01.790Z",
1853
1853
  "forward_watch": [
1854
1854
  "NGINX Rift CVE-2026-42945 (disclosed 2026-05-13, source depthfirst) — KEV-watch predicted CISA KEV listing by 2026-05-29; track for active-exploitation confirmation and patch advisory affecting API gateway / reverse-proxy deployments",
1855
1855
  "Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — LiteLLM 3-bug SSRF + Code Injection chain by k3vg3n; LLM-proxy API surface; track upstream patch and CVE assignments",
@@ -1935,7 +1935,7 @@
1935
1935
  "CISA KEV additions for cloud-control-plane CVEs (IMDSv1 abuses, federation token mishandling, cross-tenant boundary failures); CISA Cybersecurity Advisories for cross-cloud advisories"
1936
1936
  ],
1937
1937
  "signature": "/DV3pmZwrRySrk1OCbyI+0BQESacjupJfUX3eC2NGtXuYOBro0vndIP+z27heFxumnjU3a9sfla7/U9X+pqnDw==",
1938
- "signed_at": "2026-05-27T14:45:52.458Z"
1938
+ "signed_at": "2026-05-27T15:44:01.791Z"
1939
1939
  },
1940
1940
  {
1941
1941
  "name": "container-runtime-security",
@@ -1997,7 +1997,7 @@
1997
1997
  "d3fend_refs": [],
1998
1998
  "last_threat_review": "2026-05-15",
1999
1999
  "signature": "E2UGSf9ATyYgzBr8uM/0ubOUmDqo1jVA7f9mVxv6LHfWGCNuQNXDyuNou9VAmUCeeXEeUYIi3AFjXkJqpOkxDA==",
2000
- "signed_at": "2026-05-27T14:45:52.459Z",
2000
+ "signed_at": "2026-05-27T15:44:01.791Z",
2001
2001
  "forward_watch": [
2002
2002
  "Pwn2Own Berlin 2026 (disclosed 2026-05-14, embargo ends 2026-08-12) — NVIDIA Container Toolkit container escape ($50K award) by chompie / IBM X-Force XOR; high-severity container/hypervisor boundary break; track patch and KEV add post-embargo"
2003
2003
  ]
@@ -2071,7 +2071,7 @@
2071
2071
  "MITRE ATLAS v5.6.0 (released May 2026) shipped the AML.T0010 sub-technique expansion this forecast tracked plus new techniques (\"Publish Poisoned AI Agent Tool\", \"Escape to Host\"); inventory now 16 tactics, 84 techniques, 56 sub-techniques. Forward watch: subsequent ATLAS minor and major releases — track next-cadence updates to agentic-AI TTPs and MLOps-pipeline-specific techniques"
2072
2072
  ],
2073
2073
  "signature": "IL+DlRCDJN/p08iiJCFkasKcoyjcB0uWrJ6ORLjQcS1HrUa5Xt62QxVjYPHzaevlm5y36ZdmfESqsZJmzK3lCg==",
2074
- "signed_at": "2026-05-27T14:45:52.459Z"
2074
+ "signed_at": "2026-05-27T15:44:01.791Z"
2075
2075
  },
2076
2076
  {
2077
2077
  "name": "incident-response-playbook",
@@ -2133,7 +2133,7 @@
2133
2133
  "NYDFS 23 NYCRR 500.17 amendments tightening ransom-payment 24h disclosure operationalization"
2134
2134
  ],
2135
2135
  "signature": "MmjLjlmOMLjhJJ4ZfR8MYlHam+ZB+eSqfh6Nv+DecaG4O5zeo9DBP/iL3cbyDVZxmhnhivgJild2ccYeWTeZAg==",
2136
- "signed_at": "2026-05-27T14:45:52.460Z"
2136
+ "signed_at": "2026-05-27T15:44:01.792Z"
2137
2137
  },
2138
2138
  {
2139
2139
  "name": "ransomware-response",
@@ -2213,7 +2213,7 @@
2213
2213
  ],
2214
2214
  "last_threat_review": "2026-05-22",
2215
2215
  "signature": "ssueL03g9fWlhXpTe+IiY5l7RqQkunN4DTN5QETKE+VOX+qggdjAR8PONxk77ol4xWYmHrM/VcH8CNtXUEvgBA==",
2216
- "signed_at": "2026-05-27T14:45:52.460Z"
2216
+ "signed_at": "2026-05-27T15:44:01.792Z"
2217
2217
  },
2218
2218
  {
2219
2219
  "name": "email-security-anti-phishing",
@@ -2266,7 +2266,7 @@
2266
2266
  "d3fend_refs": [],
2267
2267
  "last_threat_review": "2026-05-18",
2268
2268
  "signature": "rK+WnuS+9tqEABmwc0jO/PEmxcLjG1/tmUb897HsClQeKzf+TQOlwBE+OsbtuKxpjYNwur62Xxs3TxObkwm8Cw==",
2269
- "signed_at": "2026-05-27T14:45:52.460Z"
2269
+ "signed_at": "2026-05-27T15:44:01.793Z"
2270
2270
  },
2271
2271
  {
2272
2272
  "name": "age-gates-child-safety",
@@ -2334,7 +2334,7 @@
2334
2334
  "US state adult-site age-verification laws — 19+ states by mid-2026 (TX HB 18 upheld by SCOTUS June 2025 in Free Speech Coalition v. Paxton); track ongoing challenges in remaining states"
2335
2335
  ],
2336
2336
  "signature": "Rgho5TOFUL1txOzcVR0kASCNdovSU4yt99JlGilJlJRyg0A+BdeeQYrZrhPF6Vx2reUAVG0BeHfcZtSbi+cwCg==",
2337
- "signed_at": "2026-05-27T14:45:52.461Z"
2337
+ "signed_at": "2026-05-27T15:44:01.793Z"
2338
2338
  },
2339
2339
  {
2340
2340
  "name": "cloud-iam-incident",
@@ -2414,7 +2414,7 @@
2414
2414
  ],
2415
2415
  "last_threat_review": "2026-05-15",
2416
2416
  "signature": "e/kij7GtKaytROyIj7V5RH+FC9WtmVFzrmG2kIlNDNn29ep/CRNlIQKwXLpzo/81AIf634pmdr1qy/+vwIuUDA==",
2417
- "signed_at": "2026-05-27T14:45:52.461Z",
2417
+ "signed_at": "2026-05-27T15:44:01.793Z",
2418
2418
  "forward_watch": [
2419
2419
  "AWS IAM Identity Center session-policy refresh and step-up-on-admin enforcement (anticipated 2026-H2 release)",
2420
2420
  "GCP Workload Identity Federation principal-set attribute mapping tightening (post-2026 Q3 Federation hardening guide)",
@@ -2508,7 +2508,7 @@
2508
2508
  ],
2509
2509
  "last_threat_review": "2026-05-15",
2510
2510
  "signature": "ew9Kglc9fAZzbn0ZIfGP7WSK/j4eV2VhSvpy+s5bEfNEVYIMa2kZjnGBapgUsyGDLes9H9K2ovjQyX17+GKiBw==",
2511
- "signed_at": "2026-05-27T14:45:52.461Z",
2511
+ "signed_at": "2026-05-27T15:44:01.794Z",
2512
2512
  "forward_watch": [
2513
2513
  "Entra ID conditional access evolution post-Midnight Blizzard — Microsoft's 2025-2026 commitments on legacy-tenant MFA enforcement and OAuth-app consent gating",
2514
2514
  "Okta IPSIE (Interoperability Profile for Secure Identity in the Enterprise) OpenID Foundation working-group output and adoption timeline",
@@ -2526,6 +2526,6 @@
2526
2526
  ],
2527
2527
  "manifest_signature": {
2528
2528
  "algorithm": "Ed25519",
2529
- "signature_base64": "4g9yg+sIPpBW8choM56/9IdwYCKGh5fW1/25UcJPxFyxPT/pADsjcclI1UBpzO5Ro9jH9Ex254W6WGVqWZJ5DA=="
2529
+ "signature_base64": "YUt7+G0zRckqKY5EelzM4hfFQ7cvBxcw/ZXDwWBuDi0pSltHJbnZSPWBXyDcH8FQF5wKo8s3jmzQcEVWuLWTCg=="
2530
2530
  }
2531
2531
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/exceptd-skills",
3
- "version": "0.14.3",
3
+ "version": "0.14.5",
4
4
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 11 catalogs (406 CVEs / 171 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 8888 RFCs), 35 jurisdictions, 10-class catalog gap detector + budget gate, real XML parser + canonical-form diff + content-pattern regression detection, Ed25519-signed.",
5
5
  "keywords": [
6
6
  "ai-security",
package/sbom.cdx.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "bomFormat": "CycloneDX",
3
3
  "specVersion": "1.6",
4
- "serialNumber": "urn:uuid:099316cd-41d8-4bbe-8859-2b7c228db3ac",
4
+ "serialNumber": "urn:uuid:40958687-a502-48c7-89b6-7bb8faaa7910",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2031-02-03T04:42:53.000Z",
7
+ "timestamp": "2060-05-02T23:38:47.000Z",
8
8
  "tools": [
9
9
  {
10
10
  "vendor": "blamejs",
11
11
  "name": "scripts/refresh-sbom.js",
12
- "version": "0.14.3"
12
+ "version": "0.14.5"
13
13
  }
14
14
  ],
15
15
  "component": {
16
- "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.14.3",
16
+ "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.14.5",
17
17
  "type": "application",
18
18
  "name": "@blamejs/exceptd-skills",
19
- "version": "0.14.3",
19
+ "version": "0.14.5",
20
20
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 11 catalogs (406 CVEs / 171 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 8888 RFCs), 35 jurisdictions, 10-class catalog gap detector + budget gate, real XML parser + canonical-form diff + content-pattern regression detection, Ed25519-signed.",
21
21
  "licenses": [
22
22
  {
@@ -25,17 +25,17 @@
25
25
  }
26
26
  }
27
27
  ],
28
- "purl": "pkg:npm/%40blamejs/exceptd-skills@0.14.3",
28
+ "purl": "pkg:npm/%40blamejs/exceptd-skills@0.14.5",
29
29
  "hashes": [
30
30
  {
31
31
  "alg": "SHA-256",
32
- "content": "d91bb87b521c678a73cd89966388bd05e9218f847164d0554bebe47370ed245c"
32
+ "content": "1daea3b739aba84d01a5995f4a7759e21176ed473843595209831f1683a36672"
33
33
  }
34
34
  ],
35
35
  "externalReferences": [
36
36
  {
37
37
  "type": "distribution",
38
- "url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.14.3"
38
+ "url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.14.5"
39
39
  },
40
40
  {
41
41
  "type": "vcs",
@@ -116,11 +116,11 @@
116
116
  "hashes": [
117
117
  {
118
118
  "alg": "SHA-256",
119
- "content": "247f5a4c21fbbca7cebf0763466756abeef8f3663066a255db6b9f4d24c919a6"
119
+ "content": "0a84a86948cc670a139e9cd5b22d41060d5a8f7a17d4b3f569fa6a38f0f8695e"
120
120
  },
121
121
  {
122
122
  "alg": "SHA3-512",
123
- "content": "02a50115f887fb45f02d8591e8320c3b0a938f23b22e04bc0acbad162384139dbd5f81d9d907dac231efbeff9eae3bf85418a70f7a1f113dd5103a648954be2c"
123
+ "content": "8b22f97270831e2e793b46e09533852c94e6245b0e477f3d15187f24d786f570fd18fdf0b26f4e909a54218427312e17af0833bef3cc788f1606b6aad8370b93"
124
124
  }
125
125
  ]
126
126
  },
@@ -281,11 +281,11 @@
281
281
  "hashes": [
282
282
  {
283
283
  "alg": "SHA-256",
284
- "content": "961e1d91c2d0e4cea7e9b91e2106337a65173fec7ceaedaf8873c0c80d6c8812"
284
+ "content": "285bd4a081382d45dbc207af0728ea2f7aab11a335a22c00cc37caed227e64cb"
285
285
  },
286
286
  {
287
287
  "alg": "SHA3-512",
288
- "content": "756c641e00019e4bf63c52ae946831446664764ce90e81b506d27c096facac0b8a2fdff3a7bc13cc946b803c3362931714e4f6a3843437518b1ede250a56ffd4"
288
+ "content": "9842ea05c52c8134c4ceafa73b4b2450b685f6308a7c01e8d6b13186e396ac901615944075fd74b43f50e3888c555b9c92835134abdeeaaf286a255dd0713166"
289
289
  }
290
290
  ]
291
291
  },
@@ -881,11 +881,11 @@
881
881
  "hashes": [
882
882
  {
883
883
  "alg": "SHA-256",
884
- "content": "5ebcc854e28fbdc9b93192f93694790193eec74c66f3ffb830cbb337869cd4ad"
884
+ "content": "7fc089baec25ccb5a228db85572ccd3dc5029832792edfc624c6ed2c24d8289b"
885
885
  },
886
886
  {
887
887
  "alg": "SHA3-512",
888
- "content": "85642a02213e52a4eb9f8dd47c6ec18defde10c9b911db726ca3840edd8401e4f1ad091f1853edb88335f91aba496b05d312106c9e0050eb29c8864ac2f4172e"
888
+ "content": "2c1f27474cded1a4b063c9e261fc0c0e633d4f4478da43d5ad74f1308c1a28366cd87a0b05e096cd485f00037cc5abcb1250160622363d28c74aea3e3777b449"
889
889
  }
890
890
  ]
891
891
  },
@@ -1226,11 +1226,11 @@
1226
1226
  "hashes": [
1227
1227
  {
1228
1228
  "alg": "SHA-256",
1229
- "content": "65257992ec15d25efa25667bd605166159b363719be86ddf4e99f53ce41c54e6"
1229
+ "content": "5a7dcffd308df05272ca9125cc9a41348efde9568aab4a1c9a870e5815214944"
1230
1230
  },
1231
1231
  {
1232
1232
  "alg": "SHA3-512",
1233
- "content": "31ad733cf5ed8177131f4a73235dd0991946b7eacfe7de3ddcb8717065804f076e66e3a7103c4304c52d33ff1799037893599a4924ef6f56e7c27a30ea615e8d"
1233
+ "content": "f72ef674f175a04c0c15fa9214f75586465970eb091871df3dbe339b8fcd8ef5d6a5bc77013f453c1ffd3031e22b267de89ae9f0135fba1d09e32a840d8ee367"
1234
1234
  }
1235
1235
  ]
1236
1236
  },
@@ -1751,11 +1751,11 @@
1751
1751
  "hashes": [
1752
1752
  {
1753
1753
  "alg": "SHA-256",
1754
- "content": "cfe6dbf90ca102b12a5d538e2744df007f7c8df306dc2ccdeac76f408c328d91"
1754
+ "content": "e70361e642cc385fdfca26ee8ce213cd6e4f5c50e0db0f65b49c0f4caf8d5235"
1755
1755
  },
1756
1756
  {
1757
1757
  "alg": "SHA3-512",
1758
- "content": "120634030ec92f4a700205a7508ef646bc56f84346213ba9828cea6041c248774ca21c099c68b4681cb6a90ff02a77a0fb2f20d5b631178ca131e7ccf19ffef9"
1758
+ "content": "c3c4936b98fa9e810b744fbba6a417fe398b8a572bb08d1d3a7b82ed350409a119e9c42fe7bdbd1007dbe74becd0534102e25a9d88de8c48c0f05f9ca002b3c8"
1759
1759
  }
1760
1760
  ]
1761
1761
  },