@blamejs/exceptd-skills 0.13.59 → 0.13.60

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,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.13.60 — 2026-05-22
4
+
5
+ Final tranche of audit cycle 3 polish. `doctor` surfaces the local version; `--collectors` distinguishes policy-skipped from actually-missing collectors; `ask` confidence penalizes ties.
6
+
7
+ ### Features
8
+
9
+ - **`doctor` surfaces `local_version`** at the top of the JSON envelope + in the text header. Operators see "which version am I running?" alongside "is my install healthy?" without invoking `exceptd version` separately. Opt-in `--registry-check` augments with the published comparison; `local_version` alone is offline-clean.
10
+ - **`doctor --collectors` adds `unexplained_missing_collectors`** — the set difference of `without_collector` and `policy_skips`. Previously these were identical-by-coincidence; a future regression that lost an active collector or a policy-skipped playbook that gained one would have gone unnoticed. The new field surfaces the operator-actionable gaps directly.
11
+ - **`ask` confidence is penalized by tie spread.** A 5-way tie at the top score no longer reports the same confidence as a single clear winner. `confidence_factors` surfaces `base` (raw score / token count) + `tie_count` so consumers can introspect the math. Tied scores also break alphabetically only as a last resort — direct id-match between the question and a playbook id now outranks alphabetical accident.
12
+
3
13
  ## 0.13.59 — 2026-05-22
4
14
 
5
15
  Air-gap mode honored by `--upstream-check` and the `collect` envelope. `doctor` subchecks surface freshness timestamps + walk-cap markers. `--collectors` text matches its JSON.
package/bin/exceptd.js CHANGED
@@ -6586,16 +6586,51 @@ function cmdDoctor(runner, args, runOpts, pretty) {
6586
6586
  }
6587
6587
  }
6588
6588
  const ok = load_errors.length === 0;
6589
+ // Audit 3 B.6: pre-fix `without_collector` was just "playbooks
6590
+ // missing a collector file" — which happened to equal POLICY_SKIPS
6591
+ // exactly because every policy-skipped playbook also has no
6592
+ // collector. That coincidence isn't an invariant: a future
6593
+ // playbook could lose its collector by accident OR a policy-skipped
6594
+ // playbook could gain a collector intentionally. Distinguish the
6595
+ // two: `without_collector` is now playbooks-missing-a-collector
6596
+ // that are NOT in the policy-skip allowlist — i.e. actual gaps
6597
+ // that need attention. The set-difference is what operators
6598
+ // should remediate.
6599
+ // Pre-fix `without_collector` was just "playbooks missing a
6600
+ // collector file" — which happened to equal POLICY_SKIPS exactly
6601
+ // because every policy-skipped playbook also has no collector.
6602
+ // That coincidence isn't an invariant: a future playbook could
6603
+ // lose its collector by accident OR a policy-skipped playbook
6604
+ // could gain one. The new `unexplained_missing_collectors`
6605
+ // field surfaces the operator-actionable set difference:
6606
+ // playbooks missing a collector that are NOT in the policy
6607
+ // allowlist. Existing `without_collector` retained for
6608
+ // back-compat.
6609
+ const policySkipSet = new Set(POLICY_SKIPS);
6610
+ const unexplained_missing_collectors = without_collector.filter(p => !policySkipSet.has(p));
6611
+ // Audit-3 codex P1 follow-up: when an unexplained missing collector
6612
+ // appears (a playbook that SHOULD have a collector but doesn't,
6613
+ // i.e. NOT in the policy-skip allowlist), the check fails. Without
6614
+ // this, automation and CI health checks would miss the exact
6615
+ // regression class that unexplained_missing_collectors exists to
6616
+ // surface. Load errors still fail at "error" severity; unexplained
6617
+ // missings fail at "warn" (they're a build-time gap, not a
6618
+ // runtime crash).
6619
+ const collectorOk = ok && unexplained_missing_collectors.length === 0;
6620
+ const collectorSeverity = load_errors.length > 0 ? "error"
6621
+ : unexplained_missing_collectors.length > 0 ? "warn"
6622
+ : "info";
6589
6623
  checks.collectors = {
6590
- ok,
6591
- severity: ok ? "info" : "error",
6624
+ ok: collectorOk,
6625
+ severity: collectorSeverity,
6592
6626
  total_playbooks: playbookFiles.length,
6593
6627
  with_collector,
6594
6628
  without_collector,
6629
+ unexplained_missing_collectors,
6595
6630
  load_errors,
6596
6631
  policy_skips: POLICY_SKIPS.sort(),
6597
6632
  };
6598
- if (!ok) issues.push("collectors");
6633
+ if (!collectorOk) issues.push("collectors");
6599
6634
  } catch (e) {
6600
6635
  checks.collectors = { ok: false, severity: "error", error: e.message };
6601
6636
  issues.push("collectors");
@@ -6615,8 +6650,18 @@ function cmdDoctor(runner, args, runOpts, pretty) {
6615
6650
  const { bucketChecks } = require(path.join(PKG_ROOT, "lib", "doctor-bucketing.js"));
6616
6651
  const { warnList, errorList } = bucketChecks(checks);
6617
6652
  const allGreen = errorList.length === 0 && warnList.length === 0;
6653
+ // Audit 3 B.11: surface the local version on the default doctor output
6654
+ // so operators answer both "is my install healthy?" AND "which version
6655
+ // am I running?" without having to invoke `exceptd version` separately.
6656
+ // The opt-in --registry-check augments this with the published comparison;
6657
+ // local_version alone is offline-clean.
6658
+ let localVersion = null;
6659
+ try {
6660
+ localVersion = require(path.join(PKG_ROOT, "package.json")).version || null;
6661
+ } catch { /* package.json unreadable — fall through */ }
6618
6662
  const out = {
6619
6663
  verb: "doctor",
6664
+ local_version: localVersion,
6620
6665
  checks,
6621
6666
  summary: {
6622
6667
  all_green: allGreen,
@@ -6727,7 +6772,7 @@ function cmdDoctor(runner, args, runOpts, pretty) {
6727
6772
 
6728
6773
  // Default: human checklist. v0.11.0 redesign #5.
6729
6774
  const lines = [];
6730
- lines.push("exceptd doctor");
6775
+ lines.push(`exceptd doctor${localVersion ? ` (v${localVersion})` : ""}`);
6731
6776
  function mark(c, render) {
6732
6777
  if (!c) return;
6733
6778
  // Four states: ok / warn / error / skipped. `skipped` is informational
@@ -7546,7 +7591,20 @@ function cmdAsk(runner, args, runOpts, pretty) {
7546
7591
  if (tokens.some(t => (pb._meta?.id || id) === t)) score += 3;
7547
7592
  scored.push({ id: pb._meta?.id || id, score });
7548
7593
  }
7549
- scored.sort((a, b) => b.score - a.score);
7594
+ // Audit 3 C.6: when scores tie, fall back to a deterministic but more
7595
+ // useful order than alphabetical playbook-id (which made the first-5
7596
+ // playbooks dominate every vague query). Secondary sort favors
7597
+ // playbooks whose id is referenced directly in the question (e.g.
7598
+ // "secrets" matching playbook id "secrets" outranks an alphabetical
7599
+ // accident). Tertiary is the original stable order.
7600
+ scored.forEach((s, i) => { s._origIdx = i; });
7601
+ scored.sort((a, b) => {
7602
+ if (b.score !== a.score) return b.score - a.score;
7603
+ const aIdMatch = tokens.includes(a.id) ? 1 : 0;
7604
+ const bIdMatch = tokens.includes(b.id) ? 1 : 0;
7605
+ if (aIdMatch !== bIdMatch) return bIdMatch - aIdMatch;
7606
+ return a._origIdx - b._origIdx;
7607
+ });
7550
7608
  const top = scored.filter(s => s.score > 0).slice(0, 5);
7551
7609
 
7552
7610
  // v0.11.2: default human-readable; --json for machine.
@@ -7575,11 +7633,22 @@ function cmdAsk(runner, args, runOpts, pretty) {
7575
7633
  t.collector_available = fs.existsSync(collectorPath);
7576
7634
  }
7577
7635
 
7636
+ // Audit 3 C.7: penalize confidence by the tie spread at the top so a
7637
+ // 5-way tie at score 3 doesn't claim the same confidence as a single
7638
+ // clear winner at score 3. tieCount counts how many playbooks share
7639
+ // the top score (1 = clean winner; >1 = tie). Confidence divided
7640
+ // accordingly: a 5-way tie reports ~0.2x the base, a clean winner
7641
+ // reports the full base.
7642
+ const topScore = top[0].score;
7643
+ const tieCount = scored.filter(s => s.score === topScore).length;
7644
+ const baseConfidence = Math.min(1, topScore / Math.max(2, tokens.length));
7645
+ const tiePenalty = tieCount > 1 ? 1 / tieCount : 1;
7578
7646
  const result = {
7579
7647
  verb: "ask",
7580
7648
  question,
7581
7649
  routed_to: top.map(t => t.id),
7582
- confidence: Math.min(1, top[0].score / Math.max(2, tokens.length)),
7650
+ confidence: Math.round(baseConfidence * tiePenalty * 100) / 100,
7651
+ confidence_factors: { base: Math.round(baseConfidence * 100) / 100, tie_count: tieCount },
7583
7652
  next_step: `exceptd run ${top[0].id} # or: exceptd brief ${top[0].id} to learn first`,
7584
7653
  full_match_list: top,
7585
7654
  };
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "schema_version": "1.1.0",
3
- "generated_at": "2026-05-22T23:28:32.508Z",
3
+ "generated_at": "2026-05-22T23:59:02.374Z",
4
4
  "generator": "scripts/build-indexes.js",
5
5
  "source_count": 54,
6
6
  "source_hashes": {
7
- "manifest.json": "020990fd6a13ea3a2a0273e80d0607c1cf0fd8887f03bb48294d2568a22d2789",
7
+ "manifest.json": "fc19c462b36237eeee08be520747e440f0cafdd27dcad4c7623042eec02815c2",
8
8
  "data/atlas-ttps.json": "d296c1d3e71807c9279b731f047e57796e85137f186586743a8cdad214b408f9",
9
9
  "data/attack-techniques.json": "49b6010b317edd219def135171ea8f3b1bbf1e00e9c5a08bf7237215ff54e2c3",
10
10
  "data/cve-catalog.json": "a09c83af3f9679a7ea73935726a1ff9de2cab94b4ab6321fc017fc147747d7c3",
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exceptd-security",
3
- "version": "0.13.59",
3
+ "version": "0.13.60",
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-01",
55
55
  "signature": "lXhZgoIrrVloO3XaTvo/43AxZn4mwErstd7DR0O/oVhD3AOGODM4HqrageYEou9WKOdMEGP5mJNTjJsXdP5NDA==",
56
- "signed_at": "2026-05-22T23:28:31.011Z",
56
+ "signed_at": "2026-05-22T23:59:01.124Z",
57
57
  "cwe_refs": [
58
58
  "CWE-125",
59
59
  "CWE-362",
@@ -117,7 +117,7 @@
117
117
  ],
118
118
  "last_threat_review": "2026-05-01",
119
119
  "signature": "vSVqu4wBm+d68ujZmM6Rto/HzViCkE0gPUcv/MYE/bjFiqamf/s0On4kTOo1KIveV9cOwYNxiItaGEWlVkRFDg==",
120
- "signed_at": "2026-05-22T23:28:31.013Z",
120
+ "signed_at": "2026-05-22T23:59:01.126Z",
121
121
  "cwe_refs": [
122
122
  "CWE-1039",
123
123
  "CWE-1426",
@@ -180,7 +180,7 @@
180
180
  ],
181
181
  "last_threat_review": "2026-05-01",
182
182
  "signature": "RIgXKvolQjgJdnlrDnVOd90IOY1B7VHHZD/YJQRzouL+wUeOLclPrdK/EgEuFyiu7lR4bi+Pl6aGB9G9tOxYCQ==",
183
- "signed_at": "2026-05-22T23:28:31.013Z",
183
+ "signed_at": "2026-05-22T23:59:01.126Z",
184
184
  "cwe_refs": [
185
185
  "CWE-22",
186
186
  "CWE-345",
@@ -226,7 +226,7 @@
226
226
  "framework_gaps": [],
227
227
  "last_threat_review": "2026-05-01",
228
228
  "signature": "RYOxeq/o3uTwTWq4H7RcdH2Aclg9UyCERfUH9Frwkzncsowg7LgxpaEDc3swTCv73HMEGbU8wVbXguZ4JxHUCQ==",
229
- "signed_at": "2026-05-22T23:28:31.014Z"
229
+ "signed_at": "2026-05-22T23:59:01.127Z"
230
230
  },
231
231
  {
232
232
  "name": "compliance-theater",
@@ -257,7 +257,7 @@
257
257
  ],
258
258
  "last_threat_review": "2026-05-01",
259
259
  "signature": "DneJCPKCPcoe6nQ82XptqSqNfSRdt1orKaO+o7K36YCciDrzwJb+1BuBLusPDtpcdDaGY0y0e+AqiTYJklhBAQ==",
260
- "signed_at": "2026-05-22T23:28:31.014Z"
260
+ "signed_at": "2026-05-22T23:59:01.127Z"
261
261
  },
262
262
  {
263
263
  "name": "exploit-scoring",
@@ -286,7 +286,7 @@
286
286
  ],
287
287
  "last_threat_review": "2026-05-01",
288
288
  "signature": "NA1hoQycvQhSUoG5rwlXX0mOVmGxoXRVezkELGEA2nZOdGis4gXkHT3O6Sfw7zxE4JuMrsCb65TEeOWk9WEPDg==",
289
- "signed_at": "2026-05-22T23:28:31.015Z"
289
+ "signed_at": "2026-05-22T23:59:01.128Z"
290
290
  },
291
291
  {
292
292
  "name": "rag-pipeline-security",
@@ -323,7 +323,7 @@
323
323
  ],
324
324
  "last_threat_review": "2026-05-01",
325
325
  "signature": "XgrzcA2brPhXrSTxrcLnJec0OpgGYJBoSTUlJ10UdePHffxqb9LTVGnfbmEk1ykQifXREZexui2bG7X/+eFfCQ==",
326
- "signed_at": "2026-05-22T23:28:31.015Z",
326
+ "signed_at": "2026-05-22T23:59:01.128Z",
327
327
  "cwe_refs": [
328
328
  "CWE-1395",
329
329
  "CWE-1426"
@@ -380,7 +380,7 @@
380
380
  ],
381
381
  "last_threat_review": "2026-05-01",
382
382
  "signature": "9+hZlZOqZdeACUmamQk66L5levZhhwnFXuYRhdT6Mce99eQaKT7wNfWq12hXQztkRcVRKaFH+a01zwJQwsRQCA==",
383
- "signed_at": "2026-05-22T23:28:31.016Z",
383
+ "signed_at": "2026-05-22T23:59:01.128Z",
384
384
  "d3fend_refs": [
385
385
  "D3-CA",
386
386
  "D3-CSPP",
@@ -415,7 +415,7 @@
415
415
  "framework_gaps": [],
416
416
  "last_threat_review": "2026-05-01",
417
417
  "signature": "ciqhVloMWWXEigPZvvwoV2c54tEqsDqsoc+sS/mNTFFJk2H+tz2+XUrgfEPRuYw0FeyNB6/+27pL2NpKHzUqAg==",
418
- "signed_at": "2026-05-22T23:28:31.016Z",
418
+ "signed_at": "2026-05-22T23:59:01.129Z",
419
419
  "cwe_refs": [
420
420
  "CWE-1188"
421
421
  ]
@@ -443,7 +443,7 @@
443
443
  "framework_gaps": [],
444
444
  "last_threat_review": "2026-05-01",
445
445
  "signature": "xiHAhhdufm9hCKU8PLiPE0MX65ej2F4OZwtlWLGLCiie9/km+Kiqbt192LcMvr94v83C98pb9wIaqFsFWft6AQ==",
446
- "signed_at": "2026-05-22T23:28:31.016Z"
446
+ "signed_at": "2026-05-22T23:59:01.129Z"
447
447
  },
448
448
  {
449
449
  "name": "global-grc",
@@ -475,7 +475,7 @@
475
475
  "framework_gaps": [],
476
476
  "last_threat_review": "2026-05-01",
477
477
  "signature": "oYsSk35N2Uzq7MRofACykylcVwkgPhI4luWZ14vmQT+gUKLyZiKVOUJbe1+7lGl6BYPRN0sUDQ0f7S5Eu5w2Ag==",
478
- "signed_at": "2026-05-22T23:28:31.017Z"
478
+ "signed_at": "2026-05-22T23:59:01.129Z"
479
479
  },
480
480
  {
481
481
  "name": "zeroday-gap-learn",
@@ -502,7 +502,7 @@
502
502
  "framework_gaps": [],
503
503
  "last_threat_review": "2026-05-01",
504
504
  "signature": "igRqYyU1unRFH40BsPyAR62SPrk8QZv8dPGb8S9O9EvLCNOZAzm3t+HdT/NKqzWHwrpomOzkkkyLfYI/0qTUDA==",
505
- "signed_at": "2026-05-22T23:28:31.017Z"
505
+ "signed_at": "2026-05-22T23:59:01.130Z"
506
506
  },
507
507
  {
508
508
  "name": "pqc-first",
@@ -554,7 +554,7 @@
554
554
  ],
555
555
  "last_threat_review": "2026-05-01",
556
556
  "signature": "vhc3wuQEro/86s1ro2b/KakUXg8QVnySYTBqA7ebzv9oeR2HYO5bvGEJp3oOHWtL37JDqcCAHYadSN/qxIyCCA==",
557
- "signed_at": "2026-05-22T23:28:31.018Z",
557
+ "signed_at": "2026-05-22T23:59:01.130Z",
558
558
  "cwe_refs": [
559
559
  "CWE-327"
560
560
  ],
@@ -601,7 +601,7 @@
601
601
  ],
602
602
  "last_threat_review": "2026-05-01",
603
603
  "signature": "MS35nWm8djfJGn4OOoT0JKJ2aO+Dkbb6wOOWJYvNZlRKT3UGA59o2gxg1JOnD20hb/RwxtkmCujhl2tuYSR+AQ==",
604
- "signed_at": "2026-05-22T23:28:31.018Z"
604
+ "signed_at": "2026-05-22T23:59:01.130Z"
605
605
  },
606
606
  {
607
607
  "name": "security-maturity-tiers",
@@ -638,7 +638,7 @@
638
638
  ],
639
639
  "last_threat_review": "2026-05-01",
640
640
  "signature": "8Px1s2lDj10/Q6erwEQlXgUHM1+OTruUR8qAHPX7Oo3k/l69N6P9sm0PsafS9wDFtj9l5C/OiLiFgzMlMt6vBw==",
641
- "signed_at": "2026-05-22T23:28:31.018Z",
641
+ "signed_at": "2026-05-22T23:59:01.131Z",
642
642
  "cwe_refs": [
643
643
  "CWE-1188"
644
644
  ]
@@ -673,7 +673,7 @@
673
673
  "framework_gaps": [],
674
674
  "last_threat_review": "2026-05-11",
675
675
  "signature": "WAu5fRirzSOcnnZsTx2d/JJZwa/LPpXCi+31qATTGLmoNuhyy81k3ooPe9kCM3E0CLMtvTePg9DagYqBninZDQ==",
676
- "signed_at": "2026-05-22T23:28:31.019Z"
676
+ "signed_at": "2026-05-22T23:59:01.131Z"
677
677
  },
678
678
  {
679
679
  "name": "attack-surface-pentest",
@@ -744,7 +744,7 @@
744
744
  "PTES revision incorporating AI-surface enumeration"
745
745
  ],
746
746
  "signature": "7eEwCXFd9pDKUw7yCUbRJSjfzozE44dwwwemCQUPm8JBPztLltibD9bL/RszSbYyCrYJmVb5Drncz2cGe62gCw==",
747
- "signed_at": "2026-05-22T23:28:31.019Z"
747
+ "signed_at": "2026-05-22T23:59:01.131Z"
748
748
  },
749
749
  {
750
750
  "name": "fuzz-testing-strategy",
@@ -804,7 +804,7 @@
804
804
  "OSS-Fuzz-Gen / AI-assisted harness generation becoming the default expectation for OSS maintainers"
805
805
  ],
806
806
  "signature": "Z7ypCUnXx8JpLtgxxB6RHNi39w74AmrGY1N4ofAGCXhkuM2EaFVm1AU0dvl9UQ1bVLfHKEDGqMO/TwlIY7RABg==",
807
- "signed_at": "2026-05-22T23:28:31.019Z"
807
+ "signed_at": "2026-05-22T23:59:01.132Z"
808
808
  },
809
809
  {
810
810
  "name": "dlp-gap-analysis",
@@ -879,7 +879,7 @@
879
879
  "Quebec Law 25, India DPDPA, KSA PDPL enforcement actions naming AI-tool prompt data as in-scope personal information"
880
880
  ],
881
881
  "signature": "fgxG344JGYBWWWwFXZ1IzGipWKP7EyBhrsvsbsb0CCGXfv/MvNHVNI6G0zQddCsWX1JeQbhZT3Vk8v1uJKDTDA==",
882
- "signed_at": "2026-05-22T23:28:31.020Z"
882
+ "signed_at": "2026-05-22T23:59:01.132Z"
883
883
  },
884
884
  {
885
885
  "name": "supply-chain-integrity",
@@ -956,7 +956,7 @@
956
956
  "OpenSSF model-signing — emerging Sigstore-based signing standard for ML model weights; track for production adoption"
957
957
  ],
958
958
  "signature": "pcLrM98A3vUSZRjwNAk0aZ9umvOwB41XCLLsCOy/IebB2F/06oIrGUKkMHtHwm4pTVPShMMcKdZQQ3jz30FnCg==",
959
- "signed_at": "2026-05-22T23:28:31.020Z"
959
+ "signed_at": "2026-05-22T23:59:01.132Z"
960
960
  },
961
961
  {
962
962
  "name": "defensive-countermeasure-mapping",
@@ -1013,7 +1013,7 @@
1013
1013
  ],
1014
1014
  "last_threat_review": "2026-05-11",
1015
1015
  "signature": "gqF8eU3VBrZhO2WnlcqKa7wm1d2mmWtvpbmx0kNCgHojNV+qEt+Ij84RO6bZvaUqhfYPWizWL79Fa4DL0curAQ==",
1016
- "signed_at": "2026-05-22T23:28:31.020Z"
1016
+ "signed_at": "2026-05-22T23:59:01.133Z"
1017
1017
  },
1018
1018
  {
1019
1019
  "name": "identity-assurance",
@@ -1080,7 +1080,7 @@
1080
1080
  "d3fend_refs": [],
1081
1081
  "last_threat_review": "2026-05-11",
1082
1082
  "signature": "Wv5hGMeHjlaQK1zwicVCA7AvdKgJBgvcjdpGM9Ywahh9tagAKhbkOjybowDQZzu7OZ3bDkbh6pBYc1Sdwr6NAA==",
1083
- "signed_at": "2026-05-22T23:28:31.021Z"
1083
+ "signed_at": "2026-05-22T23:59:01.133Z"
1084
1084
  },
1085
1085
  {
1086
1086
  "name": "ot-ics-security",
@@ -1136,7 +1136,7 @@
1136
1136
  "d3fend_refs": [],
1137
1137
  "last_threat_review": "2026-05-11",
1138
1138
  "signature": "8t5qKHd3yWi57dvG36YQkLN/X9bQWqtEiYjay4IfSmqhJpM/xXPaQVKNGz3wscrO8OLKUZ0OaX7Mj5kzpgBKBQ==",
1139
- "signed_at": "2026-05-22T23:28:31.021Z"
1139
+ "signed_at": "2026-05-22T23:59:01.133Z"
1140
1140
  },
1141
1141
  {
1142
1142
  "name": "coordinated-vuln-disclosure",
@@ -1188,7 +1188,7 @@
1188
1188
  "NYDFS 23 NYCRR 500 amendments potentially adding explicit CVD program requirements"
1189
1189
  ],
1190
1190
  "signature": "GDGt4UPqBa04PjlpSmpyihGzd3OgfBN7jaAK5tfwp+LRSs3ygKOdbeivUCCHNagTY1hE6hG2Ou40ADfBFuXeAg==",
1191
- "signed_at": "2026-05-22T23:28:31.021Z"
1191
+ "signed_at": "2026-05-22T23:59:01.133Z"
1192
1192
  },
1193
1193
  {
1194
1194
  "name": "threat-modeling-methodology",
@@ -1238,7 +1238,7 @@
1238
1238
  "PASTA v2 updates incorporating AI/ML application threats"
1239
1239
  ],
1240
1240
  "signature": "rFBpOQEJUPpl+v88Lw/WqVJRhTl80vy0VbPAbzQj3Q0suJRRrJg368I9uKu5LXIBKFDvKxnGIcIzbGg9NUtaCA==",
1241
- "signed_at": "2026-05-22T23:28:31.022Z"
1241
+ "signed_at": "2026-05-22T23:59:01.134Z"
1242
1242
  },
1243
1243
  {
1244
1244
  "name": "webapp-security",
@@ -1312,7 +1312,7 @@
1312
1312
  "d3fend_refs": [],
1313
1313
  "last_threat_review": "2026-05-11",
1314
1314
  "signature": "ux85YI4t2mVHOyt744Yin1HHy+z11JIFygjKfFfQOBBl5QVV3A267jeIy7utix85irMcpZm/T3yx/ooqiK2tBA==",
1315
- "signed_at": "2026-05-22T23:28:31.022Z"
1315
+ "signed_at": "2026-05-22T23:59:01.134Z"
1316
1316
  },
1317
1317
  {
1318
1318
  "name": "ai-risk-management",
@@ -1362,7 +1362,7 @@
1362
1362
  "d3fend_refs": [],
1363
1363
  "last_threat_review": "2026-05-11",
1364
1364
  "signature": "IIXnkZ5ZNqFwOto5KfytADTLLZLoyXNZACD1ORZ40P1HUAQxe6u2uyXFzzsfuob4Uy06jNkRGr2FFgCphUH1Cw==",
1365
- "signed_at": "2026-05-22T23:28:31.022Z"
1365
+ "signed_at": "2026-05-22T23:59:01.135Z"
1366
1366
  },
1367
1367
  {
1368
1368
  "name": "sector-healthcare",
@@ -1422,7 +1422,7 @@
1422
1422
  "d3fend_refs": [],
1423
1423
  "last_threat_review": "2026-05-11",
1424
1424
  "signature": "AhF9KF8ZBlDteciV+F8IBSmFVYCvQOn44GmD4rZjgLoPxfIv/QE1/vSkK32zyqDKtHWkLSXExbkkPkxA/V6dDw==",
1425
- "signed_at": "2026-05-22T23:28:31.023Z"
1425
+ "signed_at": "2026-05-22T23:59:01.135Z"
1426
1426
  },
1427
1427
  {
1428
1428
  "name": "sector-financial",
@@ -1503,7 +1503,7 @@
1503
1503
  "TIBER-EU framework v2.0 alignment with DORA TLPT RTS (JC 2024/40); cross-recognition with CBEST and iCAST"
1504
1504
  ],
1505
1505
  "signature": "HQgZvb4ReziEz5rNFr8i/O8/rJEZR+iHRROT7m/D2QUqhrcNISPkYXENsUZlG8xapzy/Ik92ehkseyj4hdmhCQ==",
1506
- "signed_at": "2026-05-22T23:28:31.023Z"
1506
+ "signed_at": "2026-05-22T23:59:01.135Z"
1507
1507
  },
1508
1508
  {
1509
1509
  "name": "sector-federal-government",
@@ -1572,7 +1572,7 @@
1572
1572
  "Australia PSPF 2024 revision and ISM quarterly updates — track for Essential Eight Maturity Level requirements for federal entities"
1573
1573
  ],
1574
1574
  "signature": "linxmsXZiOYtcs71sSWgGCrvb8xQfmxmtTY5PRvZJ0/8FgJulo0tQtejzexYG775s7XhjAmGsDP238BQTQ8ADA==",
1575
- "signed_at": "2026-05-22T23:28:31.024Z"
1575
+ "signed_at": "2026-05-22T23:59:01.136Z"
1576
1576
  },
1577
1577
  {
1578
1578
  "name": "sector-energy",
@@ -1637,7 +1637,7 @@
1637
1637
  "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"
1638
1638
  ],
1639
1639
  "signature": "JjBfc0ovta560Clk0x3QGRM5osFJDwcvpy3rT7QEGdCIL827jzE8QCow1C8deXq+4JhY2sA/d7/8IsxikdlkCg==",
1640
- "signed_at": "2026-05-22T23:28:31.024Z"
1640
+ "signed_at": "2026-05-22T23:59:01.136Z"
1641
1641
  },
1642
1642
  {
1643
1643
  "name": "sector-telecom",
@@ -1723,7 +1723,7 @@
1723
1723
  "O-RAN SFG / WG11 security specifications"
1724
1724
  ],
1725
1725
  "signature": "JWVxKFoKrbX4d+Tko1d4OBdwyg25MfFFKn4CT6E/CzH+YwnU3T6Y76uBQIKg3+gIGTvPduqyvQwQQ5FxKDuPBw==",
1726
- "signed_at": "2026-05-22T23:28:31.025Z"
1726
+ "signed_at": "2026-05-22T23:59:01.136Z"
1727
1727
  },
1728
1728
  {
1729
1729
  "name": "api-security",
@@ -1792,7 +1792,7 @@
1792
1792
  "d3fend_refs": [],
1793
1793
  "last_threat_review": "2026-05-11",
1794
1794
  "signature": "BmCRCestWqr55+fCynEhtAl5NWLT+xLTkpwS0Icp3SaoZOw/ce3Y6TtqjHRSKn4CBJq7YDiLRWxmhO3MStvOAA==",
1795
- "signed_at": "2026-05-22T23:28:31.025Z"
1795
+ "signed_at": "2026-05-22T23:59:01.137Z"
1796
1796
  },
1797
1797
  {
1798
1798
  "name": "cloud-security",
@@ -1873,7 +1873,7 @@
1873
1873
  "CISA KEV additions for cloud-control-plane CVEs (IMDSv1 abuses, federation token mishandling, cross-tenant boundary failures); CISA Cybersecurity Advisories for cross-cloud advisories"
1874
1874
  ],
1875
1875
  "signature": "/DV3pmZwrRySrk1OCbyI+0BQESacjupJfUX3eC2NGtXuYOBro0vndIP+z27heFxumnjU3a9sfla7/U9X+pqnDw==",
1876
- "signed_at": "2026-05-22T23:28:31.025Z"
1876
+ "signed_at": "2026-05-22T23:59:01.137Z"
1877
1877
  },
1878
1878
  {
1879
1879
  "name": "container-runtime-security",
@@ -1935,7 +1935,7 @@
1935
1935
  "d3fend_refs": [],
1936
1936
  "last_threat_review": "2026-05-11",
1937
1937
  "signature": "E2UGSf9ATyYgzBr8uM/0ubOUmDqo1jVA7f9mVxv6LHfWGCNuQNXDyuNou9VAmUCeeXEeUYIi3AFjXkJqpOkxDA==",
1938
- "signed_at": "2026-05-22T23:28:31.026Z"
1938
+ "signed_at": "2026-05-22T23:59:01.137Z"
1939
1939
  },
1940
1940
  {
1941
1941
  "name": "mlops-security",
@@ -2006,7 +2006,7 @@
2006
2006
  "MITRE ATLAS v5.6.0 (released February 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: ATLAS v5.5 / v6.0 — track next-cadence updates to agentic-AI TTPs and MLOps-pipeline-specific techniques"
2007
2007
  ],
2008
2008
  "signature": "BGNE6ZQWBA1LmsUFe8tU0L67iGDSrFqiuqaZD2f1KqfcyqqzQfMs9PWNHFzxxaJmXeKlm87eU8lgELF0bX+RBA==",
2009
- "signed_at": "2026-05-22T23:28:31.026Z"
2009
+ "signed_at": "2026-05-22T23:59:01.138Z"
2010
2010
  },
2011
2011
  {
2012
2012
  "name": "incident-response-playbook",
@@ -2068,7 +2068,7 @@
2068
2068
  "NYDFS 23 NYCRR 500.17 amendments tightening ransom-payment 24h disclosure operationalization"
2069
2069
  ],
2070
2070
  "signature": "FkZQerh3VHVJAwIcCktDyMRh5KE2+Em/i0ek8zEz7JG/PXtQx8ujHWTh3VjZbOLhPNtdB2qxgXOIAYIofaVOAQ==",
2071
- "signed_at": "2026-05-22T23:28:31.027Z"
2071
+ "signed_at": "2026-05-22T23:59:01.138Z"
2072
2072
  },
2073
2073
  {
2074
2074
  "name": "ransomware-response",
@@ -2148,7 +2148,7 @@
2148
2148
  ],
2149
2149
  "last_threat_review": "2026-05-15",
2150
2150
  "signature": "n3UToNuN3A1HgLvcuqmIx8vrZY71+r/79waK92jG+rSX4uYOzkmxMUpROrE5K9bDwMezNBHdjWv8Uul6zugyDQ==",
2151
- "signed_at": "2026-05-22T23:28:31.027Z"
2151
+ "signed_at": "2026-05-22T23:59:01.138Z"
2152
2152
  },
2153
2153
  {
2154
2154
  "name": "email-security-anti-phishing",
@@ -2201,7 +2201,7 @@
2201
2201
  "d3fend_refs": [],
2202
2202
  "last_threat_review": "2026-05-11",
2203
2203
  "signature": "rK+WnuS+9tqEABmwc0jO/PEmxcLjG1/tmUb897HsClQeKzf+TQOlwBE+OsbtuKxpjYNwur62Xxs3TxObkwm8Cw==",
2204
- "signed_at": "2026-05-22T23:28:31.027Z"
2204
+ "signed_at": "2026-05-22T23:59:01.139Z"
2205
2205
  },
2206
2206
  {
2207
2207
  "name": "age-gates-child-safety",
@@ -2269,7 +2269,7 @@
2269
2269
  "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"
2270
2270
  ],
2271
2271
  "signature": "+OO0RhQ303RJV7kaH38IuZpLeQbapep6Ds4Re/WEZu0FHBwKSlwvF7jbtP7KQ57xldJYn/xZm2jaszyOacMfDg==",
2272
- "signed_at": "2026-05-22T23:28:31.028Z"
2272
+ "signed_at": "2026-05-22T23:59:01.139Z"
2273
2273
  },
2274
2274
  {
2275
2275
  "name": "cloud-iam-incident",
@@ -2349,7 +2349,7 @@
2349
2349
  ],
2350
2350
  "last_threat_review": "2026-05-15",
2351
2351
  "signature": "e/kij7GtKaytROyIj7V5RH+FC9WtmVFzrmG2kIlNDNn29ep/CRNlIQKwXLpzo/81AIf634pmdr1qy/+vwIuUDA==",
2352
- "signed_at": "2026-05-22T23:28:31.028Z"
2352
+ "signed_at": "2026-05-22T23:59:01.139Z"
2353
2353
  },
2354
2354
  {
2355
2355
  "name": "idp-incident-response",
@@ -2430,11 +2430,11 @@
2430
2430
  ],
2431
2431
  "last_threat_review": "2026-05-15",
2432
2432
  "signature": "ew9Kglc9fAZzbn0ZIfGP7WSK/j4eV2VhSvpy+s5bEfNEVYIMa2kZjnGBapgUsyGDLes9H9K2ovjQyX17+GKiBw==",
2433
- "signed_at": "2026-05-22T23:28:31.028Z"
2433
+ "signed_at": "2026-05-22T23:59:01.140Z"
2434
2434
  }
2435
2435
  ],
2436
2436
  "manifest_signature": {
2437
2437
  "algorithm": "Ed25519",
2438
- "signature_base64": "jYdDFzIsg9EdwlNtBAT5NYGZYTtQzpZxo5lGAUJ4lG2hSWgmFy8dOqe4fL1o++uqDYDbUfh8tF/CkDOiGqJrCg=="
2438
+ "signature_base64": "X4276PNS/Wai6FjgKgJ/po8QxOthqnAnXMznT2ZhyVyftftdIv8r3QF84mYOeET9ZxuxNzvONAf10JvSjsclCQ=="
2439
2439
  }
2440
2440
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/exceptd-skills",
3
- "version": "0.13.59",
3
+ "version": "0.13.60",
4
4
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 10 catalogs (312 CVEs / 171 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 7476 RFCs), 34 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:eb996267-363d-46e0-9a5c-f259a8c46d9b",
4
+ "serialNumber": "urn:uuid:97ba6fa8-d1c8-4153-8585-f1ca01cb55cc",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2151-04-04T19:39:19.000Z",
7
+ "timestamp": "2106-09-01T16:58:16.000Z",
8
8
  "tools": [
9
9
  {
10
10
  "vendor": "blamejs",
11
11
  "name": "scripts/refresh-sbom.js",
12
- "version": "0.13.59"
12
+ "version": "0.13.60"
13
13
  }
14
14
  ],
15
15
  "component": {
16
- "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.59",
16
+ "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.60",
17
17
  "type": "application",
18
18
  "name": "@blamejs/exceptd-skills",
19
- "version": "0.13.59",
19
+ "version": "0.13.60",
20
20
  "description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 10 catalogs (312 CVEs / 171 CWEs / 805 ATT&CK + ICS / 170 ATLAS / 468 D3FEND / 7476 RFCs), 34 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.13.59",
28
+ "purl": "pkg:npm/%40blamejs/exceptd-skills@0.13.60",
29
29
  "hashes": [
30
30
  {
31
31
  "alg": "SHA-256",
32
- "content": "97387465e487f40271bdfd6dc20958446c2772c571c9c7671e9f912e0a6b32ae"
32
+ "content": "4993fa8a121118c5e43b17213c8754642ad5ce537e85b996e27468097aa0630c"
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.13.59"
38
+ "url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.13.60"
39
39
  },
40
40
  {
41
41
  "type": "vcs",
@@ -116,11 +116,11 @@
116
116
  "hashes": [
117
117
  {
118
118
  "alg": "SHA-256",
119
- "content": "d08eca001f3bd9547d899b0531b59b5bcf929bcc1134f5f920bc85453a96bee8"
119
+ "content": "483e39b534403945a2a2f17aca86ea0f38b63c89a05e2e873d29cefbd0ab81fc"
120
120
  },
121
121
  {
122
122
  "alg": "SHA3-512",
123
- "content": "9b6e0d750008f8b273c44016fd002d31f38ebb95b00787cd57081c29f8afed8c9c56b94a85c17b9a1bd4edacdbf12ba602acda6459d7743ab409ff3471114932"
123
+ "content": "197ae502585c387f3cb41a106d97efe0cb95b1224eaebac83ba9e7cac06e6dc9a93f04d1ff26bd5a332939936c75ead350dbdd9d3c168c6e47216a4e7b97c160"
124
124
  }
125
125
  ]
126
126
  },
@@ -281,11 +281,11 @@
281
281
  "hashes": [
282
282
  {
283
283
  "alg": "SHA-256",
284
- "content": "679a543aec746f1e99d891099bd04ab88fd0b8ba6e20a3484c9d9e3a9d33fd7e"
284
+ "content": "5c9ce8eadb9b392d565d598bf49efadeb7e8c029c2e182ac53c9de2d8631ff3f"
285
285
  },
286
286
  {
287
287
  "alg": "SHA3-512",
288
- "content": "694240b8a9268abc9ec54bdb52df56389fb115a81f99d70121ccb7e427d7bc670d7d4651fbaaec9b7be35f03c861b75b06177ba4e372890304542aa1a4615a83"
288
+ "content": "a358a3c9fdfc04c202f33568dcc3f046700f87b0210114a2cea8fe82178dc4c8f1d96301b0c6f34b01f675bfaf2d03ac36fdb96b45c26a9873006da099f4eb9c"
289
289
  }
290
290
  ]
291
291
  },
@@ -1661,11 +1661,11 @@
1661
1661
  "hashes": [
1662
1662
  {
1663
1663
  "alg": "SHA-256",
1664
- "content": "020990fd6a13ea3a2a0273e80d0607c1cf0fd8887f03bb48294d2568a22d2789"
1664
+ "content": "fc19c462b36237eeee08be520747e440f0cafdd27dcad4c7623042eec02815c2"
1665
1665
  },
1666
1666
  {
1667
1667
  "alg": "SHA3-512",
1668
- "content": "4bbf18c5ec14dbae987465ebca8dc06b2fcce0347eae3f834fb1fc33115289acf6484385b25f728548b70e37a7f4f2ce3d4c314b36465961cc22dbaf7c974e14"
1668
+ "content": "593bc450ed6e145ea66fdbe7f7e37e46dbf5d04738f55a5a4d24df452f3dfe8b1e0090215bc3ce4fb84e27c36281f8217725d668e9964cb345e6e5c593c9bbae"
1669
1669
  }
1670
1670
  ]
1671
1671
  },