@blamejs/exceptd-skills 0.13.44 → 0.13.46

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,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.13.46 — 2026-05-21
4
+
5
+ `doctor` now health-checks the collector layer.
6
+
7
+ ### Features
8
+
9
+ - **`doctor --collectors` (and folded into the default `doctor` pass).** Walks every `data/playbooks/<id>.json`, looks up `lib/collectors/<id>.js`, requires the module, verifies `playbook_id` matches the file name AND `collect` is exported as a function. Reports counts via a new `checks.collectors: { ok, total_playbooks, with_collector, without_collector, load_errors, policy_skips }` envelope field. `policy_skips` enumerates the ten judgement-shaped playbooks (incident / governance / pure-analyze) that are intentionally without a collector per AGENTS.md — operators see "10 missing is by design, not regression." Any `load_errors` (require fails, `playbook_id` mismatch, missing `collect` export) fail the gate. Closes the deterministic-collector layer: 13/23 playbooks have collectors, the remaining 10 are policy-skipped.
10
+ - **Human renderer** prints `[ok] collector layer: <with>/<total> playbooks have collectors (N judgement-shaped playbooks intentionally without a collector — see AGENTS.md)`. Per-collector load errors render as `[!!] <id>: <error>` lines.
11
+
12
+ ## 0.13.45 — 2026-05-21
13
+
14
+ `discover` surfaces collector availability per recommendation.
15
+
16
+ ### Features
17
+
18
+ - **`discover` recommendations now include `collector_available: bool` + `collect_cmd: string|null`.** Each entry in `recommended_playbooks[]` is enriched with on-disk lookup of `lib/collectors/<id>.js`. Operators who discover a relevant playbook for their cwd no longer need to guess whether running it requires manual evidence translation — the next-step command is right there. Playbooks without a collector show the recommendation line unchanged; `exceptd brief <id>` remains the path for manual evidence.
19
+ - **Human renderer** prints `[collector]` after the playbook id and a `→ exceptd collect <id> | exceptd run <id> --evidence -` pipe-pointer line for entries where the collector exists. Entries without a collector render unchanged. Padding widened from 20 to 32 columns to accommodate the tag.
20
+
3
21
  ## 0.13.44 — 2026-05-21
4
22
 
5
23
  Thirteenth reference collector.
package/bin/exceptd.js CHANGED
@@ -1114,6 +1114,8 @@ function dispatchPlaybook(cmd, argv) {
1114
1114
  // were already accepted; explicit registration removes the silent
1115
1115
  // "unknown bool flag" surface in parseArgs.
1116
1116
  "shipped-tarball", "registry-check", "signatures", "currency", "cves", "rfcs",
1117
+ // doctor --collectors health-checks the collector layer.
1118
+ "collectors",
1117
1119
  // doctor --exit-codes dumps the canonical exit-code table.
1118
1120
  "exit-codes"],
1119
1121
  multi: ["playbook", "format"],
@@ -1162,7 +1164,7 @@ function dispatchPlaybook(cmd, argv) {
1162
1164
  // through without a refusal.
1163
1165
  const PASSTHROUGH_FLAGS = new Set([
1164
1166
  "directive", "domain", "phase", "signal-list", "explain",
1165
- "signatures", "currency", "cves", "rfcs", "shipped-tarball",
1167
+ "signatures", "currency", "cves", "rfcs", "shipped-tarball", "collectors",
1166
1168
  "human", "json-stdout-only", "max-rwep", "diff-from-latest",
1167
1169
  "upstream-check", "latest", "force-replay", "flat", "directives",
1168
1170
  "fix", "session-key", "all", "scope", "playbook",
@@ -5572,6 +5574,19 @@ function cmdDiscover(runner, args, runOpts, pretty) {
5572
5574
  // Always include cross-cutting framework correlation.
5573
5575
  recommend("framework", "cross-cutting: framework correlation always applicable");
5574
5576
 
5577
+ // Enrich each recommendation with whether a companion collector
5578
+ // exists for the playbook. Operators who discover a relevant
5579
+ // playbook for their cwd should see one pipe away from running
5580
+ // it (rather than having to translate the playbook's look phase
5581
+ // into a filesystem walk by hand).
5582
+ const collectorsDir = path.join(PKG_ROOT, "lib", "collectors");
5583
+ for (const rec of recs) {
5584
+ const collectorPath = path.join(collectorsDir, rec.id + ".js");
5585
+ const hasCollector = fs.existsSync(collectorPath);
5586
+ rec.collector_available = hasCollector;
5587
+ rec.collect_cmd = hasCollector ? `exceptd collect ${rec.id}` : null;
5588
+ }
5589
+
5575
5590
  const nextSteps = [
5576
5591
  "exceptd brief <playbook> # learn what a playbook checks",
5577
5592
  "exceptd run <playbook> # run it",
@@ -5634,7 +5649,11 @@ function cmdDiscover(runner, args, runOpts, pretty) {
5634
5649
  lines.push("");
5635
5650
  lines.push(`Recommended playbooks (${recs.length}):`);
5636
5651
  for (const r of recs) {
5637
- lines.push(` - ${r.id.padEnd(20)} ${r.reason}`);
5652
+ const tag = r.collector_available ? " [collector]" : "";
5653
+ lines.push(` - ${(r.id + tag).padEnd(32)} ${r.reason}`);
5654
+ if (r.collector_available) {
5655
+ lines.push(` → ${r.collect_cmd} | exceptd run ${r.id} --evidence -`);
5656
+ }
5638
5657
  }
5639
5658
  lines.push("");
5640
5659
  lines.push("Next steps:");
@@ -5675,11 +5694,13 @@ function cmdDoctor(runner, args, runOpts, pretty) {
5675
5694
  const onlyCves = !!args.cves;
5676
5695
  const onlyRfcs = !!args.rfcs;
5677
5696
  const onlyAiConfig = !!args["ai-config"];
5678
- const anySelected = onlySigs || onlyCurrency || onlyCves || onlyRfcs || onlyAiConfig;
5697
+ const onlyCollectors = !!args.collectors;
5698
+ const anySelected = onlySigs || onlyCurrency || onlyCves || onlyRfcs || onlyAiConfig || onlyCollectors;
5679
5699
  const runSigs = !anySelected || onlySigs;
5680
5700
  const runCurrency = !anySelected || onlyCurrency;
5681
5701
  const runCves = !anySelected || onlyCves;
5682
5702
  const runRfcs = !anySelected || onlyRfcs;
5703
+ const runCollectors = !anySelected || onlyCollectors;
5683
5704
  const runSigning = !anySelected;
5684
5705
  // --ai-config is opt-in — never runs as part of the default no-flag
5685
5706
  // doctor pass. Operators ask for it explicitly.
@@ -6119,6 +6140,64 @@ function cmdDoctor(runner, args, runOpts, pretty) {
6119
6140
  if (errorFindings.length > 0 && (!args.fix || fixesFailed > 0)) issues.push('ai_config');
6120
6141
  }
6121
6142
 
6143
+ // Collector-layer health gate. Walks every playbook, looks up the
6144
+ // matching `lib/collectors/<id>.js`, requires the module, verifies
6145
+ // `playbook_id` matches the file name AND `collect` is exported.
6146
+ // policy_skips is the catalogued set of judgement-shaped playbooks
6147
+ // (incident / governance / pure-analyze) that intentionally have no
6148
+ // collector per AGENTS.md — operators see "10 missing is by design,
6149
+ // not regression."
6150
+ if (runCollectors) {
6151
+ try {
6152
+ const playbookDir = path.join(PKG_ROOT, "data", "playbooks");
6153
+ const collectorDir = path.join(PKG_ROOT, "lib", "collectors");
6154
+ const POLICY_SKIPS = [
6155
+ "framework", "ransomware", "ai-discovered-cve-triage",
6156
+ "cloud-iam-incident", "idp-incident", "identity-sso-compromise",
6157
+ "llm-tool-use-exfil", "supply-chain-recovery",
6158
+ "post-quantum-migration", "webhook-callback-abuse",
6159
+ ];
6160
+ const playbookFiles = fs.readdirSync(playbookDir)
6161
+ .filter(f => f.endsWith(".json") && !f.startsWith("_"))
6162
+ .map(f => f.replace(/\.json$/, ""))
6163
+ .sort();
6164
+ const without_collector = [];
6165
+ const load_errors = [];
6166
+ let with_collector = 0;
6167
+ for (const pid of playbookFiles) {
6168
+ const collectorPath = path.join(collectorDir, pid + ".js");
6169
+ if (!fs.existsSync(collectorPath)) { without_collector.push(pid); continue; }
6170
+ try {
6171
+ delete require.cache[require.resolve(collectorPath)];
6172
+ const mod = require(collectorPath);
6173
+ if (mod.playbook_id !== pid) {
6174
+ load_errors.push({ id: pid, error: `playbook_id mismatch: module exports "${mod.playbook_id}"` });
6175
+ } else if (typeof mod.collect !== "function") {
6176
+ load_errors.push({ id: pid, error: "collect is not a function" });
6177
+ } else {
6178
+ with_collector++;
6179
+ }
6180
+ } catch (e) {
6181
+ load_errors.push({ id: pid, error: `require failed: ${e.message}` });
6182
+ }
6183
+ }
6184
+ const ok = load_errors.length === 0;
6185
+ checks.collectors = {
6186
+ ok,
6187
+ severity: ok ? "info" : "error",
6188
+ total_playbooks: playbookFiles.length,
6189
+ with_collector,
6190
+ without_collector,
6191
+ load_errors,
6192
+ policy_skips: POLICY_SKIPS.sort(),
6193
+ };
6194
+ if (!ok) issues.push("collectors");
6195
+ } catch (e) {
6196
+ checks.collectors = { ok: false, severity: "error", error: e.message };
6197
+ issues.push("collectors");
6198
+ }
6199
+ }
6200
+
6122
6201
  // Walk every check and split: errors (severity error/missing/fail) vs warnings
6123
6202
  // (severity warn). all_green is true ONLY when zero errors AND zero warnings.
6124
6203
  // v0.13.11: bucketing logic extracted to lib/doctor-bucketing.js so the
@@ -6300,6 +6379,21 @@ function cmdDoctor(runner, args, runOpts, pretty) {
6300
6379
  lines.push(` [!!] attestation signing: private key MISSING (.keys/private.pem) — run \`exceptd doctor --fix\` to enable`);
6301
6380
  }
6302
6381
  }
6382
+ if (checks.collectors) {
6383
+ const c = checks.collectors;
6384
+ const icon = c.ok ? "[ok]" : "[!!]";
6385
+ const skipNote = Array.isArray(c.policy_skips) && c.policy_skips.length > 0
6386
+ ? ` (${c.policy_skips.length} judgement-shaped playbooks intentionally without a collector — see AGENTS.md)`
6387
+ : "";
6388
+ lines.push(` ${icon} collector layer: ${c.with_collector ?? "?"}/${c.total_playbooks ?? "?"} playbooks have collectors${skipNote}`);
6389
+ if (Array.isArray(c.load_errors) && c.load_errors.length > 0) {
6390
+ lines.push(` ${c.load_errors.length} collector(s) failed to load:`);
6391
+ for (const e of c.load_errors.slice(0, 5)) {
6392
+ lines.push(` [!!] ${e.id}: ${e.error}`);
6393
+ }
6394
+ if (c.load_errors.length > 5) lines.push(` … and ${c.load_errors.length - 5} more (use --json for full list)`);
6395
+ }
6396
+ }
6303
6397
  if (checks.ai_config) {
6304
6398
  const c = checks.ai_config;
6305
6399
  const findings = Array.isArray(c.findings) ? c.findings : [];
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "schema_version": "1.1.0",
3
- "generated_at": "2026-05-21T14:25:45.130Z",
3
+ "generated_at": "2026-05-21T14:53:58.627Z",
4
4
  "generator": "scripts/build-indexes.js",
5
5
  "source_count": 54,
6
6
  "source_hashes": {
7
- "manifest.json": "eee433070d0e766d2ea4810837835afd85d8a36b8307c3b4d66051b083c35f0a",
7
+ "manifest.json": "1d66eceec3346e24947e121ac2252dcc16c31d02a98d6c81f1b05e0bdce847bc",
8
8
  "data/atlas-ttps.json": "d296c1d3e71807c9279b731f047e57796e85137f186586743a8cdad214b408f9",
9
9
  "data/attack-techniques.json": "49b6010b317edd219def135171ea8f3b1bbf1e00e9c5a08bf7237215ff54e2c3",
10
10
  "data/cve-catalog.json": "a09c83af3f9679a7ea73935726a1ff9de2cab94b4ab6321fc017fc147747d7c3",
@@ -109,7 +109,7 @@ const VERB_FLAG_ALLOWLIST = Object.freeze({
109
109
  reattest: [
110
110
  'playbook', 'since', 'latest', 'force-replay', 'attestation-root',
111
111
  ],
112
- doctor: ['signatures', 'cves', 'rfcs', 'fix', 'registry-check', 'exit-codes', 'shipped-tarball', 'ai-config', 'currency'],
112
+ doctor: ['signatures', 'cves', 'rfcs', 'fix', 'registry-check', 'exit-codes', 'shipped-tarball', 'ai-config', 'currency', 'collectors'],
113
113
  lint: ['evidence'],
114
114
  collect: ['cwd'],
115
115
  refresh: [
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exceptd-security",
3
- "version": "0.13.44",
3
+ "version": "0.13.46",
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-21T14:14:25.595Z",
56
+ "signed_at": "2026-05-21T14:50:53.773Z",
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-21T14:14:25.597Z",
120
+ "signed_at": "2026-05-21T14:50:53.775Z",
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-21T14:14:25.598Z",
183
+ "signed_at": "2026-05-21T14:50:53.776Z",
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-21T14:14:25.598Z"
229
+ "signed_at": "2026-05-21T14:50:53.776Z"
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-21T14:14:25.599Z"
260
+ "signed_at": "2026-05-21T14:50:53.777Z"
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-21T14:14:25.599Z"
289
+ "signed_at": "2026-05-21T14:50:53.778Z"
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-21T14:14:25.600Z",
326
+ "signed_at": "2026-05-21T14:50:53.778Z",
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-21T14:14:25.600Z",
383
+ "signed_at": "2026-05-21T14:50:53.778Z",
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-21T14:14:25.600Z",
418
+ "signed_at": "2026-05-21T14:50:53.779Z",
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-21T14:14:25.601Z"
446
+ "signed_at": "2026-05-21T14:50:53.779Z"
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-21T14:14:25.601Z"
478
+ "signed_at": "2026-05-21T14:50:53.780Z"
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-21T14:14:25.602Z"
505
+ "signed_at": "2026-05-21T14:50:53.780Z"
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-21T14:14:25.602Z",
557
+ "signed_at": "2026-05-21T14:50:53.780Z",
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-21T14:14:25.603Z"
604
+ "signed_at": "2026-05-21T14:50:53.781Z"
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-21T14:14:25.604Z",
641
+ "signed_at": "2026-05-21T14:50:53.781Z",
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-21T14:14:25.604Z"
676
+ "signed_at": "2026-05-21T14:50:53.781Z"
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-21T14:14:25.604Z"
747
+ "signed_at": "2026-05-21T14:50:53.782Z"
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-21T14:14:25.605Z"
807
+ "signed_at": "2026-05-21T14:50:53.782Z"
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-21T14:14:25.605Z"
882
+ "signed_at": "2026-05-21T14:50:53.782Z"
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-21T14:14:25.605Z"
959
+ "signed_at": "2026-05-21T14:50:53.783Z"
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-21T14:14:25.606Z"
1016
+ "signed_at": "2026-05-21T14:50:53.783Z"
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-21T14:14:25.606Z"
1083
+ "signed_at": "2026-05-21T14:50:53.783Z"
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-21T14:14:25.606Z"
1139
+ "signed_at": "2026-05-21T14:50:53.784Z"
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-21T14:14:25.607Z"
1191
+ "signed_at": "2026-05-21T14:50:53.784Z"
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-21T14:14:25.607Z"
1241
+ "signed_at": "2026-05-21T14:50:53.784Z"
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-21T14:14:25.607Z"
1315
+ "signed_at": "2026-05-21T14:50:53.785Z"
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-21T14:14:25.608Z"
1365
+ "signed_at": "2026-05-21T14:50:53.785Z"
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-21T14:14:25.609Z"
1425
+ "signed_at": "2026-05-21T14:50:53.786Z"
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-21T14:14:25.610Z"
1506
+ "signed_at": "2026-05-21T14:50:53.786Z"
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-21T14:14:25.610Z"
1575
+ "signed_at": "2026-05-21T14:50:53.786Z"
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-21T14:14:25.611Z"
1640
+ "signed_at": "2026-05-21T14:50:53.787Z"
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-21T14:14:25.611Z"
1726
+ "signed_at": "2026-05-21T14:50:53.787Z"
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-21T14:14:25.611Z"
1795
+ "signed_at": "2026-05-21T14:50:53.787Z"
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-21T14:14:25.612Z"
1876
+ "signed_at": "2026-05-21T14:50:53.788Z"
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-21T14:14:25.612Z"
1938
+ "signed_at": "2026-05-21T14:50:53.788Z"
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-21T14:14:25.613Z"
2009
+ "signed_at": "2026-05-21T14:50:53.789Z"
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-21T14:14:25.613Z"
2071
+ "signed_at": "2026-05-21T14:50:53.789Z"
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-21T14:14:25.614Z"
2151
+ "signed_at": "2026-05-21T14:50:53.789Z"
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-21T14:14:25.614Z"
2204
+ "signed_at": "2026-05-21T14:50:53.790Z"
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-21T14:14:25.615Z"
2272
+ "signed_at": "2026-05-21T14:50:53.790Z"
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-21T14:14:25.615Z"
2352
+ "signed_at": "2026-05-21T14:50:53.790Z"
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-21T14:14:25.615Z"
2433
+ "signed_at": "2026-05-21T14:50:53.791Z"
2434
2434
  }
2435
2435
  ],
2436
2436
  "manifest_signature": {
2437
2437
  "algorithm": "Ed25519",
2438
- "signature_base64": "yzoa4nQKqqtR5YIwboVmjqBZe16FBPqLjiMLIlnOfPwls5DkBUnZVrClvq04gc7nWDyzxrSkj0ZDhT3WkMc7CA=="
2438
+ "signature_base64": "qeGyiPf8B6xvnsv7kqWuG5RdUhyupPI1GjmlvRyTonv+UERIhReiJ0YBDSeYkUBiv1wJGZhtUcFbnkJo7luJCA=="
2439
2439
  }
2440
2440
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/exceptd-skills",
3
- "version": "0.13.44",
3
+ "version": "0.13.46",
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:b68630e1-862f-416e-9970-9a04675a7b54",
4
+ "serialNumber": "urn:uuid:23307b47-15b6-44f7-80ff-3ecb498f1f5b",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2123-01-15T16:20:49.000Z",
7
+ "timestamp": "2044-09-16T02:24:07.000Z",
8
8
  "tools": [
9
9
  {
10
10
  "vendor": "blamejs",
11
11
  "name": "scripts/refresh-sbom.js",
12
- "version": "0.13.44"
12
+ "version": "0.13.46"
13
13
  }
14
14
  ],
15
15
  "component": {
16
- "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.44",
16
+ "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.46",
17
17
  "type": "application",
18
18
  "name": "@blamejs/exceptd-skills",
19
- "version": "0.13.44",
19
+ "version": "0.13.46",
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.44",
28
+ "purl": "pkg:npm/%40blamejs/exceptd-skills@0.13.46",
29
29
  "hashes": [
30
30
  {
31
31
  "alg": "SHA-256",
32
- "content": "06a310132e91fa95c1f50c6e78a4f2f2916cc22f46b49eb58b8644d2d27c49ef"
32
+ "content": "5707e12be85db574d08e64cbe00c55289006daf83f137ba135bfef1bf906d825"
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.44"
38
+ "url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.13.46"
39
39
  },
40
40
  {
41
41
  "type": "vcs",
@@ -116,11 +116,11 @@
116
116
  "hashes": [
117
117
  {
118
118
  "alg": "SHA-256",
119
- "content": "3268d2f2fe6cf4ee67c0c07df0daffc94499c37c5dd2d1225d7a853af7e70808"
119
+ "content": "bd67c34d0c6e58058ae7929d50f8a3b15b8d41ba5175df5f969422ee5eef4253"
120
120
  },
121
121
  {
122
122
  "alg": "SHA3-512",
123
- "content": "35a0de028e257c7ff3541ef4d4015e7ebe0e4c89b772348e7fc6908203ef94b97cdf1eca7981ebdaa7396b791e86de1edfa71d1183750d1ae8138e05d52b56e3"
123
+ "content": "07a9d6eaa63b6324bc8b10f0cf790e12413f9258c582bb9ca50f5031979e55a30d5b8b8dcce1920f6531a20cdb9fe030d4759da3abf6a4642d426dec59e7ff03"
124
124
  }
125
125
  ]
126
126
  },
@@ -281,11 +281,11 @@
281
281
  "hashes": [
282
282
  {
283
283
  "alg": "SHA-256",
284
- "content": "76aecc836dad63889202f49bc3d334e72ac7b9914409fb1f03ec190551f3c822"
284
+ "content": "0f798de4d3727d4cb33993a35c370557f9068e1cf2a32a2e850b54c606028751"
285
285
  },
286
286
  {
287
287
  "alg": "SHA3-512",
288
- "content": "cb176021ed33780f7a08e21bd90e9edef803eeced38bae0b819229a93fb542d7e8ee569eb59cebafcdf1d767c712396678fd3592856c3f24cf10cf79621f48c5"
288
+ "content": "d592cb61c7cf31c447657b35010d7d2c54b04e56da63b4beba7307324e68ccd6e97bbd88b72dd2c88fb83041f0ac93c58da7000bbc59ecf0d3f3a2c4436cf1f5"
289
289
  }
290
290
  ]
291
291
  },
@@ -1151,11 +1151,11 @@
1151
1151
  "hashes": [
1152
1152
  {
1153
1153
  "alg": "SHA-256",
1154
- "content": "71a19b83b657e4aff23b70c886cfde3d6a76f5b6fc3933777c7ed58258129aaf"
1154
+ "content": "a0ad8c87a353086a451e3b2e99376807333131a1599018d1d35eaeee43eb1993"
1155
1155
  },
1156
1156
  {
1157
1157
  "alg": "SHA3-512",
1158
- "content": "2098a2940004c8d97fa21a410a4b972d14933bdd9e7e79f9570d03c3a4a7d44f489f6bbec860b2c8f9732d57a661ef757a2416023d7f43f6cc6bc2d7993cf9bc"
1158
+ "content": "28c70cc18289fecb5076f064d2b2d1bd2f24b87724c8888dd38fee0d9d784b6581b1b86ed294e429143027069bd7dda36f6ff86751fad5dfd5e28053d2c58410"
1159
1159
  }
1160
1160
  ]
1161
1161
  },
@@ -1661,11 +1661,11 @@
1661
1661
  "hashes": [
1662
1662
  {
1663
1663
  "alg": "SHA-256",
1664
- "content": "eee433070d0e766d2ea4810837835afd85d8a36b8307c3b4d66051b083c35f0a"
1664
+ "content": "1d66eceec3346e24947e121ac2252dcc16c31d02a98d6c81f1b05e0bdce847bc"
1665
1665
  },
1666
1666
  {
1667
1667
  "alg": "SHA3-512",
1668
- "content": "30ef6fac362e41a84b9828fe29664016259352b56aad18d79c14ef21944473f303fc2aa4904ad8e2bb39e25490fd0ee1c95335e627237a14ec4cdd9bbdb581c4"
1668
+ "content": "cb8d7e691e48139212ff2543b8928721384cea847d82f7610d1e5c8b8ef8993f8c42c423d47cfc0f83cbb5c665c81b44441b342d73790deb72de8787ea63cdff"
1669
1669
  }
1670
1670
  ]
1671
1671
  },