@blamejs/exceptd-skills 0.13.56 → 0.13.57

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,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.13.57 — 2026-05-22
4
+
5
+ `attest list` populates the signed field. README + verb help document the ai-run JSONL event grammar. `--block-on-jurisdiction-clock` clarifies pending-vs-started semantics.
6
+
7
+ ### Bugs
8
+
9
+ - **`attest list --json` reports `signed: true|false`** for every attestation by reading the .sig sidecar (Ed25519 + `signature_base64` → signed; `algorithm: "unsigned"` → unsigned). Previously the field was `undefined`, forcing operators to `attest verify` each session individually to learn its signing state.
10
+
11
+ ### Features
12
+
13
+ - **README + verb help document the `ai-run` JSONL event grammar.** The canonical stdin event shape (`{ "event": "evidence", "payload": { precondition_checks, observations, verdict } }`) plus the phase emission order are now in the README's CLI command reference. The doc also flags the two-shapes-don't-mix rule: if `signal_overrides` is present, the runner takes the nested shape and ignores `observations`/`verdict`. Previously the contract was discoverable only at runtime via the `await_evidence` event's `submission_shape.note` field.
14
+ - **`--block-on-jurisdiction-clock` help text clarifies pending-vs-started semantics.** Most playbooks declare `clock_starts: "detect_confirmed"`. The clock stays `pending_clock_start_event` until two things align: (a) the submission's verdict classifies as `detected`, AND (b) the operator passes `--ack` (records `operator_consent.explicit = true`). Alternatively, the submission can stamp `clock_started_at_detect_confirmed: "<ISO>"` directly in the signals. Without one of those paths the clocks stay pending and the flag is a no-op. The help text now documents the exact contract instead of pointing at a `verdict.detect_confirmed` field the runner never consumed.
15
+
3
16
  ## 0.13.56 — 2026-05-22
4
17
 
5
18
  `attest diff <sid>` (without `--against`) emits the v0.11+ envelope and surfaces granular drift.
package/README.md CHANGED
@@ -256,9 +256,27 @@ exceptd run [playbook] Phases 4-7. Auto-detects cwd context when
256
256
  exceptd ai-run <playbook> JSONL streaming variant of run. AI emits
257
257
  evidence events on stdin; runner streams
258
258
  phase events on stdout. One pipe, no
259
- file handoff.
259
+ file handoff. See `exceptd ai-run --help`
260
+ for the full stdin event grammar.
260
261
  --no-stream Single-shot mode (emit one combined JSON).
261
262
 
263
+ # Stdin event the host emits (one JSON object per line):
264
+ # {"event":"evidence","payload":{
265
+ # "precondition_checks": {...}, // per-precondition boolean assertions
266
+ # "observations": {...}, // per-artifact + per-indicator captures
267
+ # "verdict": {...} // optional operator-supplied verdict
268
+ # }}
269
+ # observations[<key>] carries both artifact captures
270
+ # ({ captured: true, value: "..." }) AND indicator overrides
271
+ # ({ indicator: "<id>", result: "hit"|"miss" }) — the runner normalises
272
+ # both branches from a single map. The alternative nested shape
273
+ # ({ artifacts, signal_overrides, signals }) is also accepted, but do not
274
+ # mix the two — if `signal_overrides` is present, `observations` and
275
+ # `verdict` are ignored.
276
+ # Phases emitted on stdout (in order): govern → direct → look →
277
+ # await_evidence → detect → analyze → validate → close → done.
278
+ # Errors emit {"event":"error","reason":"..."} and exit non-zero.
279
+
262
280
  exceptd collect <playbook> Walk cwd + invoke the companion collector
263
281
  under lib/collectors/<playbook>.js. Emits
264
282
  a submission JSON ready to pipe into
package/bin/exceptd.js CHANGED
@@ -2035,7 +2035,18 @@ Exit codes:
2035
2035
  9 STORAGE_EXHAUSTED Disk/quota/RO filesystem on attestation write.
2036
2036
 
2037
2037
  Stdin event grammar (one JSON object per line):
2038
- {"event":"evidence","payload":{"observations":{},"verdict":{}}}
2038
+ {"event":"evidence","payload":{
2039
+ "precondition_checks": {...}, // per-precondition boolean assertions
2040
+ "observations": {...}, // per-artifact + per-indicator captures
2041
+ "verdict": {...} // optional operator-supplied verdict
2042
+ }}
2043
+ observations[<key>] carries both artifact captures
2044
+ ({ captured: true, value: "..." }) AND indicator overrides
2045
+ ({ indicator: "<id>", result: "hit"|"miss" }) — the runner normalises
2046
+ both branches from a single map. The alternative nested shape
2047
+ ({ artifacts, signal_overrides, signals }) is also accepted; do not mix
2048
+ the two — if signal_overrides is present, observations/verdict are
2049
+ ignored.
2039
2050
 
2040
2051
  Stdin acceptance contract:
2041
2052
  In streaming mode, ai-run reads JSON-Lines from stdin until the FIRST
@@ -2088,6 +2099,18 @@ Flags:
2088
2099
  --block-on-jurisdiction-clock
2089
2100
  Fail when any close.notification_actions started a
2090
2101
  regulatory clock (GDPR 72h, HIPAA breach, etc.).
2102
+ Clocks are STARTED, not pending — most playbooks
2103
+ declare clock_starts: "detect_confirmed", which
2104
+ stays pending_clock_start_event until two things
2105
+ align: (a) the submission's verdict.classification
2106
+ (signals.detection_classification) is "detected",
2107
+ AND (b) the operator passes --ack (records
2108
+ operator_consent.explicit = true). Alternatively,
2109
+ stamp it directly with
2110
+ verdict.clock_started_at_detect_confirmed: "<ISO>"
2111
+ in the submission's signals. Without one of those
2112
+ paths the clocks stay pending and the flag is a
2113
+ no-op.
2091
2114
  --format <fmt> Output shape. Supported: json (default, single-line),
2092
2115
  summary (5-field digest), markdown (human digest).
2093
2116
  Bundles (csaf-2.0/sarif/openvex) live on per-run
@@ -6723,6 +6746,26 @@ function cmdListAttestations(runner, args, runOpts, pretty) {
6723
6746
  // v0.12.14: normalized array-set filter (see top of fn).
6724
6747
  if (playbookFilter && !playbookFilter.has(j.playbook_id)) continue;
6725
6748
  if (args.since && (j.captured_at || "") < args.since) continue;
6749
+ // Populate the `signed` field by reading the .sig sidecar.
6750
+ // The sidecar payload either carries algorithm: "Ed25519"
6751
+ // + signature_base64 (true signature) or algorithm: "unsigned"
6752
+ // (unsigned-fallback marker — written when no private key
6753
+ // was available at run time). Both forms ARE a .sig file on
6754
+ // disk; the field distinguishes them so operators can scan
6755
+ // the list for unsigned attestations without verifying every
6756
+ // one individually.
6757
+ const sigPath = path.join(sdir, f + ".sig");
6758
+ let signed = false;
6759
+ if (fs.existsSync(sigPath)) {
6760
+ try {
6761
+ const sigDoc = JSON.parse(fs.readFileSync(sigPath, "utf8"));
6762
+ signed =
6763
+ !!sigDoc &&
6764
+ sigDoc.algorithm === "Ed25519" &&
6765
+ typeof sigDoc.signature_base64 === "string" &&
6766
+ sigDoc.signature_base64.length > 0;
6767
+ } catch { /* unreadable sidecar treated as unsigned */ }
6768
+ }
6726
6769
  entries.push({
6727
6770
  session_id: sid,
6728
6771
  playbook_id: j.playbook_id,
@@ -6731,6 +6774,7 @@ function cmdListAttestations(runner, args, runOpts, pretty) {
6731
6774
  captured_at: j.captured_at || null,
6732
6775
  attestation_root: root,
6733
6776
  file: path.join(sdir, f),
6777
+ signed,
6734
6778
  });
6735
6779
  } catch { /* skip malformed */ }
6736
6780
  }
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "schema_version": "1.1.0",
3
- "generated_at": "2026-05-22T06:51:14.019Z",
3
+ "generated_at": "2026-05-22T07:28:48.846Z",
4
4
  "generator": "scripts/build-indexes.js",
5
5
  "source_count": 54,
6
6
  "source_hashes": {
7
- "manifest.json": "f47dfe67b4c270d0e4c8ec9cabdefafdce901ced92c4c234b23fdf65cf8df66a",
7
+ "manifest.json": "f02056365a264901e95631245efa002968acee2e6432ab2e5131b6b53eadcd81",
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.56",
3
+ "version": "0.13.57",
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-22T06:38:55.158Z",
56
+ "signed_at": "2026-05-22T07:13:12.339Z",
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-22T06:38:55.159Z",
120
+ "signed_at": "2026-05-22T07:13:12.341Z",
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-22T06:38:55.159Z",
183
+ "signed_at": "2026-05-22T07:13:12.341Z",
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-22T06:38:55.160Z"
229
+ "signed_at": "2026-05-22T07:13:12.341Z"
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-22T06:38:55.160Z"
260
+ "signed_at": "2026-05-22T07:13:12.342Z"
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-22T06:38:55.161Z"
289
+ "signed_at": "2026-05-22T07:13:12.342Z"
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-22T06:38:55.161Z",
326
+ "signed_at": "2026-05-22T07:13:12.343Z",
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-22T06:38:55.162Z",
383
+ "signed_at": "2026-05-22T07:13:12.343Z",
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-22T06:38:55.162Z",
418
+ "signed_at": "2026-05-22T07:13:12.343Z",
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-22T06:38:55.162Z"
446
+ "signed_at": "2026-05-22T07:13:12.344Z"
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-22T06:38:55.163Z"
478
+ "signed_at": "2026-05-22T07:13:12.344Z"
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-22T06:38:55.163Z"
505
+ "signed_at": "2026-05-22T07:13:12.344Z"
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-22T06:38:55.163Z",
557
+ "signed_at": "2026-05-22T07:13:12.345Z",
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-22T06:38:55.164Z"
604
+ "signed_at": "2026-05-22T07:13:12.345Z"
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-22T06:38:55.164Z",
641
+ "signed_at": "2026-05-22T07:13:12.346Z",
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-22T06:38:55.164Z"
676
+ "signed_at": "2026-05-22T07:13:12.346Z"
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-22T06:38:55.165Z"
747
+ "signed_at": "2026-05-22T07:13:12.346Z"
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-22T06:38:55.165Z"
807
+ "signed_at": "2026-05-22T07:13:12.347Z"
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-22T06:38:55.165Z"
882
+ "signed_at": "2026-05-22T07:13:12.347Z"
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-22T06:38:55.166Z"
959
+ "signed_at": "2026-05-22T07:13:12.347Z"
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-22T06:38:55.166Z"
1016
+ "signed_at": "2026-05-22T07:13:12.347Z"
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-22T06:38:55.167Z"
1083
+ "signed_at": "2026-05-22T07:13:12.348Z"
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-22T06:38:55.167Z"
1139
+ "signed_at": "2026-05-22T07:13:12.348Z"
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-22T06:38:55.167Z"
1191
+ "signed_at": "2026-05-22T07:13:12.348Z"
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-22T06:38:55.167Z"
1241
+ "signed_at": "2026-05-22T07:13:12.349Z"
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-22T06:38:55.168Z"
1315
+ "signed_at": "2026-05-22T07:13:12.349Z"
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-22T06:38:55.168Z"
1365
+ "signed_at": "2026-05-22T07:13:12.349Z"
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-22T06:38:55.169Z"
1425
+ "signed_at": "2026-05-22T07:13:12.350Z"
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-22T06:38:55.169Z"
1506
+ "signed_at": "2026-05-22T07:13:12.350Z"
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-22T06:38:55.169Z"
1575
+ "signed_at": "2026-05-22T07:13:12.351Z"
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-22T06:38:55.170Z"
1640
+ "signed_at": "2026-05-22T07:13:12.352Z"
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-22T06:38:55.170Z"
1726
+ "signed_at": "2026-05-22T07:13:12.352Z"
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-22T06:38:55.170Z"
1795
+ "signed_at": "2026-05-22T07:13:12.352Z"
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-22T06:38:55.171Z"
1876
+ "signed_at": "2026-05-22T07:13:12.352Z"
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-22T06:38:55.171Z"
1938
+ "signed_at": "2026-05-22T07:13:12.353Z"
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-22T06:38:55.171Z"
2009
+ "signed_at": "2026-05-22T07:13:12.353Z"
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-22T06:38:55.172Z"
2071
+ "signed_at": "2026-05-22T07:13:12.354Z"
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-22T06:38:55.172Z"
2151
+ "signed_at": "2026-05-22T07:13:12.354Z"
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-22T06:38:55.172Z"
2204
+ "signed_at": "2026-05-22T07:13:12.354Z"
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-22T06:38:55.173Z"
2272
+ "signed_at": "2026-05-22T07:13:12.355Z"
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-22T06:38:55.173Z"
2352
+ "signed_at": "2026-05-22T07:13:12.355Z"
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-22T06:38:55.174Z"
2433
+ "signed_at": "2026-05-22T07:13:12.355Z"
2434
2434
  }
2435
2435
  ],
2436
2436
  "manifest_signature": {
2437
2437
  "algorithm": "Ed25519",
2438
- "signature_base64": "PCl9rAksJj30GAsmsgbeOiouVEB3291Zmvn5XY5plQsSkuauHB82+/tu4q9LY7cM/YUTsOIuycFV5xy/9oPQAw=="
2438
+ "signature_base64": "Mqdh4G/iwFRFGu8rZzRnFr9lRtUZuHwTLJhvCMik7tfut7rHh2YKeGKojYcQ//dM7KISIHkkq3wnC+zJzWcpCw=="
2439
2439
  }
2440
2440
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/exceptd-skills",
3
- "version": "0.13.56",
3
+ "version": "0.13.57",
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:72d89829-2c27-4af0-88f6-741ebe584f04",
4
+ "serialNumber": "urn:uuid:b0a6b327-121e-40c6-8092-871c7183b709",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2087-01-21T21:29:13.000Z",
7
+ "timestamp": "2119-12-02T06:07:35.000Z",
8
8
  "tools": [
9
9
  {
10
10
  "vendor": "blamejs",
11
11
  "name": "scripts/refresh-sbom.js",
12
- "version": "0.13.56"
12
+ "version": "0.13.57"
13
13
  }
14
14
  ],
15
15
  "component": {
16
- "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.56",
16
+ "bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.57",
17
17
  "type": "application",
18
18
  "name": "@blamejs/exceptd-skills",
19
- "version": "0.13.56",
19
+ "version": "0.13.57",
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.56",
28
+ "purl": "pkg:npm/%40blamejs/exceptd-skills@0.13.57",
29
29
  "hashes": [
30
30
  {
31
31
  "alg": "SHA-256",
32
- "content": "4a06094a20bdfa7dea6e2e922c0c071e66419893b61cf0f398c710bd671c698e"
32
+ "content": "699e406210e768c36fb8c34f9c860c744a6e34e39eb3e2faec853b870a65a0b4"
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.56"
38
+ "url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.13.57"
39
39
  },
40
40
  {
41
41
  "type": "vcs",
@@ -116,11 +116,11 @@
116
116
  "hashes": [
117
117
  {
118
118
  "alg": "SHA-256",
119
- "content": "59ce8e492c0950c174ac8b69c3a6e6b486e084a1ae14f69c8f39e2b3cc26759f"
119
+ "content": "95bd558e91d2239599d30e889edd3313493776362fb57cb4b76b153b6ee2792a"
120
120
  },
121
121
  {
122
122
  "alg": "SHA3-512",
123
- "content": "d81bd980ea256b4068136f69e805cd209b944ec07ce5f270a3a7fcd9e83e5d96ccec3db9931ec30ea0de732fbada1a295c0376a4dd21568a256d84f4f864d8ef"
123
+ "content": "585290d78871e4effc0465ddbfdf5316466c6a1719d2df68faa8521d0445b759269ec27f12726943ef10eb5ce463702d1d883aa53ca82743dda335c416af4ec9"
124
124
  }
125
125
  ]
126
126
  },
@@ -176,11 +176,11 @@
176
176
  "hashes": [
177
177
  {
178
178
  "alg": "SHA-256",
179
- "content": "dec21940a1c2ceb4f43ce70a0a150b9b9e00581d43c9fa23d2a03f5f4d018f7d"
179
+ "content": "2ee761d26b36caeae8a4910ffab81f6a38e59cbbb6133d075bac2a1e7254a7ea"
180
180
  },
181
181
  {
182
182
  "alg": "SHA3-512",
183
- "content": "0bd13c9424ededac057a1ee4bc2606e80d46eeeffea3ca3c1971dbac555b03dcf70bc0d44df914028a4abbd3a5ffafc0a3939d7a6cd6950cee40a56a5c99695b"
183
+ "content": "649d84489b66407b76467cb90033a4a4f02d5ce3dae7b3385fa3d80e09d2d012d63bcb994a7cb442dbc2435b0eb5914e17e77ae272fe8277b01ab5be1d4e81ab"
184
184
  }
185
185
  ]
186
186
  },
@@ -281,11 +281,11 @@
281
281
  "hashes": [
282
282
  {
283
283
  "alg": "SHA-256",
284
- "content": "ce993eab2736b33affa80fc3381cdafcb151dc0d7163862cd0bef391a2b8276a"
284
+ "content": "75b10d80c2b634e132427542056cd2ca67dba954141e6d767677a1ab18ffac9d"
285
285
  },
286
286
  {
287
287
  "alg": "SHA3-512",
288
- "content": "55fab14a94b4df41e840f2b7009139376e50fe683b0b1c68a95cf177df8c36253d35a1c55717e6452627ccfca0acbe54fe5b9db8ba328d63d5cfb62b7faa58db"
288
+ "content": "70e8c7016d5be30a646de75e7f2aaa7b9999277ecbfbaea660ff546ece14e4dfe513af956ccacbe56f67ae3cf052148e863526a72ac93ccd0e3d76b888aa503b"
289
289
  }
290
290
  ]
291
291
  },
@@ -1661,11 +1661,11 @@
1661
1661
  "hashes": [
1662
1662
  {
1663
1663
  "alg": "SHA-256",
1664
- "content": "f47dfe67b4c270d0e4c8ec9cabdefafdce901ced92c4c234b23fdf65cf8df66a"
1664
+ "content": "f02056365a264901e95631245efa002968acee2e6432ab2e5131b6b53eadcd81"
1665
1665
  },
1666
1666
  {
1667
1667
  "alg": "SHA3-512",
1668
- "content": "1cee2a3947de852c43c8d6f4686efb35a7c7594682b64fe2642e6101c5600b4ad20e37e3dc5b93962d7f857b0c5a5f093be5b42581999696ef33363552a7aa7e"
1668
+ "content": "3f2f83b42aceb51653aa005f11404db852ca9d043536eb626cd03240f15ef92ec5a353fea1024518e149a59ac2e2b38623417c7b49907240d484686975d1e95f"
1669
1669
  }
1670
1670
  ]
1671
1671
  },